mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-23 01:21:03 +00:00
Fixed two instances where the obsolete XYZ attribute was being used.
This commit is contained in:
parent
824a751762
commit
6545358593
|
@ -168,7 +168,7 @@ namespace OpenTK.Math
|
|||
{
|
||||
get
|
||||
{
|
||||
return (float)System.Math.Sqrt(W * W + XYZ.LengthSquared);
|
||||
return (float)System.Math.Sqrt(W * W + Xyz.LengthSquared);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -183,7 +183,7 @@ namespace OpenTK.Math
|
|||
{
|
||||
get
|
||||
{
|
||||
return W * W + XYZ.LengthSquared;
|
||||
return W * W + Xyz.LengthSquared;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -168,7 +168,7 @@ namespace OpenTK.Math
|
|||
{
|
||||
get
|
||||
{
|
||||
return (double)System.Math.Sqrt(W * W + XYZ.LengthSquared);
|
||||
return (double)System.Math.Sqrt(W * W + Xyz.LengthSquared);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -183,7 +183,7 @@ namespace OpenTK.Math
|
|||
{
|
||||
get
|
||||
{
|
||||
return W * W + XYZ.LengthSquared;
|
||||
return W * W + Xyz.LengthSquared;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue