sub method
V4
sub(
- V4 o
Returns a new vector that is the component-wise difference of this and o.
Implementation
V4 sub(V4 o) => _v4(x - o.x, y - o.y, z - o.z, w - o.w);
Returns a new vector that is the component-wise difference of this and o.
V4 sub(V4 o) => _v4(x - o.x, y - o.y, z - o.z, w - o.w);