mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-10 14:11:04 -05:00
15 lines
383 B
C#
15 lines
383 B
C#
namespace MKDS_Course_Editor.Export3DTools
|
|
{
|
|
using System.Collections.Generic;
|
|
using System.Windows;
|
|
using System.Windows.Media.Media3D;
|
|
|
|
public class TriangleStrip : Face
|
|
{
|
|
public List<Vector3D> Normal = new List<Vector3D>();
|
|
public List<Point> TexCoord = new List<Point>();
|
|
public List<Point3D> Vertex = new List<Point3D>();
|
|
}
|
|
}
|
|
|