subValue method

V3 subValue(
  1. num value
)

Returns a new vector with value subtracted from each component.

Implementation

V3 subValue(num value) => _v3(x - value, y - value, z - value);