OpenRA.Graphics.Vertex.Vertex C# (CSharp) Method

Vertex() public method

public Vertex ( float3 xyz, float s, float t, float u, float v, float p, float c ) : System.Runtime.InteropServices
xyz float3
s float
t float
u float
v float
p float
c float
return System.Runtime.InteropServices
        public Vertex(float3 xyz, float s, float t, float u, float v, float p, float c)
            : this(xyz.X, xyz.Y, xyz.Z, s, t, u, v, p, c)
        {
        }

Same methods

Vertex::Vertex ( float x, float y, float z, float s, float t, float u, float v, float p, float c ) : System.Runtime.InteropServices
Vertex