| 47 | IE_CORE_DEFINERUNTIMETYPED( MeshVertexReorderOp ); |
| 48 | |
| 49 | MeshVertexReorderOp::MeshVertexReorderOp() : MeshPrimitiveOp( "Calculates vertex normals for a mesh." ) |
| 50 | { |
| 51 | m_startingVerticesParameter = new V3iParameter( |
| 52 | "startingVertices", |
| 53 | "startingVertices description", |
| 54 | Imath::V3i( 0, 1, 2 ) |
| 55 | ); |
| 56 | |
| 57 | parameters()->addParameter( m_startingVerticesParameter ); |
| 58 | } |
| 59 | |
| 60 | MeshVertexReorderOp::~MeshVertexReorderOp() |
| 61 | { |