6 references to Transform
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Matrix4x4.cs (4)
545result.X = Vector4.Transform(left.X, in right); 546result.Y = Vector4.Transform(left.Y, in right); 547result.Z = Vector4.Transform(left.Z, in right); 548result.W = Vector4.Transform(left.W, in right);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Plane.cs (1)
160return Vector4.Transform(plane.AsVector128(), Matrix4x4.Transpose(inverseMatrix)).AsPlane();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector4.cs (1)
1050public static Vector4 Transform(Vector4 vector, Matrix4x4 matrix) => Transform(vector.AsVector128(), in matrix.AsROImpl()).AsVector4();