Add a vector to this vector.
(other B2Vec2)
| 86 | |
| 87 | /// Add a vector to this vector. |
| 88 | func (v *B2Vec2) OperatorPlusInplace(other B2Vec2) { |
| 89 | v.X += other.X |
| 90 | v.Y += other.Y |
| 91 | } |
| 92 | |
| 93 | /// Subtract a vector from this vector. |
| 94 | func (v *B2Vec2) OperatorMinusInplace(other B2Vec2) { |
no outgoing calls
no test coverage detected