SetDiv sets this to division by other vector (i.e., /= or divide-equals).
(other Vector3)
| 213 | |
| 214 | // SetDiv sets this to division by other vector (i.e., /= or divide-equals). |
| 215 | func (v *Vector3) SetDiv(other Vector3) { |
| 216 | v.X /= other.X |
| 217 | v.Y /= other.Y |
| 218 | v.Z /= other.Z |
| 219 | } |
| 220 | |
| 221 | // SetDivScalar sets this to division by scalar. |
| 222 | func (v *Vector3) SetDivScalar(scalar float32) { |
no outgoing calls