mul method

Vector4C mul(
  1. Vector4C o
)

Implementation

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