Skip to content

Commit 8552908

Browse files
committed
Remove function not used for ShapeHierarchy
1 parent b1517ee commit 8552908

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

Source/RunActivity/Viewer3D/Shapes.cs

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2576,28 +2576,6 @@ static Matrix XNAMatrixFromMSTS(matrix MSTSMatrix)
25762576

25772577
return XNAMatrix;
25782578
}
2579-
static matrix MSTSMatrixFromXNA(Matrix XNAMatrix, string name = "")
2580-
{
2581-
var MSTSMatrix = new matrix
2582-
{
2583-
AX = XNAMatrix.M11,
2584-
AY = XNAMatrix.M12,
2585-
AZ = -XNAMatrix.M13,
2586-
BX = XNAMatrix.M21,
2587-
BY = XNAMatrix.M22,
2588-
BZ = -XNAMatrix.M23,
2589-
CX = -XNAMatrix.M31,
2590-
CY = -XNAMatrix.M32,
2591-
CZ = XNAMatrix.M33,
2592-
DX = XNAMatrix.M41,
2593-
DY = XNAMatrix.M42,
2594-
DZ = -XNAMatrix.M43,
2595-
2596-
Name = name
2597-
};
2598-
2599-
return MSTSMatrix;
2600-
}
26012579

26022580
public void PrepareFrame(RenderFrame frame, WorldPosition location, ShapeFlags flags)
26032581
{

0 commit comments

Comments
 (0)