ShadowEditor/THREE/Math/Matrix4.cs
2018-12-07 21:27:33 +08:00

24 lines
431 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace THREE.Math
{
public class Matrix4
{
public double[] elements;
public Matrix4()
{
this.elements = new double[] {
1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, 0,
0, 0, 0, 1
};
}
}
}