mul method

Vector3D mul(
  1. Vector3D o
)

Implementation

Vector3D mul(Vector3D o) => .vec3(x * o.x, y * o.y, z * o.z);