MeshModel
class MeshModel @JvmOverloads constructor(val positions: List<Vector3>, val triangleIndices: List<Int>, val normals: List<Vector3>? = null, val tangents: List<Vector4>? = null, val uv0: List<Vector2>? = null, val uv1: List<Vector2>? = null, val colors: List<Color4>? = null)
A container for mesh geometry data.
The fields describe the vertex attributes and triangle indices used to build a mesh.