mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-10 14:11:04 -05:00
14 lines
313 B
C#
14 lines
313 B
C#
namespace MKDS_Course_Editor.Export3DTools
|
|
{
|
|
using System.Windows;
|
|
using System.Windows.Media.Media3D;
|
|
|
|
public class Triangle : Face
|
|
{
|
|
public Vector3D[] Normal = new Vector3D[3];
|
|
public Point[] TexCoord = new Point[3];
|
|
public Point3D[] Vertex = new Point3D[3];
|
|
}
|
|
}
|
|
|