ShadowEditor/THREE/Math/Matrix3.cs
2018-12-07 12:35:07 +08:00

23 lines
394 B
C#

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