AoMEngineLibrary.Graphics.Model.Mesh.Mesh C# (CSharp) Method

Mesh() public method

public Mesh ( ) : System
return 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