| 41 | using namespace Imath; |
| 42 | |
| 43 | MeshPrimitiveBuilder::MeshPrimitiveBuilder() |
| 44 | { |
| 45 | m_P = new V3fVectorData(); |
| 46 | m_N = new V3fVectorData(); |
| 47 | m_P->setInterpretation( GeometricData::Point ); |
| 48 | m_N->setInterpretation( GeometricData::Normal ); |
| 49 | m_verticesPerFace = new IntVectorData(); |
| 50 | m_vertexIds = new IntVectorData(); |
| 51 | } |
| 52 | |
| 53 | namespace IECoreScene |
| 54 | { |
no outgoing calls