AppendVector3 appends any number of Vector3 to the array
(v ...*Vector3)
| 53 | |
| 54 | // AppendVector3 appends any number of Vector3 to the array |
| 55 | func (a *ArrayF32) AppendVector3(v ...*Vector3) { |
| 56 | |
| 57 | for i := 0; i < len(v); i++ { |
| 58 | *a = append(*a, v[i].X, v[i].Y, v[i].Z) |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | // AppendVector4 appends any number of Vector4 to the array |
| 63 | func (a *ArrayF32) AppendVector4(v ...*Vector4) { |
no outgoing calls
no test coverage detected