divided method
Vector3
divided(
- Vector3 other
Implementation
Vector3 divided(Vector3 other) {
return Vector3(
x / other.x,
y / other.y,
z / other.z,
);
}
Vector3 divided(Vector3 other) {
return Vector3(
x / other.x,
y / other.y,
z / other.z,
);
}