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

Vertex() public method

public Vertex ( float x, float y, float z, float s, float t, float u, float v, float p, float c ) : System.Runtime.InteropServices
x float
y float
z float
s float
t float
u float
v float
p float
c float
return System.Runtime.InteropServices
        public Vertex(float x, float y, float z, float s, float t, float u, float v, float p, float c)
        {
            X = x; Y = y; Z = z;
            S = s; T = t;
            U = u; V = v;
            P = p; C = c;
        }

Same methods

Vertex::Vertex ( float3 xyz, float s, float t, float u, float v, float p, float c ) : System.Runtime.InteropServices
Vertex