negate method

void negate()

Negate this.

Implementation

void negate() {
  _v3storage[2] = -_v3storage[2];
  _v3storage[1] = -_v3storage[1];
  _v3storage[0] = -_v3storage[0];
}