AoMEngineLibrary.Graphics.Model.Mesh.Mesh C# (CSharp) 메소드

Mesh() 공개 메소드

public Mesh ( ) : System
리턴 System
        public Mesh()
        {
            this.Name = "Mesh";
            this.Vertices = new List<Vector3D>();
            this.Normals = new List<Vector3D>();
            this.Faces = new List<Face>();

            this.TextureCoordinates = new List<Vector3D>();
            this.Colors = new List<Color4D>();

            this.MeshAnimations = new List<Mesh>();
        }
Mesh