translateWithVector3 method

BufferGeometry translateWithVector3(
  1. Vector3 v3
)
inherited

Translate the geometry by Vecotr3. This is typically done as a one time operation, and not during a loop. Use position for typical real-time mesh translation.

Implementation

BufferGeometry translateWithVector3(Vector3 v3) {
  return translate(v3.x, v3.y, v3.z);
}