FaceVertex

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

Indices for a single face vertex.

Constructors

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

Functions

component1
Link copied to clipboard
common
operator fun component1(): Int
component2
Link copied to clipboard
common
operator fun component2(): Int
component3
Link copied to clipboard
common
operator fun component3(): Int
copy
Link copied to clipboard
common
fun copy(positionIndex: Int, texCoordIndex: Int, normalIndex: Int): MeshDataBuilder.FaceVertex
equals
Link copied to clipboard
common
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open override fun hashCode(): Int
toString
Link copied to clipboard
common
open override fun toString(): String

Properties

normalIndex
Link copied to clipboard
common
val normalIndex: Int
Index of the normal vector.
positionIndex
Link copied to clipboard
common
val positionIndex: Int
Index of the vertex position.
texCoordIndex
Link copied to clipboard
common
val texCoordIndex: Int
Index of the texture coordinates.