copyFromArray method

void copyFromArray(
  1. List<int> array
)

Implementation

void copyFromArray(List<int> array) {
  vertexes = array;
  normals = array;
  texture = array;
}