return a view onto the vertex storage for this mesh. Write your vertex data into this FloatBuffer
(boolean readOnly)
| 36 | * return a view onto the vertex storage for this mesh. Write your vertex data into this FloatBuffer |
| 37 | */ |
| 38 | public FloatBuffer vertex(boolean readOnly) { |
| 39 | return buffer(0, 3).floats(readOnly); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * equivalent to vertex(false) |
no test coverage detected