Append appends any number of values to the array
(v ...float32)
| 39 | |
| 40 | // Append appends any number of values to the array |
| 41 | func (a *ArrayF32) Append(v ...float32) { |
| 42 | |
| 43 | *a = append(*a, v...) |
| 44 | } |
| 45 | |
| 46 | // AppendVector2 appends any number of Vector2 to the array |
| 47 | func (a *ArrayF32) AppendVector2(v ...*Vector2) { |
no outgoing calls
no test coverage detected