◆ Vertex() [1/8]
pluginbase.Helpers.Mesh.Vertex.Vertex |
( |
| ) |
|
◆ Vertex() [2/8]
pluginbase.Helpers.Mesh.Vertex.Vertex |
( |
Vertex |
v | ) |
|
Vector3 Coordinate
Definition: Vertex.cs:9
Rgba Color
Definition: Vertex.cs:12
Vector2 TexCoord
Definition: Vertex.cs:11
Vector3 Normal
Definition: Vertex.cs:10
◆ Vertex() [3/8]
pluginbase.Helpers.Mesh.Vertex.Vertex |
( |
Vector3 |
coord, |
|
|
Vector2 |
texCoord, |
|
|
Vector3 |
normal, |
|
|
Rgba |
color |
|
) |
| |
Vector3 Coordinate
Definition: Vertex.cs:9
Rgba Color
Definition: Vertex.cs:12
Vector2 TexCoord
Definition: Vertex.cs:11
Vector3 Normal
Definition: Vertex.cs:10
◆ Vertex() [4/8]
pluginbase.Helpers.Mesh.Vertex.Vertex |
( |
Vector3 |
coord, |
|
|
Vector2 |
texCoord, |
|
|
Rgba |
color |
|
) |
| |
33 :
this(coord, texCoord, Vector3.Zero, color)
◆ Vertex() [5/8]
pluginbase.Helpers.Mesh.Vertex.Vertex |
( |
Vector3 |
coord, |
|
|
Vector2 |
texCoord |
|
) |
| |
37 :
this(coord, texCoord, Vector3.Zero,
Rgba.
White)
Class the represents a floating-point color of red, green, blue, and alpha
Definition: Rgba.cs:11
static readonly Rgba White
White (1,1,1,1)
Definition: Rgba.cs:451
◆ Vertex() [6/8]
pluginbase.Helpers.Mesh.Vertex.Vertex |
( |
Vector3 |
coord, |
|
|
Vector2 |
texCoord, |
|
|
Vector3 |
norm |
|
) |
| |
Class the represents a floating-point color of red, green, blue, and alpha
Definition: Rgba.cs:11
static readonly Rgba White
White (1,1,1,1)
Definition: Rgba.cs:451
◆ Vertex() [7/8]
pluginbase.Helpers.Mesh.Vertex.Vertex |
( |
Vector3 |
coord, |
|
|
Vector3 |
norm |
|
) |
| |
45 :
this(coord, Vector2.Zero, norm,
Rgba.
White)
Class the represents a floating-point color of red, green, blue, and alpha
Definition: Rgba.cs:11
static readonly Rgba White
White (1,1,1,1)
Definition: Rgba.cs:451
◆ Vertex() [8/8]
pluginbase.Helpers.Mesh.Vertex.Vertex |
( |
Vector3 |
coord | ) |
|
49 :
this(coord, Vector2.Zero, Vector3.Zero,
Rgba.
White)
Class the represents a floating-point color of red, green, blue, and alpha
Definition: Rgba.cs:11
static readonly Rgba White
White (1,1,1,1)
Definition: Rgba.cs:451
◆ Clone()
Vertex pluginbase.Helpers.Mesh.Vertex.Clone |
( |
| ) |
|
Vertex()
Definition: Vertex.cs:14
◆ Point() [1/2]
static Vertex pluginbase.Helpers.Mesh.Vertex.Point |
( |
Vector3 |
coord, |
|
|
Vector2 |
texCoord |
|
) |
| |
|
static |
54 return new Vertex(coord, texCoord);
Vertex()
Definition: Vertex.cs:14
◆ Point() [2/2]
static Vertex pluginbase.Helpers.Mesh.Vertex.Point |
( |
Vector3 |
coord | ) |
|
|
static |
Vertex()
Definition: Vertex.cs:14
◆ Color
Rgba pluginbase.Helpers.Mesh.Vertex.Color |
◆ Coordinate
Vector3 pluginbase.Helpers.Mesh.Vertex.Coordinate |
◆ Normal
Vector3 pluginbase.Helpers.Mesh.Vertex.Normal |
◆ TexCoord
Vector2 pluginbase.Helpers.Mesh.Vertex.TexCoord |
The documentation for this class was generated from the following file: