setC method

MeshC setC(
  1. MeshC o
)

Implementation

MeshC setC(MeshC o) {
  vertexCount = o.vertexCount;
  triangleCount = o.triangleCount;
  vertices = o.vertices;
  texcoords = o.texcoords;
  texcoords2 = o.texcoords2;
  normals = o.normals;
  tangents = o.tangents;
  colors = o.colors;
  indices = o.indices;
  animVertices = o.animVertices;
  animNormals = o.animNormals;
  boneIds = o.boneIds;
  boneWeights = o.boneWeights;
  boneMatrices = o.boneMatrices;
  boneCount = o.boneCount;
  vaoId = o.vaoId;
  vboId = o.vboId;
  return this;
}