GetVector3 stores in the specified Vector3 the values from the array starting at the specified pos.
(pos int, v *Vector3)
| 94 | // GetVector3 stores in the specified Vector3 the |
| 95 | // values from the array starting at the specified pos. |
| 96 | func (a ArrayF32) GetVector3(pos int, v *Vector3) { |
| 97 | |
| 98 | v.X = a[pos] |
| 99 | v.Y = a[pos+1] |
| 100 | v.Z = a[pos+2] |
| 101 | } |
| 102 | |
| 103 | // GetVector4 stores in the specified Vector4 the |
| 104 | // values from the array starting at the specified pos. |
no outgoing calls
no test coverage detected