TerrainDisplay.VertexPositionNormalColored.VertexPositionNormalColored C# (CSharp) Method

VertexPositionNormalColored() public method

Constructor for a VertexPositionNormalColored
public VertexPositionNormalColored ( Microsoft.Xna.Framework.Vector3 position, Microsoft.Xna.Framework.Color color, Microsoft.Xna.Framework.Vector3 normal ) : Microsoft.Xna.Framework
position Microsoft.Xna.Framework.Vector3 Vector3 Position of the vertex
color Microsoft.Xna.Framework.Color Color of the vertex
normal Microsoft.Xna.Framework.Vector3 Normal vector of the vertex
return Microsoft.Xna.Framework
        public VertexPositionNormalColored(Vector3 position, Color color, Vector3 normal)
        {
            Position = position;
            Color = color;
            Normal = normal;
        }
VertexPositionNormalColored