| 180 | int addVertex(int item_index, int material_index, double X, double Y, double Z); |
| 181 | |
| 182 | void addNormal(double X, double Y, double Z) { |
| 183 | normals_.push_back(X); |
| 184 | normals_.push_back(Y); |
| 185 | normals_.push_back(Z); |
| 186 | } |
| 187 | |
| 188 | void addFace(int item_id, int style, int i0, int i1, int i2) { |
| 189 | faces_.push_back(i0); |
no test coverage detected