AoMEngineLibrary.Graphics.Model.Mesh.Mesh C# (CSharp) Méthode

Mesh() public méthode

public Mesh ( ) : System
Résultat 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