mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-02 13:41:00 +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
|
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
|
get
|
||||||
{
|
{
|
||||||
return W * W + XYZ.LengthSquared;
|
return W * W + Xyz.LengthSquared;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -168,7 +168,7 @@ namespace OpenTK.Math
|
||||||
{
|
{
|
||||||
get
|
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
|
get
|
||||||
{
|
{
|
||||||
return W * W + XYZ.LengthSquared;
|
return W * W + Xyz.LengthSquared;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue