Copy copies other vector to this one. It is equivalent to: *v = *other. Returns the pointer to this updated vector.
(other *Vector3)
| 118 | // It is equivalent to: *v = *other. |
| 119 | // Returns the pointer to this updated vector. |
| 120 | func (v *Vector3) Copy(other *Vector3) *Vector3 { |
| 121 | |
| 122 | *v = *other |
| 123 | return v |
| 124 | } |
| 125 | |
| 126 | // Add adds other vector to this one. |
| 127 | // Returns the pointer to this updated vector. |
no outgoing calls
no test coverage detected