mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
24 lines
431 B
C#
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
|
|
};
|
|
}
|
|
}
|
|
}
|