( x, y, z )
| 8183 | }; |
| 8184 | |
| 8185 | var pushVertex = function ( x, y, z ) { |
| 8186 | |
| 8187 | _vertex = getNextVertexInPool(); |
| 8188 | _vertex.position.set( x, y, z ); |
| 8189 | |
| 8190 | projectVertex( _vertex ); |
| 8191 | |
| 8192 | }; |
| 8193 | |
| 8194 | var pushNormal = function ( x, y, z ) { |
| 8195 |
nothing calls this directly
no test coverage detected