Make new method in Vector3 accesible from Python

This commit is contained in:
wmayer
2012-02-24 19:43:44 +01:00
parent d4899667bc
commit d102002bdf
6 changed files with 47 additions and 3 deletions

View File

@@ -426,6 +426,17 @@ void InventorBuilder::endPoints(void)
result << Base::blanks(indent) << "]" << std::endl;
indent -= 2;
result << Base::blanks(indent) << "}" << std::endl;
}
/**
* Adds an SoPointSet node after creating an SoCordinate3 node with
* beginPoints() and endPoints().
* @see startPoints()
* @see beginPoints()
* @see endPoints()
*/
void InventorBuilder::addPointSet(void)
{
result << Base::blanks(indent) << "PointSet { } " << std::endl;
}