mul method

Vector3C mul(
  1. Vector3C o
)

Implementation

Vector3C mul(Vector3C o) => set(x * o.x, y * o.y, z * o.z);