setFrom method

void setFrom(
  1. Vector3 other
)

Assignment operator

Implementation

void setFrom(Vector3 other) {
  x = other.x;
  y = other.y;
  z = other.z;
}