FaceVertex

data class FaceVertex(    val positionIndex: Int,     val texCoordIndex: Int,     val normalIndex: Int)

Indices for a single face vertex.

Constructors

Link copied to clipboard
fun FaceVertex(    positionIndex: Int,     texCoordIndex: Int,     normalIndex: Int)

Properties

Link copied to clipboard
val normalIndex: Int

Index of the normal vector.

Link copied to clipboard
val positionIndex: Int

Index of the vertex position.

Link copied to clipboard
val texCoordIndex: Int

Index of the texture coordinates.