3 This file is part of libmspgl
4 Copyright © 2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
9 #include "meshbuilder.h"
14 MeshBuilder::MeshBuilder(Mesh &m):
15 PrimitiveBuilder(m.vertices),
20 void MeshBuilder::begin_()
22 batch = new Batch(type);
25 void MeshBuilder::end_()
27 mesh.add_batch(*batch);
32 void MeshBuilder::element_(unsigned i)