The python export class for GeomBezierCurve. More...
#include <BezierCurvePy.h>
Public Types | |
typedef GeomBezierCurve * | PointerType |
Public Member Functions | |
PyObject * | _getattr (char *attr) |
GetAttribute implementation This method implements the retriavel of object attributes. | |
virtual PyObject * | _repr (void) |
_repr method Overide this method to return a string object with some invormation about the object. | |
int | _setattr (char *attr, PyObject *value) |
SetAttribute implementation This method implements the seting of object attributes. | |
BezierCurvePy (GeomBezierCurve *pcObject, PyTypeObject *T=&Type) | |
PyObject * | getCustomAttributes (const char *attr) const |
getter method for special attributes (e.g. dynamic ones) | |
GeomBezierCurve * | getGeomBezierCurvePtr (void) const |
getter for the object handled by this class | |
virtual PyParentObject * | GetParents (void) |
virtual PyTypeObject * | GetType (void) |
virtual int | PyInit (PyObject *args, PyObject *k) |
PyInit method Overide this method to initialize a newly created instance of the class (Constuctor). | |
std::string | representation (void) const |
int | setCustomAttributes (const char *attr, PyObject *obj) |
setter for special attributes (e.g. dynamic ones) | |
~BezierCurvePy () | |
Static Public Member Functions | |
static PyObject * | PyMake (struct _typeobject *, PyObject *, PyObject *) |
Static Public Attributes | |
static PyGetSetDef | GetterSetter [] |
Attribute structure of BezierCurvePy. | |
static PyMethodDef | Methods [] |
Methods structure of BezierCurvePy. | |
static PyParentObject | Parents [] = { PARENTSPartBezierCurvePy } |
static PyTypeObject | Type |
Type structure of BezierCurvePy. | |
callbacks and implementers for the python object attributes | |
| |
Py::Int | getDegree (void) const |
getter for the Degree attribute | |
Py::Object | getEndPoint (void) const |
getter for the EndPoint attribute | |
Py::Int | getMaxDegree (void) const |
getter for the MaxDegree attribute | |
Py::Int | getNbPoles (void) const |
getter for the NbPoles attribute | |
Py::Object | getStartPoint (void) const |
getter for the StartPoint attribute | |
static PyObject * | staticCallback_getDegree (PyObject *self, void *closure) |
getter callback for the Degree attribute | |
static PyObject * | staticCallback_getEndPoint (PyObject *self, void *closure) |
getter callback for the EndPoint attribute | |
static PyObject * | staticCallback_getMaxDegree (PyObject *self, void *closure) |
getter callback for the MaxDegree attribute | |
static PyObject * | staticCallback_getNbPoles (PyObject *self, void *closure) |
getter callback for the NbPoles attribute | |
static PyObject * | staticCallback_getStartPoint (PyObject *self, void *closure) |
getter callback for the StartPoint attribute | |
static int | staticCallback_setDegree (PyObject *self, PyObject *value, void *closure) |
setter callback for the Degree attribute | |
static int | staticCallback_setEndPoint (PyObject *self, PyObject *value, void *closure) |
setter callback for the EndPoint attribute | |
static int | staticCallback_setMaxDegree (PyObject *self, PyObject *value, void *closure) |
setter callback for the MaxDegree attribute | |
static int | staticCallback_setNbPoles (PyObject *self, PyObject *value, void *closure) |
setter callback for the NbPoles attribute | |
static int | staticCallback_setStartPoint (PyObject *self, PyObject *value, void *closure) |
setter callback for the StartPoint attribute | |
callbacks and implementers for the python object methods | |
| |
PyObject * | getPole (PyObject *args) |
implementer for the getPole() method | |
PyObject * | getPoles (PyObject *args) |
implementer for the getPoles() method | |
PyObject * | getResolution (PyObject *args) |
implementer for the getResolution() method | |
PyObject * | getWeight (PyObject *args) |
implementer for the getWeight() method | |
PyObject * | getWeights (PyObject *args) |
implementer for the getWeights() method | |
PyObject * | increase (PyObject *args) |
implementer for the increase() method | |
PyObject * | insertPoleAfter (PyObject *args) |
implementer for the insertPoleAfter() method | |
PyObject * | insertPoleBefore (PyObject *args) |
implementer for the insertPoleBefore() method | |
PyObject * | isClosed (PyObject *args) |
implementer for the isClosed() method | |
PyObject * | isPeriodic (PyObject *args) |
implementer for the isPeriodic() method | |
PyObject * | isRational (PyObject *args) |
implementer for the isRational() method | |
PyObject * | removePole (PyObject *args) |
implementer for the removePole() method | |
PyObject * | segment (PyObject *args) |
implementer for the segment() method | |
PyObject * | setPole (PyObject *args) |
implementer for the setPole() method | |
PyObject * | setPoles (PyObject *args) |
implementer for the setPoles() method | |
PyObject * | setWeight (PyObject *args) |
implementer for the setWeight() method | |
static PyObject * | staticCallback_getPole (PyObject *self, PyObject *args) |
callback for the getPole() method | |
static PyObject * | staticCallback_getPoles (PyObject *self, PyObject *args) |
callback for the getPoles() method | |
static PyObject * | staticCallback_getResolution (PyObject *self, PyObject *args) |
callback for the getResolution() method | |
static PyObject * | staticCallback_getWeight (PyObject *self, PyObject *args) |
callback for the getWeight() method | |
static PyObject * | staticCallback_getWeights (PyObject *self, PyObject *args) |
callback for the getWeights() method | |
static PyObject * | staticCallback_increase (PyObject *self, PyObject *args) |
callback for the increase() method | |
static PyObject * | staticCallback_insertPoleAfter (PyObject *self, PyObject *args) |
callback for the insertPoleAfter() method | |
static PyObject * | staticCallback_insertPoleBefore (PyObject *self, PyObject *args) |
callback for the insertPoleBefore() method | |
static PyObject * | staticCallback_isClosed (PyObject *self, PyObject *args) |
callback for the isClosed() method | |
static PyObject * | staticCallback_isPeriodic (PyObject *self, PyObject *args) |
callback for the isPeriodic() method | |
static PyObject * | staticCallback_isRational (PyObject *self, PyObject *args) |
callback for the isRational() method | |
static PyObject * | staticCallback_removePole (PyObject *self, PyObject *args) |
callback for the removePole() method | |
static PyObject * | staticCallback_segment (PyObject *self, PyObject *args) |
callback for the segment() method | |
static PyObject * | staticCallback_setPole (PyObject *self, PyObject *args) |
callback for the setPole() method | |
static PyObject * | staticCallback_setPoles (PyObject *self, PyObject *args) |
callback for the setPoles() method | |
static PyObject * | staticCallback_setWeight (PyObject *self, PyObject *args) |
callback for the setWeight() method |
The python export class for GeomBezierCurve.
Definition at line 20 of file BezierCurvePy.h.
Reimplemented from Part::GeometryCurvePy.
Definition at line 36 of file BezierCurvePy.h.
BezierCurvePy::BezierCurvePy | ( | GeomBezierCurve * | pcObject, | |
PyTypeObject * | T = &Type | |||
) |
Definition at line 1578 of file BezierCurvePy.cpp.
Referenced by PyMake().
BezierCurvePy::~BezierCurvePy | ( | ) |
Definition at line 1587 of file BezierCurvePy.cpp.
PyObject * BezierCurvePy::_getattr | ( | char * | attr | ) | [virtual] |
GetAttribute implementation This method implements the retriavel of object attributes.
If you want to implement attributes in your class, reimplement this method. You have to call the method of the base class. Note: if you reimplement _gettattr() in a inheriting class you need to call the method of the base class! Otherwise even the methods of the object will disapiear!
Reimplemented from Part::GeometryCurvePy.
Definition at line 1602 of file BezierCurvePy.cpp.
References Base::Console(), getCustomAttributes(), Methods, Base::Exception::ReportException(), and Base::Exception::what().
PyObject * BezierCurvePy::_repr | ( | void | ) | [virtual] |
_repr method Overide this method to return a string object with some invormation about the object.
PyObject *MeshFeaturePy::_repr(void) { std::stringstream a; a << "MeshFeature: [ "; a << "some realy important info about the object!"; a << "]" << std::endl; return Py_BuildValue("s", a.str().c_str()); }
Reimplemented from Part::GeometryCurvePy.
Definition at line 1594 of file BezierCurvePy.cpp.
References representation().
int BezierCurvePy::_setattr | ( | char * | attr, | |
PyObject * | value | |||
) | [virtual] |
SetAttribute implementation This method implements the seting of object attributes.
If you want to implement attributes in your class, reimplement this method. You have to call the method of the base class.
Reimplemented from Part::GeometryCurvePy.
Definition at line 1670 of file BezierCurvePy.cpp.
References Base::Console(), Base::Exception::ReportException(), setCustomAttributes(), and Base::Exception::what().
PyObject * BezierCurvePy::getCustomAttributes | ( | const char * | attr | ) | const |
getter method for special attributes (e.g. dynamic ones)
Reimplemented from Part::GeometryCurvePy.
Definition at line 412 of file BezierCurvePyImp.cpp.
Referenced by _getattr().
Py::Int BezierCurvePy::getDegree | ( | void | ) | const |
getter for the Degree attribute
Definition at line 375 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), and StartPage::StartPage::handle().
Referenced by staticCallback_getDegree().
Py::Object BezierCurvePy::getEndPoint | ( | void | ) | const |
getter for the EndPoint attribute
Definition at line 404 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), and StartPage::StartPage::handle().
Referenced by staticCallback_getEndPoint().
GeomBezierCurve * BezierCurvePy::getGeomBezierCurvePtr | ( | void | ) | const |
getter for the object handled by this class
Definition at line 1729 of file BezierCurvePy.cpp.
References Base::PyObjectBase::_pcTwinPointer.
Referenced by setPoles().
Py::Int BezierCurvePy::getMaxDegree | ( | void | ) | const |
getter for the MaxDegree attribute
Definition at line 382 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), and StartPage::StartPage::handle().
Referenced by staticCallback_getMaxDegree().
Py::Int BezierCurvePy::getNbPoles | ( | void | ) | const |
getter for the NbPoles attribute
Definition at line 389 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), and StartPage::StartPage::handle().
Referenced by staticCallback_getNbPoles().
virtual PyParentObject* Part::BezierCurvePy::GetParents | ( | void | ) | [inline, virtual] |
Reimplemented from Part::GeometryCurvePy.
Definition at line 28 of file BezierCurvePy.h.
implementer for the getPole() method
Definition at line 226 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), StartPage::StartPage::handle(), and draftlibs::fcgeo::vec().
implementer for the getPoles() method
Definition at line 246 of file BezierCurvePyImp.cpp.
References Py::List::append(), Part::GeometryPy::getGeometryPtr(), StartPage::StartPage::handle(), Py::new_reference_to(), draftTools::p, and draftlibs::fcgeo::vec().
implementer for the getResolution() method
Definition at line 356 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), and StartPage::StartPage::handle().
Py::Object BezierCurvePy::getStartPoint | ( | void | ) | const |
getter for the StartPoint attribute
Definition at line 396 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), and StartPage::StartPage::handle().
Referenced by staticCallback_getStartPoint().
virtual PyTypeObject* Part::BezierCurvePy::GetType | ( | void | ) | [inline, virtual] |
Reimplemented from Part::GeometryCurvePy.
Definition at line 27 of file BezierCurvePy.h.
implementer for the getWeight() method
Definition at line 316 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), and StartPage::StartPage::handle().
implementer for the getWeights() method
Definition at line 334 of file BezierCurvePyImp.cpp.
References Py::List::append(), Part::GeometryPy::getGeometryPtr(), StartPage::StartPage::handle(), Py::new_reference_to(), and RobotExample::w.
implementer for the increase() method
Definition at line 110 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), StartPage::StartPage::handle(), and Py_Return.
implementer for the insertPoleAfter() method
Definition at line 121 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), StartPage::StartPage::handle(), draftTools::p, Py_Return, Base::VectorPy::Type, Part::GeometryCurvePy::value(), draftlibs::fcgeo::vec(), Base::Vector3< _Precision >::x, Base::Vector3< _Precision >::y, and Base::Vector3< _Precision >::z.
implementer for the insertPoleBefore() method
Definition at line 143 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), StartPage::StartPage::handle(), draftTools::p, Py_Return, Base::VectorPy::Type, Part::GeometryCurvePy::value(), draftlibs::fcgeo::vec(), Base::Vector3< _Precision >::x, Base::Vector3< _Precision >::y, and Base::Vector3< _Precision >::z.
implementer for the isClosed() method
Definition at line 93 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), and StartPage::StartPage::handle().
implementer for the isPeriodic() method
Definition at line 76 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), and StartPage::StartPage::handle().
implementer for the isRational() method
Definition at line 59 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), and StartPage::StartPage::handle().
PyInit method Overide this method to initialize a newly created instance of the class (Constuctor).
Reimplemented from Part::GeometryCurvePy.
Definition at line 54 of file BezierCurvePyImp.cpp.
Reimplemented from Part::GeometryCurvePy.
Definition at line 47 of file BezierCurvePyImp.cpp.
References BezierCurvePy().
implementer for the removePole() method
Definition at line 165 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), StartPage::StartPage::handle(), and Py_Return.
std::string BezierCurvePy::representation | ( | void | ) | const |
Reimplemented from Part::GeometryCurvePy.
Definition at line 42 of file BezierCurvePyImp.cpp.
Referenced by _repr().
implementer for the segment() method
Definition at line 183 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), StartPage::StartPage::handle(), and Py_Return.
int BezierCurvePy::setCustomAttributes | ( | const char * | attr, | |
PyObject * | obj | |||
) |
setter for special attributes (e.g. dynamic ones)
Reimplemented from Part::GeometryCurvePy.
Definition at line 417 of file BezierCurvePyImp.cpp.
Referenced by _setattr().
implementer for the setPole() method
Definition at line 201 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), StartPage::StartPage::handle(), draftTools::p, Py_Return, Base::VectorPy::Type, Part::GeometryCurvePy::value(), draftlibs::fcgeo::vec(), Base::Vector3< _Precision >::x, Base::Vector3< _Precision >::y, and Base::Vector3< _Precision >::z.
implementer for the setPoles() method
Definition at line 271 of file BezierCurvePyImp.cpp.
References Py::SeqBase< T >::begin(), Py::SeqBase< T >::end(), getGeomBezierCurvePtr(), Py_Return, Part::GeomBezierCurve::setHandle(), Py::SeqBase< T >::size(), Py::Vector::toVector(), Base::Vector3< _Precision >::x, Base::Vector3< _Precision >::y, and Base::Vector3< _Precision >::z.
implementer for the setWeight() method
Definition at line 297 of file BezierCurvePyImp.cpp.
References Part::GeometryPy::getGeometryPtr(), StartPage::StartPage::handle(), and Py_Return.
getter callback for the Degree attribute
Definition at line 1411 of file BezierCurvePy.cpp.
References getDegree(), Base::PyObjectBase::isValid(), Py::new_reference_to(), and Base::PyObjectBase::PyObjectBase().
getter callback for the EndPoint attribute
Definition at line 1539 of file BezierCurvePy.cpp.
References getEndPoint(), Base::PyObjectBase::isValid(), Py::new_reference_to(), and Base::PyObjectBase::PyObjectBase().
getter callback for the MaxDegree attribute
Definition at line 1443 of file BezierCurvePy.cpp.
References getMaxDegree(), Base::PyObjectBase::isValid(), Py::new_reference_to(), and Base::PyObjectBase::PyObjectBase().
getter callback for the NbPoles attribute
Definition at line 1475 of file BezierCurvePy.cpp.
References getNbPoles(), Base::PyObjectBase::isValid(), Py::new_reference_to(), and Base::PyObjectBase::PyObjectBase().
callback for the getPole() method
Definition at line 886 of file BezierCurvePy.cpp.
References Base::Console(), Base::PyObjectBase::isConst(), Base::PyObjectBase::isValid(), Base::PyObjectBase::PyObjectBase(), Base::Exception::ReportException(), and Base::Exception::what().
callback for the getPoles() method
Definition at line 962 of file BezierCurvePy.cpp.
References Base::Console(), Base::PyObjectBase::isConst(), Base::PyObjectBase::isValid(), Base::PyObjectBase::PyObjectBase(), Base::Exception::ReportException(), and Base::Exception::what().
PyObject * BezierCurvePy::staticCallback_getResolution | ( | PyObject * | self, | |
PyObject * | args | |||
) | [static] |
callback for the getResolution() method
Definition at line 1342 of file BezierCurvePy.cpp.
References Base::Console(), Base::PyObjectBase::isValid(), Base::PyObjectBase::PyObjectBase(), Base::Exception::ReportException(), and Base::Exception::what().
getter callback for the StartPoint attribute
Definition at line 1507 of file BezierCurvePy.cpp.
References getStartPoint(), Base::PyObjectBase::isValid(), Py::new_reference_to(), and Base::PyObjectBase::PyObjectBase().
callback for the getWeight() method
Definition at line 1190 of file BezierCurvePy.cpp.
References Base::Console(), Base::PyObjectBase::isConst(), Base::PyObjectBase::isValid(), Base::PyObjectBase::PyObjectBase(), Base::Exception::ReportException(), and Base::Exception::what().
callback for the getWeights() method
Definition at line 1266 of file BezierCurvePy.cpp.
References Base::Console(), Base::PyObjectBase::isConst(), Base::PyObjectBase::isValid(), Base::PyObjectBase::PyObjectBase(), Base::Exception::ReportException(), and Base::Exception::what().
callback for the increase() method
Definition at line 430 of file BezierCurvePy.cpp.
References Base::Console(), Base::PyObjectBase::isConst(), Base::PyObjectBase::isValid(), Base::PyObjectBase::PyObjectBase(), Base::Exception::ReportException(), and Base::Exception::what().
PyObject * BezierCurvePy::staticCallback_insertPoleAfter | ( | PyObject * | self, | |
PyObject * | args | |||
) | [static] |
callback for the insertPoleAfter() method
Definition at line 506 of file BezierCurvePy.cpp.
References Base::Console(), Base::PyObjectBase::isConst(), Base::PyObjectBase::isValid(), Base::PyObjectBase::PyObjectBase(), Base::Exception::ReportException(), and Base::Exception::what().
PyObject * BezierCurvePy::staticCallback_insertPoleBefore | ( | PyObject * | self, | |
PyObject * | args | |||
) | [static] |
callback for the insertPoleBefore() method
Definition at line 582 of file BezierCurvePy.cpp.
References Base::Console(), Base::PyObjectBase::isConst(), Base::PyObjectBase::isValid(), Base::PyObjectBase::PyObjectBase(), Base::Exception::ReportException(), and Base::Exception::what().
callback for the isClosed() method
Definition at line 354 of file BezierCurvePy.cpp.
References Base::Console(), Base::PyObjectBase::isConst(), Base::PyObjectBase::isValid(), Base::PyObjectBase::PyObjectBase(), Base::Exception::ReportException(), and Base::Exception::what().
callback for the isPeriodic() method
Definition at line 278 of file BezierCurvePy.cpp.
References Base::Console(), Base::PyObjectBase::isConst(), Base::PyObjectBase::isValid(), Base::PyObjectBase::PyObjectBase(), Base::Exception::ReportException(), and Base::Exception::what().
callback for the isRational() method
Definition at line 202 of file BezierCurvePy.cpp.
References Base::Console(), Base::PyObjectBase::isConst(), Base::PyObjectBase::isValid(), Base::PyObjectBase::PyObjectBase(), Base::Exception::ReportException(), and Base::Exception::what().
callback for the removePole() method
Definition at line 658 of file BezierCurvePy.cpp.
References Base::Console(), Base::PyObjectBase::isConst(), Base::PyObjectBase::isValid(), Base::PyObjectBase::PyObjectBase(), Base::Exception::ReportException(), and Base::Exception::what().
callback for the segment() method
Definition at line 734 of file BezierCurvePy.cpp.
References Base::Console(), Base::PyObjectBase::isConst(), Base::PyObjectBase::isValid(), Base::PyObjectBase::PyObjectBase(), Base::Exception::ReportException(), and Base::Exception::what().
int BezierCurvePy::staticCallback_setDegree | ( | PyObject * | self, | |
PyObject * | value, | |||
void * | closure | |||
) | [static] |
setter callback for the Degree attribute
Definition at line 1429 of file BezierCurvePy.cpp.
References Base::PyObjectBase::isValid(), and Base::PyObjectBase::PyObjectBase().
int BezierCurvePy::staticCallback_setEndPoint | ( | PyObject * | self, | |
PyObject * | value, | |||
void * | closure | |||
) | [static] |
setter callback for the EndPoint attribute
Definition at line 1557 of file BezierCurvePy.cpp.
References Base::PyObjectBase::isValid(), and Base::PyObjectBase::PyObjectBase().
int BezierCurvePy::staticCallback_setMaxDegree | ( | PyObject * | self, | |
PyObject * | value, | |||
void * | closure | |||
) | [static] |
setter callback for the MaxDegree attribute
Definition at line 1461 of file BezierCurvePy.cpp.
References Base::PyObjectBase::isValid(), and Base::PyObjectBase::PyObjectBase().
int BezierCurvePy::staticCallback_setNbPoles | ( | PyObject * | self, | |
PyObject * | value, | |||
void * | closure | |||
) | [static] |
setter callback for the NbPoles attribute
Definition at line 1493 of file BezierCurvePy.cpp.
References Base::PyObjectBase::isValid(), and Base::PyObjectBase::PyObjectBase().
callback for the setPole() method
Definition at line 810 of file BezierCurvePy.cpp.
References Base::Console(), Base::PyObjectBase::isConst(), Base::PyObjectBase::isValid(), Base::PyObjectBase::PyObjectBase(), Base::Exception::ReportException(), and Base::Exception::what().
callback for the setPoles() method
Definition at line 1038 of file BezierCurvePy.cpp.
References Base::Console(), Base::PyObjectBase::isConst(), Base::PyObjectBase::isValid(), Base::PyObjectBase::PyObjectBase(), Base::Exception::ReportException(), and Base::Exception::what().
int BezierCurvePy::staticCallback_setStartPoint | ( | PyObject * | self, | |
PyObject * | value, | |||
void * | closure | |||
) | [static] |
setter callback for the StartPoint attribute
Definition at line 1525 of file BezierCurvePy.cpp.
References Base::PyObjectBase::isValid(), and Base::PyObjectBase::PyObjectBase().
callback for the setWeight() method
Definition at line 1114 of file BezierCurvePy.cpp.
References Base::Console(), Base::PyObjectBase::isConst(), Base::PyObjectBase::isValid(), Base::PyObjectBase::PyObjectBase(), Base::Exception::ReportException(), and Base::Exception::what().
PyGetSetDef BezierCurvePy::GetterSetter [static] |
Attribute structure of BezierCurvePy.
Reimplemented from Part::GeometryCurvePy.
Definition at line 25 of file BezierCurvePy.h.
PyMethodDef BezierCurvePy::Methods [static] |
Methods structure of BezierCurvePy.
Reimplemented from Part::GeometryCurvePy.
Definition at line 24 of file BezierCurvePy.h.
Referenced by _getattr().
PyParentObject BezierCurvePy::Parents = { PARENTSPartBezierCurvePy } [static] |
Reimplemented from Part::GeometryCurvePy.
Definition at line 26 of file BezierCurvePy.h.
PyTypeObject BezierCurvePy::Type [static] |
Type structure of BezierCurvePy.
Reimplemented from Part::GeometryCurvePy.
Definition at line 23 of file BezierCurvePy.h.
Referenced by initPart().