Subtract a vector from this vector.
(other B2Vec2)
| 92 | |
| 93 | /// Subtract a vector from this vector. |
| 94 | func (v *B2Vec2) OperatorMinusInplace(other B2Vec2) { |
| 95 | v.X -= other.X |
| 96 | v.Y -= other.Y |
| 97 | } |
| 98 | |
| 99 | /// Multiply this vector by a scalar. |
| 100 | func (v *B2Vec2) OperatorScalarMulInplace(a float64) { |
no outgoing calls
no test coverage detected