invert method

V3 invert()

Returns a new vector with each component replaced by its reciprocal (1/x, 1/y, 1/z).

Implementation

V3 invert() => _v3(1.0/x, 1.0/y, 1.0/z);