MeshPrimitiveT constructor

MeshPrimitiveT({
  1. VertexBufferTypeId? verticesType,
  2. dynamic vertices,
  3. IndicesT? indices,
  4. MaterialT? material,
  5. Aabb3T? boundsAabb,
  6. SphereT? boundsSphere,
  7. Aabb3T? skinnedPoseUnionAabb,
})

Implementation

MeshPrimitiveT({
  this.verticesType,
  this.vertices,
  this.indices,
  this.material,
  this.boundsAabb,
  this.boundsSphere,
  this.skinnedPoseUnionAabb,
});