The PyObjectBase class, exports the class as a python type PyObjectBase is the base class for all C++ classes which need to get exported into the python namespace. More...
#include <PyObjectBase.h>
Public Types | |
typedef void * | PointerType |
Public Member Functions | |
virtual 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. | |
virtual int | _setattr (char *attr, PyObject *value) |
SetAttribute implementation This method implements the seting of object attributes. | |
PyObjectBase * | DecRef (void) |
decref method wrapper (see python extending manual) | |
virtual PyParentObject * | GetParents (void) |
virtual PyTypeObject * | GetType (void) |
PyObjectBase * | IncRef (void) |
incref method wrapper (see python extending manual) | |
bool | isConst () |
bool | isValid () |
virtual int | PyInit (PyObject *, PyObject *) |
PyInit method Overide this method to initialize a newly created instance of the class (Constuctor). | |
PyObjectBase (void *, PyTypeObject *T) | |
Constructor Sets the Type of the object (for inherintance) and decrease the the reference count of the PyObject. | |
void | setAttributeOf (const char *attr, const PyObjectBase *par) |
void | setConst () |
void | setInvalid () |
void | startNotify () |
Static Public Member Functions | |
static PyObject * | __getattr (PyObject *PyObj, char *attr) |
static wrapper for pythons _getattr() | |
static int | __PyInit (PyObject *self, PyObject *args, PyObject *kwd) |
python wrapper for the _repr() function | |
static PyObject * | __repr (PyObject *PyObj) |
python wrapper for the _repr() function | |
static int | __setattr (PyObject *PyObj, char *attr, PyObject *value) |
static wrapper for pythons _setattr(). // This should be the entry in Type. | |
static void | PyDestructor (PyObject *P) |
Wrapper for the Python destructor. | |
Static Public Attributes | |
static PyMethodDef | Methods [] |
static PyParentObject | Parents [] = {&PyObjectBase::Type, NULL} |
static PyTypeObject | Type |
Py_Header struct from python.h. | |
Protected Member Functions | |
virtual | ~PyObjectBase () |
destructor | |
Protected Attributes | |
void * | _pcTwinPointer |
pointer to the handled class | |
char * | attribute |
PyObjectBase * | parent |
std::bitset< 32 > | StatusBits |
The PyObjectBase class, exports the class as a python type PyObjectBase is the base class for all C++ classes which need to get exported into the python namespace.
This class is very important because nearly all important classes in FreeCAD are visible in python for macro recording and automation purpose. The class App::Document is a good expample for an exported class. There are some conveniance macros to make it easier to inherit from this class and defining new methods exported to python. PYFUNCDEF_D defines a new exported method. PYFUNCIMP_D defines the implementation of the new exported method. In the implementation you can use Py_Return, Py_Error, Py_Try and Py_Assert. PYMETHODEDEF makes the entry in the python method tabel.
Definition at line 186 of file PyObjectBase.h.
typedef void* Base::PyObjectBase::PointerType |
Reimplemented in Base::BaseClassPy, Base::BoundBoxPy, Base::MatrixPy, Base::PersistencePy, Base::PlacementPy, Base::RotationPy, Base::VectorPy, Data::ComplexGeoDataPy, App::DocumentObjectGroupPy, App::DocumentObjectPy, App::DocumentPy, App::FeaturePythonPy, App::MaterialPy, App::PropertyContainerPy, Gui::DocumentPy, Gui::PythonWorkbenchPy, Gui::SelectionObjectPy, Gui::ViewProviderDocumentObjectPy, Gui::ViewProviderPy, Gui::ViewProviderPythonFeaturePy, Gui::WorkbenchPy, Fem::FemMeshPy, Mesh::FacetPy, Mesh::FeaturePythonPy, Mesh::MeshFeaturePy, Mesh::MeshPointPy, Mesh::MeshPy, Part::ArcOfCirclePy, Part::ArcPy, Part::BezierCurvePy, Part::BezierSurfacePy, Part::BSplineCurvePy, Part::BSplineSurfacePy, Part::CirclePy, Part::ConePy, Part::CylinderPy, Part::EllipsePy, Part::FeaturePythonPy, Part::GeometryCurvePy, Part::GeometryPy, Part::GeometrySurfacePy, Part::HyperbolaPy, Part::LinePy, Part::OffsetCurvePy, Part::OffsetSurfacePy, Part::ParabolaPy, Part::Part2DObjectPy, Part::PartFeaturePy, Part::PlanePy, Part::RectangularTrimmedSurfacePy, Part::SpherePy, Part::SurfaceOfExtrusionPy, Part::SurfaceOfRevolutionPy, Part::TopoShapeCompoundPy, Part::TopoShapeCompSolidPy, Part::TopoShapeEdgePy, Part::TopoShapeFacePy, Part::TopoShapePy, Part::TopoShapeShellPy, Part::TopoShapeSolidPy, Part::TopoShapeVertexPy, Part::TopoShapeWirePy, Part::ToroidPy, Points::PointsPy, Robot::Robot6AxisPy, Robot::RobotObjectPy, Robot::TrajectoryPy, Robot::WaypointPy, Sketcher::ConstraintPy, Sketcher::SketchObjectPy, Sketcher::SketchObjectSFPy, and Sketcher::SketchPy.
Definition at line 295 of file PyObjectBase.h.
PyObjectBase::~PyObjectBase | ( | ) | [protected, virtual] |
destructor
Definition at line 49 of file PyObjectBase.cpp.
References attribute, Base::Console(), DecRef(), boost::numeric::bindings::umfpack::free(), Base::ConsoleSingleton::Log(), and parent.
PyObjectBase::PyObjectBase | ( | void * | p, | |
PyTypeObject * | T | |||
) |
Constructor Sets the Type of the object (for inherintance) and decrease the the reference count of the PyObject.
Definition at line 37 of file PyObjectBase.cpp.
References Base::Console(), Base::ConsoleSingleton::Log(), and StatusBits.
Referenced by Gui::PyResource::_getattr(), TestGui::UnitTestPy::_getattr(), App::DocumentPy::staticCallback_abortTransaction(), Gui::WorkbenchPy::staticCallback_activate(), Gui::DocumentPy::staticCallback_activeObject(), Gui::DocumentPy::staticCallback_activeView(), Part::TopoShapeShellPy::staticCallback_add(), Part::TopoShapeCompSolidPy::staticCallback_add(), Part::TopoShapeCompoundPy::staticCallback_add(), Gui::DocumentPy::staticCallback_addAnnotation(), Sketcher::SketchPy::staticCallback_addConstraint(), Sketcher::SketchObjectPy::staticCallback_addConstraint(), Gui::ViewProviderPythonFeaturePy::staticCallback_addDisplayMode(), Fem::FemMeshPy::staticCallback_addEdge(), Sketcher::SketchObjectPy::staticCallback_addExternal(), Fem::FemMeshPy::staticCallback_addFace(), Mesh::MeshPy::staticCallback_addFacet(), Mesh::MeshPy::staticCallback_addFacets(), Sketcher::SketchPy::staticCallback_addGeometry(), Sketcher::SketchObjectPy::staticCallback_addGeometry(), Fem::FemMeshPy::staticCallback_addHypothesis(), Mesh::MeshPy::staticCallback_addMesh(), Fem::FemMeshPy::staticCallback_addNode(), App::DocumentPy::staticCallback_addObject(), App::DocumentObjectGroupPy::staticCallback_addObject(), Points::PointsPy::staticCallback_addPoints(), Gui::ViewProviderPythonFeaturePy::staticCallback_addProperty(), Part::FeaturePythonPy::staticCallback_addProperty(), Mesh::FeaturePythonPy::staticCallback_addProperty(), App::FeaturePythonPy::staticCallback_addProperty(), Fem::FemMeshPy::staticCallback_addQuad(), Fem::FemMeshPy::staticCallback_addVolume(), Gui::PythonWorkbenchPy::staticCallback_AppendCommandbar(), Gui::PythonWorkbenchPy::staticCallback_appendCommandbar(), Gui::PythonWorkbenchPy::staticCallback_AppendContextMenu(), Gui::PythonWorkbenchPy::staticCallback_appendContextMenu(), Gui::PythonWorkbenchPy::staticCallback_AppendMenu(), Gui::PythonWorkbenchPy::staticCallback_appendMenu(), Gui::PythonWorkbenchPy::staticCallback_AppendToolbar(), Gui::PythonWorkbenchPy::staticCallback_appendToolbar(), Part::TopoShapeWirePy::staticCallback_approximate(), Part::BSplineCurvePy::staticCallback_approximate(), Part::GeometrySurfacePy::staticCallback_bounds(), Part::BSplineSurfacePy::staticCallback_bounds(), Part::BezierSurfacePy::staticCallback_bounds(), Part::BSplineCurvePy::staticCallback_buildFromPoles(), Part::TopoShapeEdgePy::staticCallback_centerOfCurvatureAt(), Part::TopoShapePy::staticCallback_check(), Robot::Robot6AxisPy::staticCallback_check(), Sketcher::SketchPy::staticCallback_clear(), Mesh::MeshPy::staticCallback_clear(), App::DocumentPy::staticCallback_clearUndos(), Mesh::MeshPy::staticCallback_coarsen(), Mesh::MeshPy::staticCallback_collapseEdge(), Mesh::MeshPy::staticCallback_collapseFacet(), Mesh::MeshPy::staticCallback_collapseFacets(), App::DocumentPy::staticCallback_commitTransaction(), Part::TopoShapePy::staticCallback_common(), Part::TopoShapePy::staticCallback_complement(), Fem::FemMeshPy::staticCallback_compute(), Part::TopoShapePy::staticCallback_copy(), Points::PointsPy::staticCallback_copy(), Mesh::MeshPy::staticCallback_copy(), Fem::FemMeshPy::staticCallback_copy(), App::DocumentPy::staticCallback_copyObject(), Mesh::MeshPy::staticCallback_countComponents(), Mesh::MeshFeaturePy::staticCallback_countFacets(), Mesh::MeshPy::staticCallback_countNonUniformOrientedFacets(), Mesh::MeshFeaturePy::staticCallback_countPoints(), Mesh::MeshPy::staticCallback_countSegments(), Mesh::MeshPy::staticCallback_crossSections(), Part::TopoShapeFacePy::staticCallback_curvatureAt(), Part::TopoShapeEdgePy::staticCallback_curvatureAt(), Part::TopoShapePy::staticCallback_cut(), Sketcher::SketchObjectPy::staticCallback_delConstraint(), Sketcher::SketchObjectPy::staticCallback_delConstraintOnPoint(), Robot::TrajectoryPy::staticCallback_deleteLast(), Sketcher::SketchObjectPy::staticCallback_delExternal(), Sketcher::SketchObjectPy::staticCallback_delGeometry(), Part::TopoShapeFacePy::staticCallback_derivative1At(), Part::TopoShapeEdgePy::staticCallback_derivative1At(), Part::TopoShapeFacePy::staticCallback_derivative2At(), Part::TopoShapeEdgePy::staticCallback_derivative2At(), Part::TopoShapeEdgePy::staticCallback_derivative3At(), Mesh::MeshPy::staticCallback_difference(), Part::GeometryCurvePy::staticCallback_discretize(), Part::BSplineSurfacePy::staticCallback_exchangeUV(), Part::BezierSurfacePy::staticCallback_exchangeUV(), Part::TopoShapePy::staticCallback_exportBrep(), Part::TopoShapePy::staticCallback_exportIges(), Part::TopoShapePy::staticCallback_exportStep(), Part::TopoShapePy::staticCallback_exportStl(), Part::TopoShapePy::staticCallback_extrude(), Sketcher::SketchObjectPy::staticCallback_fillet(), Mesh::MeshPy::staticCallback_fillupHoles(), App::DocumentPy::staticCallback_findObjects(), Gui::ViewProviderPy::staticCallback_finishEditing(), Part::TopoShapePy::staticCallback_fix(), Mesh::MeshPy::staticCallback_fixDeformations(), Mesh::MeshPy::staticCallback_fixDegenerations(), Mesh::MeshFeaturePy::staticCallback_fixDegenerations(), Mesh::MeshPy::staticCallback_fixIndices(), Mesh::MeshFeaturePy::staticCallback_fixIndices(), Mesh::MeshPy::staticCallback_fixSelfIntersections(), Mesh::MeshFeaturePy::staticCallback_fixSelfIntersections(), Mesh::MeshPy::staticCallback_flipNormals(), Mesh::MeshPy::staticCallback_foraminate(), Part::TopoShapePy::staticCallback_fuse(), Gui::DocumentPy::staticCallback_getActiveObject(), App::DocumentPy::staticCallback_getActiveObject(), Gui::DocumentPy::staticCallback_getActiveView(), App::MaterialPy::staticCallback_getAmbientColor(), Gui::ViewProviderPy::staticCallback_getAnnotation(), Part::ConePy::staticCallback_getApex(), Part::ToroidPy::staticCallback_getArea(), Part::TopoShapePy::staticCallback_getArea(), Part::SpherePy::staticCallback_getArea(), Mesh::MeshPy::staticCallback_getArea(), Part::ToroidPy::staticCallback_getAxis(), Part::SpherePy::staticCallback_getAxis(), Part::PlanePy::staticCallback_getAxis(), Part::ParabolaPy::staticCallback_getAxis(), Part::HyperbolaPy::staticCallback_getAxis(), Part::EllipsePy::staticCallback_getAxis(), Part::CylinderPy::staticCallback_getAxis(), Part::ConePy::staticCallback_getAxis(), Part::CirclePy::staticCallback_getAxis(), Part::ArcOfCirclePy::staticCallback_getAxis(), Robot::Robot6AxisPy::staticCallback_getAxis1(), Robot::Robot6AxisPy::staticCallback_getAxis2(), Robot::Robot6AxisPy::staticCallback_getAxis3(), Robot::Robot6AxisPy::staticCallback_getAxis4(), Robot::Robot6AxisPy::staticCallback_getAxis5(), Robot::Robot6AxisPy::staticCallback_getAxis6(), Part::TopoShapeShellPy::staticCallback_getBadEdges(), Robot::WaypointPy::staticCallback_getBase(), Robot::Robot6AxisPy::staticCallback_getBase(), Part::SurfaceOfRevolutionPy::staticCallback_getBasisCurve(), Part::SurfaceOfExtrusionPy::staticCallback_getBasisCurve(), Part::OffsetCurvePy::staticCallback_getBasisCurve(), Part::OffsetSurfacePy::staticCallback_getBasisSurface(), Mesh::MeshPointPy::staticCallback_getBound(), Mesh::FacetPy::staticCallback_getBound(), Data::ComplexGeoDataPy::staticCallback_getBoundBox(), Part::ToroidPy::staticCallback_getCenter(), Part::SpherePy::staticCallback_getCenter(), Part::EllipsePy::staticCallback_getCenter(), Part::CylinderPy::staticCallback_getCenter(), Part::ConePy::staticCallback_getCenter(), Part::CirclePy::staticCallback_getCenter(), Part::ArcOfCirclePy::staticCallback_getCenter(), Part::TopoShapeWirePy::staticCallback_getCenterOfMass(), Part::TopoShapeSolidPy::staticCallback_getCenterOfMass(), Part::TopoShapeFacePy::staticCallback_getCenterOfMass(), Part::TopoShapeEdgePy::staticCallback_getCenterOfMass(), Part::ArcOfCirclePy::staticCallback_getCircle(), Part::TopoShapeEdgePy::staticCallback_getClosed(), Part::TopoShapePy::staticCallback_getCompounds(), Part::TopoShapePy::staticCallback_getCompSolids(), Sketcher::SketchPy::staticCallback_getConstraint(), Sketcher::SketchObjectPy::staticCallback_getConstraintCount(), Sketcher::SketchPy::staticCallback_getConstraints(), Part::GeometryPy::staticCallback_getConstruction(), Robot::WaypointPy::staticCallback_getCont(), Mesh::MeshPy::staticCallback_getCountFacets(), Points::PointsPy::staticCallback_getCountPoints(), Mesh::MeshPy::staticCallback_getCountPoints(), Part::TopoShapeEdgePy::staticCallback_getCurve(), Part::TopoShapeEdgePy::staticCallback_getDegenerated(), Part::BSplineCurvePy::staticCallback_getDegree(), Part::BezierCurvePy::staticCallback_getDegree(), App::DocumentPy::staticCallback_getDependencyGraph(), App::MaterialPy::staticCallback_getDiffuseColor(), Part::SurfaceOfRevolutionPy::staticCallback_getDirection(), Part::SurfaceOfExtrusionPy::staticCallback_getDirection(), Gui::SelectionObjectPy::staticCallback_getDocument(), Gui::DocumentPy::staticCallback_getDocument(), App::DocumentObjectPy::staticCallback_getDocument(), App::PropertyContainerPy::staticCallback_getDocumentationOfProperty(), Gui::SelectionObjectPy::staticCallback_getDocumentName(), Robot::TrajectoryPy::staticCallback_getDuration(), Part::ParabolaPy::staticCallback_getEccentricity(), Part::HyperbolaPy::staticCallback_getEccentricity(), Part::EllipsePy::staticCallback_getEccentricity(), Fem::FemMeshPy::staticCallback_getEdgeCount(), Part::TopoShapePy::staticCallback_getEdges(), App::MaterialPy::staticCallback_getEmissiveColor(), Part::LinePy::staticCallback_getEndPoint(), Part::BSplineCurvePy::staticCallback_getEndPoint(), Part::BezierCurvePy::staticCallback_getEndPoint(), Part::TopoShapePy::staticCallback_getFaces(), Fem::FemMeshPy::staticCallback_getFacesCount(), Mesh::MeshPy::staticCallback_getFacets(), Mesh::MeshPy::staticCallback_getFacetSelection(), Sketcher::ConstraintPy::staticCallback_getFirst(), Part::GeometryCurvePy::staticCallback_getFirstParameter(), Part::BSplineSurfacePy::staticCallback_getFirstUKnotIndex(), Part::BSplineCurvePy::staticCallback_getFirstUKnotIndex(), Part::BSplineSurfacePy::staticCallback_getFirstVKnotIndex(), Part::ParabolaPy::staticCallback_getFocal(), Part::HyperbolaPy::staticCallback_getFocal(), Part::EllipsePy::staticCallback_getFocal(), Part::ParabolaPy::staticCallback_getFocus(), Part::HyperbolaPy::staticCallback_getFocus1(), Part::EllipsePy::staticCallback_getFocus1(), Part::HyperbolaPy::staticCallback_getFocus2(), Part::EllipsePy::staticCallback_getFocus2(), Part::TopoShapeShellPy::staticCallback_getFreeEdges(), Gui::SelectionObjectPy::staticCallback_getFullName(), Sketcher::SketchPy::staticCallback_getGeometries(), Sketcher::SketchObjectPy::staticCallback_getGeometryCount(), Fem::FemMeshPy::staticCallback_getGroupCount(), App::PropertyContainerPy::staticCallback_getGroupOfProperty(), Gui::SelectionObjectPy::staticCallback_getHasSubObjects(), Fem::FemMeshPy::staticCallback_getHexaCount(), Mesh::MeshPointPy::staticCallback_getIndex(), Mesh::FacetPy::staticCallback_getIndex(), Part::LinePy::staticCallback_getInfinite(), App::DocumentObjectPy::staticCallback_getInList(), Gui::ViewProviderPy::staticCallback_getIV(), Part::BSplineCurvePy::staticCallback_getKnot(), Part::BSplineCurvePy::staticCallback_getKnots(), Part::BSplineCurvePy::staticCallback_getKnotSequence(), Part::GeometryCurvePy::staticCallback_getLastParameter(), Part::BSplineSurfacePy::staticCallback_getLastUKnotIndex(), Part::BSplineCurvePy::staticCallback_getLastUKnotIndex(), Part::BSplineSurfacePy::staticCallback_getLastVKnotIndex(), Robot::TrajectoryPy::staticCallback_getLength(), Part::TopoShapePy::staticCallback_getLength(), Part::TopoShapeEdgePy::staticCallback_getLength(), Part::SurfaceOfRevolutionPy::staticCallback_getLocation(), Part::ParabolaPy::staticCallback_getLocation(), Part::HyperbolaPy::staticCallback_getLocation(), Part::ToroidPy::staticCallback_getMajorRadius(), Part::HyperbolaPy::staticCallback_getMajorRadius(), Part::EllipsePy::staticCallback_getMajorRadius(), Data::ComplexGeoDataPy::staticCallback_getMatrix(), Part::BSplineSurfacePy::staticCallback_getMaxDegree(), Part::BSplineCurvePy::staticCallback_getMaxDegree(), Part::BezierSurfacePy::staticCallback_getMaxDegree(), Part::BezierCurvePy::staticCallback_getMaxDegree(), Part::ToroidPy::staticCallback_getMinorRadius(), Part::HyperbolaPy::staticCallback_getMinorRadius(), Part::EllipsePy::staticCallback_getMinorRadius(), Part::BSplineCurvePy::staticCallback_getMultiplicities(), Part::BSplineCurvePy::staticCallback_getMultiplicity(), Robot::WaypointPy::staticCallback_getName(), App::DocumentPy::staticCallback_getName(), App::DocumentObjectPy::staticCallback_getName(), Part::BSplineCurvePy::staticCallback_getNbKnots(), Part::BSplineCurvePy::staticCallback_getNbPoles(), Part::BezierCurvePy::staticCallback_getNbPoles(), Part::BSplineSurfacePy::staticCallback_getNbUKnots(), Part::BSplineSurfacePy::staticCallback_getNbUPoles(), Part::BezierSurfacePy::staticCallback_getNbUPoles(), Part::BSplineSurfacePy::staticCallback_getNbVKnots(), Part::BSplineSurfacePy::staticCallback_getNbVPoles(), Part::BezierSurfacePy::staticCallback_getNbVPoles(), Fem::FemMeshPy::staticCallback_getNodeCount(), Mesh::MeshPointPy::staticCallback_getNormal(), Mesh::FacetPy::staticCallback_getNormal(), Gui::ViewProviderDocumentObjectPy::staticCallback_getObject(), Gui::SelectionObjectPy::staticCallback_getObject(), Gui::DocumentPy::staticCallback_getObject(), App::DocumentPy::staticCallback_getObject(), App::DocumentObjectGroupPy::staticCallback_getObject(), Gui::SelectionObjectPy::staticCallback_getObjectName(), App::DocumentPy::staticCallback_getObjects(), App::DocumentPy::staticCallback_getObjectsByLabel(), Part::OffsetCurvePy::staticCallback_getOffsetDirection(), Part::OffsetSurfacePy::staticCallback_getOffsetValue(), Part::OffsetCurvePy::staticCallback_getOffsetValue(), Part::TopoShapePy::staticCallback_getOrientation(), Part::TopoShapeSolidPy::staticCallback_getOuterShell(), App::DocumentObjectPy::staticCallback_getOutList(), Part::ParabolaPy::staticCallback_getParameter(), Part::HyperbolaPy::staticCallback_getParameter(), Part::TopoShapeFacePy::staticCallback_getParameterRange(), Part::TopoShapeEdgePy::staticCallback_getParameterRange(), Data::ComplexGeoDataPy::staticCallback_getPlacement(), Mesh::MeshPy::staticCallback_getPlanes(), Part::TopoShapeVertexPy::staticCallback_getPoint(), Points::PointsPy::staticCallback_getPoints(), Mesh::MeshPy::staticCallback_getPoints(), Mesh::FacetPy::staticCallback_getPoints(), Mesh::MeshPy::staticCallback_getPointSelection(), Part::BSplineSurfacePy::staticCallback_getPole(), Part::BSplineCurvePy::staticCallback_getPole(), Part::BezierSurfacePy::staticCallback_getPole(), Part::BezierCurvePy::staticCallback_getPole(), Part::BSplineSurfacePy::staticCallback_getPoles(), Part::BSplineCurvePy::staticCallback_getPoles(), Part::BezierSurfacePy::staticCallback_getPoles(), Part::BezierCurvePy::staticCallback_getPoles(), Fem::FemMeshPy::staticCallback_getPolygonCount(), Fem::FemMeshPy::staticCallback_getPolyhedronCount(), Robot::WaypointPy::staticCallback_getPos(), Part::PlanePy::staticCallback_getPosition(), Fem::FemMeshPy::staticCallback_getPrismCount(), App::PropertyContainerPy::staticCallback_getPropertiesList(), App::PropertyContainerPy::staticCallback_getPropertyByName(), Fem::FemMeshPy::staticCallback_getPyramidCount(), Fem::FemMeshPy::staticCallback_getQuadrangleCount(), Part::SpherePy::staticCallback_getRadius(), Part::CylinderPy::staticCallback_getRadius(), Part::ConePy::staticCallback_getRadius(), Part::CirclePy::staticCallback_getRadius(), Part::ArcOfCirclePy::staticCallback_getRadius(), App::DocumentPy::staticCallback_getRedoCount(), App::DocumentPy::staticCallback_getRedoNames(), Part::BSplineSurfacePy::staticCallback_getResolution(), Part::BSplineCurvePy::staticCallback_getResolution(), Part::BezierSurfacePy::staticCallback_getResolution(), Part::BezierCurvePy::staticCallback_getResolution(), Robot::RobotObjectPy::staticCallback_getRobot(), Gui::ViewProviderPy::staticCallback_getRootNode(), Sketcher::ConstraintPy::staticCallback_getSecond(), Mesh::MeshPy::staticCallback_getSegment(), Part::ConePy::staticCallback_getSemiAngle(), Mesh::MeshPy::staticCallback_getSeparateComponents(), Sketcher::SketchPy::staticCallback_getShape(), Part::TopoShapePy::staticCallback_getShapeType(), Part::TopoShapePy::staticCallback_getShells(), App::MaterialPy::staticCallback_getShininess(), Part::TopoShapePy::staticCallback_getSolids(), App::MaterialPy::staticCallback_getSpecularColor(), Part::LinePy::staticCallback_getStartPoint(), Part::BSplineCurvePy::staticCallback_getStartPoint(), Part::BezierCurvePy::staticCallback_getStartPoint(), App::DocumentObjectPy::staticCallback_getState(), Gui::SelectionObjectPy::staticCallback_getSubElementNames(), Fem::FemMeshPy::staticCallback_getSubMeshCount(), Gui::SelectionObjectPy::staticCallback_getSubObjects(), Part::TopoShapeFacePy::staticCallback_getSurface(), Robot::Robot6AxisPy::staticCallback_getTcp(), App::DocumentPy::staticCallback_getTempFileName(), Fem::FemMeshPy::staticCallback_getTetraCount(), Robot::WaypointPy::staticCallback_getTool(), Mesh::MeshPy::staticCallback_getTopology(), App::MaterialPy::staticCallback_getTransparency(), Fem::FemMeshPy::staticCallback_getTriangleCount(), Robot::WaypointPy::staticCallback_getType(), App::PropertyContainerPy::staticCallback_getTypeOfProperty(), Part::BSplineSurfacePy::staticCallback_getUDegree(), Part::BezierSurfacePy::staticCallback_getUDegree(), Part::BSplineSurfacePy::staticCallback_getUKnot(), Part::BSplineSurfacePy::staticCallback_getUKnots(), Part::BSplineSurfacePy::staticCallback_getUKnotSequence(), Part::BSplineSurfacePy::staticCallback_getUMultiplicities(), Part::BSplineSurfacePy::staticCallback_getUMultiplicity(), App::DocumentPy::staticCallback_getUndoCount(), App::DocumentPy::staticCallback_getUndoMode(), App::DocumentPy::staticCallback_getUndoNames(), App::DocumentPy::staticCallback_getUndoRedoMemSize(), Part::BSplineSurfacePy::staticCallback_getVDegree(), Part::BezierSurfacePy::staticCallback_getVDegree(), Mesh::MeshPointPy::staticCallback_getVector(), Robot::WaypointPy::staticCallback_getVelocity(), Part::TopoShapePy::staticCallback_getVertexes(), App::DocumentObjectPy::staticCallback_getViewObject(), Part::BSplineSurfacePy::staticCallback_getVKnot(), Part::BSplineSurfacePy::staticCallback_getVKnots(), Part::BSplineSurfacePy::staticCallback_getVKnotSequence(), Part::BSplineSurfacePy::staticCallback_getVMultiplicities(), Part::BSplineSurfacePy::staticCallback_getVMultiplicity(), Part::ToroidPy::staticCallback_getVolume(), Part::TopoShapePy::staticCallback_getVolume(), Part::SpherePy::staticCallback_getVolume(), Mesh::MeshPy::staticCallback_getVolume(), Fem::FemMeshPy::staticCallback_getVolumeCount(), Robot::TrajectoryPy::staticCallback_getWaypoints(), Part::BSplineSurfacePy::staticCallback_getWeight(), Part::BSplineCurvePy::staticCallback_getWeight(), Part::BezierSurfacePy::staticCallback_getWeight(), Part::BezierCurvePy::staticCallback_getWeight(), Part::BSplineSurfacePy::staticCallback_getWeights(), Part::BSplineCurvePy::staticCallback_getWeights(), Part::BezierSurfacePy::staticCallback_getWeights(), Part::BezierCurvePy::staticCallback_getWeights(), Part::TopoShapeFacePy::staticCallback_getWire(), Part::TopoShapePy::staticCallback_getWires(), Part::TopoShapeVertexPy::staticCallback_getX(), Mesh::MeshPointPy::staticCallback_getx(), Part::TopoShapeVertexPy::staticCallback_getY(), Mesh::MeshPointPy::staticCallback_gety(), Part::TopoShapeVertexPy::staticCallback_getZ(), Mesh::MeshPointPy::staticCallback_getz(), Mesh::MeshPy::staticCallback_harmonizeNormals(), Mesh::MeshFeaturePy::staticCallback_harmonizeNormals(), Part::TopoShapePy::staticCallback_hashCode(), Mesh::MeshPy::staticCallback_hasNonManifolds(), Mesh::MeshPy::staticCallback_hasNonUniformOrientedFacets(), App::DocumentObjectGroupPy::staticCallback_hasObject(), Mesh::MeshPy::staticCallback_hasSelfIntersections(), Gui::ViewProviderPy::staticCallback_hide(), Gui::DocumentPy::staticCallback_hide(), Part::BezierSurfacePy::staticCallback_increase(), Part::BezierCurvePy::staticCallback_increase(), Part::BSplineSurfacePy::staticCallback_increaseDegree(), Part::BSplineCurvePy::staticCallback_increaseDegree(), Part::BSplineCurvePy::staticCallback_increaseMultiplicity(), Part::BSplineSurfacePy::staticCallback_increaseUMultiplicity(), Part::BSplineSurfacePy::staticCallback_increaseVMultiplicity(), Part::BSplineCurvePy::staticCallback_incrementMultiplicity(), Part::BSplineSurfacePy::staticCallback_incrementUMultiplicity(), Part::BSplineSurfacePy::staticCallback_incrementVMultiplicity(), Mesh::MeshPy::staticCallback_inner(), Part::BSplineCurvePy::staticCallback_insertKnot(), Part::BSplineCurvePy::staticCallback_insertKnots(), Part::BezierCurvePy::staticCallback_insertPoleAfter(), Part::BezierCurvePy::staticCallback_insertPoleBefore(), Part::BezierSurfacePy::staticCallback_insertPoleColAfter(), Part::BezierSurfacePy::staticCallback_insertPoleColBefore(), Part::BezierSurfacePy::staticCallback_insertPoleRowAfter(), Part::BezierSurfacePy::staticCallback_insertPoleRowBefore(), Part::BSplineSurfacePy::staticCallback_insertUKnot(), Part::BSplineSurfacePy::staticCallback_insertUKnots(), Mesh::MeshPy::staticCallback_insertVertex(), Part::BSplineSurfacePy::staticCallback_insertVKnot(), Part::BSplineSurfacePy::staticCallback_insertVKnots(), Robot::TrajectoryPy::staticCallback_insertWaypoints(), Part::BSplineCurvePy::staticCallback_interpolate(), Mesh::MeshPy::staticCallback_intersect(), Mesh::FacetPy::staticCallback_intersect(), Gui::SelectionObjectPy::staticCallback_isA(), Part::TopoShapePy::staticCallback_isClosed(), Part::BSplineCurvePy::staticCallback_isClosed(), Part::BezierCurvePy::staticCallback_isClosed(), Gui::ViewProviderPy::staticCallback_isEditing(), Part::TopoShapePy::staticCallback_isEqual(), Part::TopoShapePy::staticCallback_isInside(), Part::TopoShapePy::staticCallback_isNull(), Part::TopoShapeFacePy::staticCallback_isPartOfDomain(), Part::BSplineCurvePy::staticCallback_isPeriodic(), Part::BezierCurvePy::staticCallback_isPeriodic(), Part::BSplineCurvePy::staticCallback_isRational(), Part::BezierCurvePy::staticCallback_isRational(), Part::TopoShapePy::staticCallback_isSame(), Mesh::MeshPy::staticCallback_isSolid(), Part::GeometrySurfacePy::staticCallback_isUClosed(), Part::BSplineSurfacePy::staticCallback_isUClosed(), Part::BezierSurfacePy::staticCallback_isUClosed(), Part::GeometrySurfacePy::staticCallback_isUPeriodic(), Part::BSplineSurfacePy::staticCallback_isUPeriodic(), Part::BezierSurfacePy::staticCallback_isUPeriodic(), Part::BSplineSurfacePy::staticCallback_isURational(), Part::BezierSurfacePy::staticCallback_isURational(), Part::TopoShapePy::staticCallback_isValid(), Part::GeometrySurfacePy::staticCallback_isVClosed(), Part::BSplineSurfacePy::staticCallback_isVClosed(), Part::BezierSurfacePy::staticCallback_isVClosed(), Gui::ViewProviderPy::staticCallback_isVisible(), Part::GeometrySurfacePy::staticCallback_isVPeriodic(), Part::BSplineSurfacePy::staticCallback_isVPeriodic(), Part::BezierSurfacePy::staticCallback_isVPeriodic(), Part::BSplineSurfacePy::staticCallback_isVRational(), Part::BezierSurfacePy::staticCallback_isVRational(), Part::BSplineCurvePy::staticCallback_join(), Gui::PythonWorkbenchPy::staticCallback_ListCommandbars(), Gui::PythonWorkbenchPy::staticCallback_listCommandbars(), Gui::ViewProviderPy::staticCallback_listDisplayModes(), Gui::PythonWorkbenchPy::staticCallback_ListMenus(), Gui::PythonWorkbenchPy::staticCallback_listMenus(), Gui::PythonWorkbenchPy::staticCallback_ListToolbars(), Gui::PythonWorkbenchPy::staticCallback_listToolbars(), Part::BSplineCurvePy::staticCallback_makeC1Continuous(), Part::TopoShapePy::staticCallback_makeChamfer(), Part::TopoShapePy::staticCallback_makeFillet(), Part::TopoShapeShellPy::staticCallback_makeHalfSpace(), Part::TopoShapeFacePy::staticCallback_makeHalfSpace(), Part::TopoShapeWirePy::staticCallback_makeHomogenousWires(), Part::TopoShapeWirePy::staticCallback_makeOffset(), Part::TopoShapeFacePy::staticCallback_makeOffset(), Part::TopoShapePy::staticCallback_makeOffsetShape(), Part::TopoShapeWirePy::staticCallback_makePipe(), Part::TopoShapeWirePy::staticCallback_makePipeShell(), Part::GeometryCurvePy::staticCallback_makeRuledSurface(), Part::TopoShapePy::staticCallback_makeShapeFromMesh(), Part::TopoShapePy::staticCallback_makeThickness(), Mesh::MeshPy::staticCallback_meshFromSegment(), Part::TopoShapePy::staticCallback_mirror(), Part::GeometryPy::staticCallback_mirror(), Mesh::MeshPointPy::staticCallback_move(), App::DocumentPy::staticCallback_moveObject(), Sketcher::SketchPy::staticCallback_movePoint(), Sketcher::SketchObjectPy::staticCallback_movePoint(), Part::BSplineSurfacePy::staticCallback_movePoint(), Part::BSplineCurvePy::staticCallback_movePoint(), Gui::WorkbenchPy::staticCallback_name(), Mesh::MeshPy::staticCallback_nearestFacetOnRay(), App::DocumentObjectGroupPy::staticCallback_newObject(), Part::TopoShapeFacePy::staticCallback_normalAt(), Part::TopoShapeEdgePy::staticCallback_normalAt(), Part::TopoShapePy::staticCallback_nullify(), Mesh::MeshPy::staticCallback_offset(), Mesh::MeshPy::staticCallback_offsetSpecial(), Part::TopoShapePy::staticCallback_oldFuse(), App::DocumentPy::staticCallback_openTransaction(), Mesh::MeshPy::staticCallback_optimizeEdges(), Mesh::MeshPy::staticCallback_optimizeTopology(), Mesh::MeshPy::staticCallback_outer(), Part::GeometrySurfacePy::staticCallback_parameter(), Part::GeometryCurvePy::staticCallback_parameter(), Robot::TrajectoryPy::staticCallback_position(), Mesh::MeshPy::staticCallback_printInfo(), Part::TopoShapePy::staticCallback_project(), App::DocumentObjectPy::staticCallback_purgeTouched(), Part::TopoShapePy::staticCallback_read(), Points::PointsPy::staticCallback_read(), Mesh::MeshPy::staticCallback_read(), Fem::FemMeshPy::staticCallback_read(), App::DocumentPy::staticCallback_recompute(), App::DocumentPy::staticCallback_redo(), Mesh::MeshPy::staticCallback_refine(), Gui::SelectionObjectPy::staticCallback_remove(), Gui::PythonWorkbenchPy::staticCallback_RemoveCommandbar(), Gui::PythonWorkbenchPy::staticCallback_removeCommandbar(), Mesh::MeshPy::staticCallback_removeComponents(), Gui::PythonWorkbenchPy::staticCallback_RemoveContextMenu(), Gui::PythonWorkbenchPy::staticCallback_removeContextMenu(), Mesh::MeshPy::staticCallback_removeDuplicatedFacets(), Mesh::MeshFeaturePy::staticCallback_removeDuplicatedFacets(), Mesh::MeshPy::staticCallback_removeDuplicatedPoints(), Mesh::MeshFeaturePy::staticCallback_removeDuplicatedPoints(), Mesh::MeshPy::staticCallback_removeFacets(), Mesh::MeshPy::staticCallback_removeFoldsOnSurface(), Mesh::MeshFeaturePy::staticCallback_removeFoldsOnSurface(), Part::TopoShapePy::staticCallback_removeInternalWires(), Part::BSplineCurvePy::staticCallback_removeKnot(), Gui::PythonWorkbenchPy::staticCallback_RemoveMenu(), Gui::PythonWorkbenchPy::staticCallback_removeMenu(), Mesh::MeshPy::staticCallback_removeNonManifolds(), Mesh::MeshFeaturePy::staticCallback_removeNonManifolds(), App::DocumentPy::staticCallback_removeObject(), App::DocumentObjectGroupPy::staticCallback_removeObject(), App::DocumentObjectGroupPy::staticCallback_removeObjectsFromDocument(), Part::BezierCurvePy::staticCallback_removePole(), Part::BezierSurfacePy::staticCallback_removePoleCol(), Part::BezierSurfacePy::staticCallback_removePoleRow(), Part::TopoShapePy::staticCallback_removeShape(), Gui::PythonWorkbenchPy::staticCallback_RemoveToolbar(), Gui::PythonWorkbenchPy::staticCallback_removeToolbar(), Part::BSplineSurfacePy::staticCallback_removeUKnot(), Part::BSplineSurfacePy::staticCallback_removeVKnot(), Part::BSplineSurfacePy::staticCallback_reparametrize(), Part::TopoShapePy::staticCallback_replaceShape(), Gui::DocumentPy::staticCallback_resetEdit(), App::DocumentPy::staticCallback_restore(), Part::TopoShapePy::staticCallback_reverse(), Part::TopoShapePy::staticCallback_revolve(), Part::TopoShapePy::staticCallback_rotate(), Mesh::MeshPy::staticCallback_rotate(), Part::GeometryPy::staticCallback_rotate(), App::DocumentPy::staticCallback_save(), Part::TopoShapePy::staticCallback_scale(), Part::GeometryPy::staticCallback_scale(), Part::TopoShapePy::staticCallback_section(), Part::BSplineSurfacePy::staticCallback_segment(), Part::BSplineCurvePy::staticCallback_segment(), Part::BezierSurfacePy::staticCallback_segment(), Part::BezierCurvePy::staticCallback_segment(), App::MaterialPy::staticCallback_set(), Gui::DocumentPy::staticCallback_setActiveObject(), App::DocumentPy::staticCallback_setActiveObject(), Gui::DocumentPy::staticCallback_setActiveView(), App::MaterialPy::staticCallback_setAmbientColor(), Gui::ViewProviderPy::staticCallback_setAnnotation(), Part::ConePy::staticCallback_setApex(), Part::ToroidPy::staticCallback_setArea(), Part::TopoShapePy::staticCallback_setArea(), Part::SpherePy::staticCallback_setArea(), Mesh::MeshPy::staticCallback_setArea(), Part::ToroidPy::staticCallback_setAxis(), Part::SpherePy::staticCallback_setAxis(), Part::PlanePy::staticCallback_setAxis(), Part::ParabolaPy::staticCallback_setAxis(), Part::HyperbolaPy::staticCallback_setAxis(), Part::EllipsePy::staticCallback_setAxis(), Part::CylinderPy::staticCallback_setAxis(), Part::ConePy::staticCallback_setAxis(), Part::CirclePy::staticCallback_setAxis(), Part::ArcOfCirclePy::staticCallback_setAxis(), Robot::Robot6AxisPy::staticCallback_setAxis1(), Robot::Robot6AxisPy::staticCallback_setAxis2(), Robot::Robot6AxisPy::staticCallback_setAxis3(), Robot::Robot6AxisPy::staticCallback_setAxis4(), Robot::Robot6AxisPy::staticCallback_setAxis5(), Robot::Robot6AxisPy::staticCallback_setAxis6(), Robot::WaypointPy::staticCallback_setBase(), Robot::Robot6AxisPy::staticCallback_setBase(), Part::SurfaceOfRevolutionPy::staticCallback_setBasisCurve(), Part::SurfaceOfExtrusionPy::staticCallback_setBasisCurve(), Part::OffsetCurvePy::staticCallback_setBasisCurve(), Part::OffsetSurfacePy::staticCallback_setBasisSurface(), Mesh::MeshPointPy::staticCallback_setBound(), Mesh::FacetPy::staticCallback_setBound(), Data::ComplexGeoDataPy::staticCallback_setBoundBox(), Part::ToroidPy::staticCallback_setCenter(), Part::SpherePy::staticCallback_setCenter(), Part::EllipsePy::staticCallback_setCenter(), Part::CylinderPy::staticCallback_setCenter(), Part::ConePy::staticCallback_setCenter(), Part::CirclePy::staticCallback_setCenter(), Part::ArcOfCirclePy::staticCallback_setCenter(), Part::TopoShapeWirePy::staticCallback_setCenterOfMass(), Part::TopoShapeSolidPy::staticCallback_setCenterOfMass(), Part::TopoShapeFacePy::staticCallback_setCenterOfMass(), Part::TopoShapeEdgePy::staticCallback_setCenterOfMass(), Part::ArcOfCirclePy::staticCallback_setCircle(), Part::TopoShapeEdgePy::staticCallback_setClosed(), Part::TopoShapePy::staticCallback_setCompounds(), Part::TopoShapePy::staticCallback_setCompSolids(), Sketcher::SketchPy::staticCallback_setConstraint(), Sketcher::SketchObjectPy::staticCallback_setConstraintCount(), Sketcher::SketchPy::staticCallback_setConstraints(), Part::GeometryPy::staticCallback_setConstruction(), Robot::WaypointPy::staticCallback_setCont(), Mesh::MeshPy::staticCallback_setCountFacets(), Points::PointsPy::staticCallback_setCountPoints(), Mesh::MeshPy::staticCallback_setCountPoints(), Part::TopoShapeEdgePy::staticCallback_setCurve(), Sketcher::SketchObjectPy::staticCallback_setDatum(), Part::TopoShapeEdgePy::staticCallback_setDegenerated(), Part::BSplineCurvePy::staticCallback_setDegree(), Part::BezierCurvePy::staticCallback_setDegree(), App::DocumentPy::staticCallback_setDependencyGraph(), App::MaterialPy::staticCallback_setDiffuseColor(), Part::SurfaceOfRevolutionPy::staticCallback_setDirection(), Part::SurfaceOfExtrusionPy::staticCallback_setDirection(), Gui::SelectionObjectPy::staticCallback_setDocument(), Gui::DocumentPy::staticCallback_setDocument(), App::DocumentObjectPy::staticCallback_setDocument(), Gui::SelectionObjectPy::staticCallback_setDocumentName(), Robot::TrajectoryPy::staticCallback_setDuration(), Part::ParabolaPy::staticCallback_setEccentricity(), Part::HyperbolaPy::staticCallback_setEccentricity(), Part::EllipsePy::staticCallback_setEccentricity(), Fem::FemMeshPy::staticCallback_setEdgeCount(), Part::TopoShapePy::staticCallback_setEdges(), Gui::DocumentPy::staticCallback_setEdit(), App::MaterialPy::staticCallback_setEmissiveColor(), Part::LinePy::staticCallback_setEndPoint(), Part::BSplineCurvePy::staticCallback_setEndPoint(), Part::BezierCurvePy::staticCallback_setEndPoint(), Part::TopoShapePy::staticCallback_setFaces(), Fem::FemMeshPy::staticCallback_setFacesCount(), Mesh::MeshPy::staticCallback_setFacets(), Sketcher::ConstraintPy::staticCallback_setFirst(), Part::GeometryCurvePy::staticCallback_setFirstParameter(), Part::BSplineSurfacePy::staticCallback_setFirstUKnotIndex(), Part::BSplineCurvePy::staticCallback_setFirstUKnotIndex(), Part::BSplineSurfacePy::staticCallback_setFirstVKnotIndex(), Part::ParabolaPy::staticCallback_setFocal(), Part::HyperbolaPy::staticCallback_setFocal(), Part::EllipsePy::staticCallback_setFocal(), Part::ParabolaPy::staticCallback_setFocus(), Part::HyperbolaPy::staticCallback_setFocus1(), Part::EllipsePy::staticCallback_setFocus1(), Part::HyperbolaPy::staticCallback_setFocus2(), Part::EllipsePy::staticCallback_setFocus2(), Gui::SelectionObjectPy::staticCallback_setFullName(), Sketcher::SketchPy::staticCallback_setGeometries(), Sketcher::SketchObjectPy::staticCallback_setGeometryCount(), Fem::FemMeshPy::staticCallback_setGroupCount(), Gui::SelectionObjectPy::staticCallback_setHasSubObjects(), Fem::FemMeshPy::staticCallback_setHexaCount(), Mesh::MeshPointPy::staticCallback_setIndex(), Mesh::FacetPy::staticCallback_setIndex(), Part::LinePy::staticCallback_setInfinite(), App::DocumentObjectPy::staticCallback_setInList(), Gui::ViewProviderPy::staticCallback_setIV(), Part::BSplineCurvePy::staticCallback_setKnot(), Part::BSplineCurvePy::staticCallback_setKnots(), Part::BSplineCurvePy::staticCallback_setKnotSequence(), Part::GeometryCurvePy::staticCallback_setLastParameter(), Part::BSplineSurfacePy::staticCallback_setLastUKnotIndex(), Part::BSplineCurvePy::staticCallback_setLastUKnotIndex(), Part::BSplineSurfacePy::staticCallback_setLastVKnotIndex(), Robot::TrajectoryPy::staticCallback_setLength(), Part::TopoShapePy::staticCallback_setLength(), Part::TopoShapeEdgePy::staticCallback_setLength(), Part::SurfaceOfRevolutionPy::staticCallback_setLocation(), Part::ParabolaPy::staticCallback_setLocation(), Part::HyperbolaPy::staticCallback_setLocation(), Part::ToroidPy::staticCallback_setMajorRadius(), Part::HyperbolaPy::staticCallback_setMajorRadius(), Part::EllipsePy::staticCallback_setMajorRadius(), Data::ComplexGeoDataPy::staticCallback_setMatrix(), Part::BSplineSurfacePy::staticCallback_setMaxDegree(), Part::BSplineCurvePy::staticCallback_setMaxDegree(), Part::BezierSurfacePy::staticCallback_setMaxDegree(), Part::BezierCurvePy::staticCallback_setMaxDegree(), Part::ToroidPy::staticCallback_setMinorRadius(), Part::HyperbolaPy::staticCallback_setMinorRadius(), Part::EllipsePy::staticCallback_setMinorRadius(), Robot::WaypointPy::staticCallback_setName(), App::DocumentPy::staticCallback_setName(), App::DocumentObjectPy::staticCallback_setName(), Part::BSplineCurvePy::staticCallback_setNbKnots(), Part::BSplineCurvePy::staticCallback_setNbPoles(), Part::BezierCurvePy::staticCallback_setNbPoles(), Part::BSplineSurfacePy::staticCallback_setNbUKnots(), Part::BSplineSurfacePy::staticCallback_setNbUPoles(), Part::BezierSurfacePy::staticCallback_setNbUPoles(), Part::BSplineSurfacePy::staticCallback_setNbVKnots(), Part::BSplineSurfacePy::staticCallback_setNbVPoles(), Part::BezierSurfacePy::staticCallback_setNbVPoles(), Fem::FemMeshPy::staticCallback_setNodeCount(), Mesh::MeshPointPy::staticCallback_setNormal(), Mesh::FacetPy::staticCallback_setNormal(), Part::BSplineCurvePy::staticCallback_setNotPeriodic(), Gui::ViewProviderDocumentObjectPy::staticCallback_setObject(), Gui::SelectionObjectPy::staticCallback_setObject(), Gui::SelectionObjectPy::staticCallback_setObjectName(), App::DocumentPy::staticCallback_setObjects(), Part::OffsetCurvePy::staticCallback_setOffsetDirection(), Part::OffsetSurfacePy::staticCallback_setOffsetValue(), Part::OffsetCurvePy::staticCallback_setOffsetValue(), Part::TopoShapePy::staticCallback_setOrientation(), Part::BSplineCurvePy::staticCallback_setOrigin(), Part::TopoShapeSolidPy::staticCallback_setOuterShell(), App::DocumentObjectPy::staticCallback_setOutList(), Part::ParabolaPy::staticCallback_setParameter(), Part::HyperbolaPy::staticCallback_setParameter(), Part::TopoShapeFacePy::staticCallback_setParameterRange(), Part::TopoShapeEdgePy::staticCallback_setParameterRange(), Part::LinePy::staticCallback_setParameterRange(), Part::BSplineCurvePy::staticCallback_setPeriodic(), Data::ComplexGeoDataPy::staticCallback_setPlacement(), Part::TopoShapeVertexPy::staticCallback_setPoint(), Mesh::MeshPy::staticCallback_setPoint(), Points::PointsPy::staticCallback_setPoints(), Mesh::MeshPy::staticCallback_setPoints(), Mesh::FacetPy::staticCallback_setPoints(), Part::BSplineSurfacePy::staticCallback_setPole(), Part::BSplineCurvePy::staticCallback_setPole(), Part::BezierSurfacePy::staticCallback_setPole(), Part::BezierCurvePy::staticCallback_setPole(), Part::BSplineSurfacePy::staticCallback_setPoleCol(), Part::BezierSurfacePy::staticCallback_setPoleCol(), Part::BSplineSurfacePy::staticCallback_setPoleRow(), Part::BezierSurfacePy::staticCallback_setPoleRow(), Part::BezierCurvePy::staticCallback_setPoles(), Fem::FemMeshPy::staticCallback_setPolygonCount(), Fem::FemMeshPy::staticCallback_setPolyhedronCount(), Robot::WaypointPy::staticCallback_setPos(), Gui::DocumentPy::staticCallback_setPos(), Part::PlanePy::staticCallback_setPosition(), Fem::FemMeshPy::staticCallback_setPrismCount(), App::PropertyContainerPy::staticCallback_setPropertiesList(), Fem::FemMeshPy::staticCallback_setPyramidCount(), Fem::FemMeshPy::staticCallback_setQuadrangleCount(), Part::SpherePy::staticCallback_setRadius(), Part::CylinderPy::staticCallback_setRadius(), Part::ConePy::staticCallback_setRadius(), Part::CirclePy::staticCallback_setRadius(), Part::ArcOfCirclePy::staticCallback_setRadius(), App::DocumentPy::staticCallback_setRedoCount(), App::DocumentPy::staticCallback_setRedoNames(), Gui::ViewProviderPy::staticCallback_setRootNode(), Sketcher::ConstraintPy::staticCallback_setSecond(), Part::ConePy::staticCallback_setSemiAngle(), Sketcher::SketchPy::staticCallback_setShape(), Fem::FemMeshPy::staticCallback_setShape(), Part::TopoShapePy::staticCallback_setShapeType(), Part::TopoShapePy::staticCallback_setShells(), App::MaterialPy::staticCallback_setShininess(), Part::TopoShapePy::staticCallback_setSolids(), App::MaterialPy::staticCallback_setSpecularColor(), Fem::FemMeshPy::staticCallback_setStanardHypotheses(), Part::LinePy::staticCallback_setStartPoint(), Part::BSplineCurvePy::staticCallback_setStartPoint(), Part::BezierCurvePy::staticCallback_setStartPoint(), App::DocumentObjectPy::staticCallback_setState(), Gui::SelectionObjectPy::staticCallback_setSubElementNames(), Fem::FemMeshPy::staticCallback_setSubMeshCount(), Gui::SelectionObjectPy::staticCallback_setSubObjects(), Part::TopoShapeFacePy::staticCallback_setSurface(), Robot::Robot6AxisPy::staticCallback_setTcp(), Fem::FemMeshPy::staticCallback_setTetraCount(), Part::TopoShapeVertexPy::staticCallback_setTolerance(), Part::TopoShapeFacePy::staticCallback_setTolerance(), Part::TopoShapeEdgePy::staticCallback_setTolerance(), Robot::WaypointPy::staticCallback_setTool(), Mesh::MeshPy::staticCallback_setTopology(), Fem::FemMeshPy::staticCallback_setTransform(), Gui::ViewProviderPy::staticCallback_setTransformation(), App::MaterialPy::staticCallback_setTransparency(), Fem::FemMeshPy::staticCallback_setTriangleCount(), Robot::WaypointPy::staticCallback_setType(), Part::BSplineSurfacePy::staticCallback_setUDegree(), Part::BezierSurfacePy::staticCallback_setUDegree(), Part::BSplineSurfacePy::staticCallback_setUKnot(), Part::BSplineSurfacePy::staticCallback_setUKnots(), Part::BSplineSurfacePy::staticCallback_setUKnotSequence(), App::DocumentPy::staticCallback_setUndoCount(), App::DocumentPy::staticCallback_setUndoMode(), App::DocumentPy::staticCallback_setUndoNames(), App::DocumentPy::staticCallback_setUndoRedoMemSize(), Part::BSplineSurfacePy::staticCallback_setUNotPeriodic(), Part::BSplineSurfacePy::staticCallback_setUOrigin(), Part::BSplineSurfacePy::staticCallback_setUPeriodic(), Part::BSplineSurfacePy::staticCallback_setVDegree(), Part::BezierSurfacePy::staticCallback_setVDegree(), Mesh::MeshPointPy::staticCallback_setVector(), Robot::WaypointPy::staticCallback_setVelocity(), Part::TopoShapePy::staticCallback_setVertexes(), App::DocumentObjectPy::staticCallback_setViewObject(), Part::BSplineSurfacePy::staticCallback_setVKnot(), Part::BSplineSurfacePy::staticCallback_setVKnots(), Part::BSplineSurfacePy::staticCallback_setVKnotSequence(), Part::BSplineSurfacePy::staticCallback_setVNotPeriodic(), Part::ToroidPy::staticCallback_setVolume(), Part::TopoShapePy::staticCallback_setVolume(), Part::SpherePy::staticCallback_setVolume(), Mesh::MeshPy::staticCallback_setVolume(), Fem::FemMeshPy::staticCallback_setVolumeCount(), Part::BSplineSurfacePy::staticCallback_setVOrigin(), Part::BSplineSurfacePy::staticCallback_setVPeriodic(), Robot::TrajectoryPy::staticCallback_setWaypoints(), Part::BSplineSurfacePy::staticCallback_setWeight(), Part::BSplineCurvePy::staticCallback_setWeight(), Part::BezierSurfacePy::staticCallback_setWeight(), Part::BezierCurvePy::staticCallback_setWeight(), Part::BSplineSurfacePy::staticCallback_setWeightCol(), Part::BezierSurfacePy::staticCallback_setWeightCol(), Part::BSplineSurfacePy::staticCallback_setWeightRow(), Part::BezierSurfacePy::staticCallback_setWeightRow(), Part::TopoShapeFacePy::staticCallback_setWire(), Part::TopoShapePy::staticCallback_setWires(), Part::TopoShapeVertexPy::staticCallback_setX(), Mesh::MeshPointPy::staticCallback_setx(), Part::TopoShapeVertexPy::staticCallback_setY(), Mesh::MeshPointPy::staticCallback_sety(), Part::TopoShapeVertexPy::staticCallback_setZ(), Mesh::MeshPointPy::staticCallback_setz(), Part::TopoShapePy::staticCallback_sewShape(), Gui::ViewProviderPy::staticCallback_show(), Gui::DocumentPy::staticCallback_show(), Part::TopoShapePy::staticCallback_slice(), Part::TopoShapePy::staticCallback_slices(), Mesh::MeshPy::staticCallback_smooth(), Mesh::MeshFeaturePy::staticCallback_smooth(), Mesh::MeshPy::staticCallback_snapVertex(), Sketcher::SketchPy::staticCallback_solve(), Sketcher::SketchObjectPy::staticCallback_solve(), Mesh::MeshPy::staticCallback_splitEdge(), Mesh::MeshPy::staticCallback_splitEdges(), Mesh::MeshPy::staticCallback_splitFacet(), Gui::ViewProviderPy::staticCallback_startEditing(), Gui::ViewProviderPythonFeaturePy::staticCallback_supportedProperties(), Part::FeaturePythonPy::staticCallback_supportedProperties(), Mesh::FeaturePythonPy::staticCallback_supportedProperties(), App::FeaturePythonPy::staticCallback_supportedProperties(), App::DocumentPy::staticCallback_supportedTypes(), Mesh::MeshPy::staticCallback_swapEdge(), Part::GeometrySurfacePy::staticCallback_tangent(), Part::GeometryCurvePy::staticCallback_tangent(), Part::TopoShapeFacePy::staticCallback_tangentAt(), Part::TopoShapeEdgePy::staticCallback_tangentAt(), Part::TopoShapePy::staticCallback_tessellate(), Part::BSplineCurvePy::staticCallback_toBezier(), Part::GeometrySurfacePy::staticCallback_toBSpline(), Sketcher::SketchObjectPy::staticCallback_toggleConstruction(), Part::TopoShapePy::staticCallback_toNurbs(), Part::GeometrySurfacePy::staticCallback_toShape(), Part::GeometryCurvePy::staticCallback_toShape(), Gui::ViewProviderPy::staticCallback_toString(), App::DocumentObjectPy::staticCallback_touch(), Mesh::MeshPy::staticCallback_transform(), Part::GeometryPy::staticCallback_transform(), Part::TopoShapePy::staticCallback_transformGeometry(), Part::TopoShapePy::staticCallback_transformShape(), Mesh::MeshPy::staticCallback_transformToEigen(), Part::TopoShapePy::staticCallback_translate(), Mesh::MeshPy::staticCallback_translate(), Part::GeometryPy::staticCallback_translate(), Sketcher::SketchObjectPy::staticCallback_trim(), Part::ToroidPy::staticCallback_uIso(), Part::SpherePy::staticCallback_uIso(), Part::RectangularTrimmedSurfacePy::staticCallback_uIso(), Part::PlanePy::staticCallback_uIso(), Part::OffsetSurfacePy::staticCallback_uIso(), Part::CylinderPy::staticCallback_uIso(), Part::ConePy::staticCallback_uIso(), Part::BSplineSurfacePy::staticCallback_uIso(), Part::BezierSurfacePy::staticCallback_uIso(), Mesh::MeshPointPy::staticCallback_unbound(), Mesh::FacetPy::staticCallback_unbound(), App::DocumentPy::staticCallback_undo(), Mesh::MeshPy::staticCallback_unite(), Gui::ViewProviderDocumentObjectPy::staticCallback_update(), Gui::DocumentPy::staticCallback_update(), Part::GeometrySurfacePy::staticCallback_UPeriod(), Part::GeometrySurfacePy::staticCallback_value(), Part::GeometryCurvePy::staticCallback_value(), Part::TopoShapeFacePy::staticCallback_valueAt(), Part::TopoShapeEdgePy::staticCallback_valueAt(), Robot::TrajectoryPy::staticCallback_velocity(), Part::ToroidPy::staticCallback_vIso(), Part::SpherePy::staticCallback_vIso(), Part::RectangularTrimmedSurfacePy::staticCallback_vIso(), Part::PlanePy::staticCallback_vIso(), Part::OffsetSurfacePy::staticCallback_vIso(), Part::CylinderPy::staticCallback_vIso(), Part::ConePy::staticCallback_vIso(), Part::BSplineSurfacePy::staticCallback_vIso(), Part::BezierSurfacePy::staticCallback_vIso(), Part::GeometrySurfacePy::staticCallback_VPeriod(), Points::PointsPy::staticCallback_write(), Mesh::MeshPy::staticCallback_write(), Fem::FemMeshPy::staticCallback_write(), Fem::FemMeshPy::staticCallback_writeABAQUS(), Part::TopoShapePy::staticCallback_writeInventor(), Points::PointsPy::staticCallback_writeInventor(), and Mesh::MeshPy::staticCallback_writeInventor().
static wrapper for pythons _getattr()
Definition at line 138 of file PyObjectBase.cpp.
References _getattr(), isConst(), isValid(), setAttributeOf(), Type, and Py::value().
static int Base::PyObjectBase::__PyInit | ( | PyObject * | self, | |
PyObject * | args, | |||
PyObject * | kwd | |||
) | [inline, static] |
python wrapper for the _repr() function
Definition at line 268 of file PyObjectBase.h.
python wrapper for the _repr() function
Definition at line 251 of file PyObjectBase.h.
static wrapper for pythons _setattr(). // This should be the entry in Type.
Definition at line 157 of file PyObjectBase.cpp.
References _setattr(), isValid(), and startNotify().
Referenced by startNotify().
PyObject * PyObjectBase::_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 in ParameterGrpPy, Base::BaseClassPy, Base::BoundBoxPy, Base::MatrixPy, Base::PersistencePy, Base::PlacementPy, Base::RotationPy, Base::VectorPy, Data::ComplexGeoDataPy, App::DocumentObjectGroupPy, App::DocumentObjectPy, App::DocumentPy, App::FeaturePythonPy, App::MaterialPy, App::PropertyContainerPy, Gui::PyResource, Gui::DocumentPy, Gui::PythonWorkbenchPy, Gui::SelectionObjectPy, Gui::ViewProviderDocumentObjectPy, Gui::ViewProviderPy, Gui::ViewProviderPythonFeaturePy, Gui::WorkbenchPy, TestGui::UnitTestPy, Fem::FemMeshPy, Mesh::FacetPy, Mesh::FeaturePythonPy, Mesh::MeshFeaturePy, Mesh::MeshPointPy, Mesh::MeshPy, Part::ArcOfCirclePy, Part::ArcPy, Part::BezierCurvePy, Part::BezierSurfacePy, Part::BSplineCurvePy, Part::BSplineSurfacePy, Part::CirclePy, Part::ConePy, Part::CylinderPy, Part::EllipsePy, Part::FeaturePythonPy, Part::GeometryCurvePy, Part::GeometryPy, Part::GeometrySurfacePy, Part::HyperbolaPy, Part::LinePy, Part::OffsetCurvePy, Part::OffsetSurfacePy, Part::ParabolaPy, Part::Part2DObjectPy, Part::PartFeaturePy, Part::PlanePy, Part::RectangularTrimmedSurfacePy, Part::SpherePy, Part::SurfaceOfExtrusionPy, Part::SurfaceOfRevolutionPy, Part::TopoShapeCompoundPy, Part::TopoShapeCompSolidPy, Part::TopoShapeEdgePy, Part::TopoShapeFacePy, Part::TopoShapePy, Part::TopoShapeShellPy, Part::TopoShapeSolidPy, Part::TopoShapeVertexPy, Part::TopoShapeWirePy, Part::ToroidPy, Points::PointsPy, Robot::Robot6AxisPy, Robot::RobotObjectPy, Robot::TrajectoryPy, Robot::WaypointPy, Sketcher::ConstraintPy, Sketcher::SketchObjectPy, Sketcher::SketchObjectSFPy, and Sketcher::SketchPy.
Definition at line 182 of file PyObjectBase.cpp.
References Base::streq(), and RobotExample::w.
Referenced by __getattr().
PyObject * PyObjectBase::_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 in Base::BaseClassPy, Base::BoundBoxPy, Base::MatrixPy, Base::PersistencePy, Base::PlacementPy, Base::RotationPy, Base::VectorPy, Data::ComplexGeoDataPy, App::DocumentObjectGroupPy, App::DocumentObjectPy, App::DocumentPy, App::FeaturePythonPy, App::MaterialPy, App::PropertyContainerPy, Gui::DocumentPy, Gui::PythonWorkbenchPy, Gui::SelectionObjectPy, Gui::ViewProviderDocumentObjectPy, Gui::ViewProviderPy, Gui::ViewProviderPythonFeaturePy, Gui::WorkbenchPy, TestGui::UnitTestPy, Fem::FemMeshPy, Mesh::FacetPy, Mesh::FeaturePythonPy, Mesh::MeshFeaturePy, Mesh::MeshPointPy, Mesh::MeshPy, Part::ArcOfCirclePy, Part::ArcPy, Part::BezierCurvePy, Part::BezierSurfacePy, Part::BSplineCurvePy, Part::BSplineSurfacePy, Part::CirclePy, Part::ConePy, Part::CylinderPy, Part::EllipsePy, Part::FeaturePythonPy, Part::GeometryCurvePy, Part::GeometryPy, Part::GeometrySurfacePy, Part::HyperbolaPy, Part::LinePy, Part::OffsetCurvePy, Part::OffsetSurfacePy, Part::ParabolaPy, Part::Part2DObjectPy, Part::PartFeaturePy, Part::PlanePy, Part::RectangularTrimmedSurfacePy, Part::SpherePy, Part::SurfaceOfExtrusionPy, Part::SurfaceOfRevolutionPy, Part::TopoShapeCompoundPy, Part::TopoShapeCompSolidPy, Part::TopoShapeEdgePy, Part::TopoShapeFacePy, Part::TopoShapePy, Part::TopoShapeShellPy, Part::TopoShapeSolidPy, Part::TopoShapeVertexPy, Part::TopoShapeWirePy, Part::ToroidPy, Points::PointsPy, Robot::Robot6AxisPy, Robot::RobotObjectPy, Robot::TrajectoryPy, Robot::WaypointPy, Sketcher::ConstraintPy, Sketcher::SketchObjectPy, Sketcher::SketchObjectSFPy, and Sketcher::SketchPy.
Definition at line 244 of file PyObjectBase.cpp.
References _pcTwinPointer, Base::Console(), and Base::ConsoleSingleton::Log().
int PyObjectBase::_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 in ParameterGrpPy, Base::BaseClassPy, Base::BoundBoxPy, Base::MatrixPy, Base::PersistencePy, Base::PlacementPy, Base::RotationPy, Base::VectorPy, Data::ComplexGeoDataPy, App::DocumentObjectGroupPy, App::DocumentObjectPy, App::DocumentPy, App::FeaturePythonPy, App::MaterialPy, App::PropertyContainerPy, Gui::PyResource, Gui::DocumentPy, Gui::PythonWorkbenchPy, Gui::SelectionObjectPy, Gui::ViewProviderDocumentObjectPy, Gui::ViewProviderPy, Gui::ViewProviderPythonFeaturePy, Gui::WorkbenchPy, TestGui::UnitTestPy, Fem::FemMeshPy, Mesh::FacetPy, Mesh::FeaturePythonPy, Mesh::MeshFeaturePy, Mesh::MeshPointPy, Mesh::MeshPy, Part::ArcOfCirclePy, Part::ArcPy, Part::BezierCurvePy, Part::BezierSurfacePy, Part::BSplineCurvePy, Part::BSplineSurfacePy, Part::CirclePy, Part::ConePy, Part::CylinderPy, Part::EllipsePy, Part::FeaturePythonPy, Part::GeometryCurvePy, Part::GeometryPy, Part::GeometrySurfacePy, Part::HyperbolaPy, Part::LinePy, Part::OffsetCurvePy, Part::OffsetSurfacePy, Part::ParabolaPy, Part::Part2DObjectPy, Part::PartFeaturePy, Part::PlanePy, Part::RectangularTrimmedSurfacePy, Part::SpherePy, Part::SurfaceOfExtrusionPy, Part::SurfaceOfRevolutionPy, Part::TopoShapeCompoundPy, Part::TopoShapeCompSolidPy, Part::TopoShapeEdgePy, Part::TopoShapeFacePy, Part::TopoShapePy, Part::TopoShapeShellPy, Part::TopoShapeSolidPy, Part::TopoShapeVertexPy, Part::TopoShapeWirePy, Part::ToroidPy, Points::PointsPy, Robot::Robot6AxisPy, Robot::RobotObjectPy, Robot::TrajectoryPy, Robot::WaypointPy, Sketcher::ConstraintPy, Sketcher::SketchObjectPy, Sketcher::SketchObjectSFPy, and Sketcher::SketchPy.
Definition at line 221 of file PyObjectBase.cpp.
References Base::streq(), and RobotExample::w.
Referenced by __setattr().
PyObjectBase* Base::PyObjectBase::DecRef | ( | void | ) | [inline] |
decref method wrapper (see python extending manual)
Definition at line 210 of file PyObjectBase.h.
Referenced by Gui::Document::~Document(), ~PyObjectBase(), Gui::PythonWorkbench::~PythonWorkbench(), and Gui::ViewProvider::~ViewProvider().
virtual PyParentObject* Base::PyObjectBase::GetParents | ( | void | ) | [inline, virtual] |
Reimplemented in Base::BaseClassPy, Base::BoundBoxPy, Base::MatrixPy, Base::PersistencePy, Base::PlacementPy, Base::RotationPy, Base::VectorPy, Data::ComplexGeoDataPy, App::DocumentObjectGroupPy, App::DocumentObjectPy, App::DocumentPy, App::FeaturePythonPy, App::MaterialPy, App::PropertyContainerPy, Gui::PyResource, Gui::DocumentPy, Gui::PythonWorkbenchPy, Gui::SelectionObjectPy, Gui::ViewProviderDocumentObjectPy, Gui::ViewProviderPy, Gui::ViewProviderPythonFeaturePy, Gui::WorkbenchPy, TestGui::UnitTestPy, Fem::FemMeshPy, Mesh::FacetPy, Mesh::FeaturePythonPy, Mesh::MeshFeaturePy, Mesh::MeshPointPy, Mesh::MeshPy, Part::ArcOfCirclePy, Part::ArcPy, Part::BezierCurvePy, Part::BezierSurfacePy, Part::BSplineCurvePy, Part::BSplineSurfacePy, Part::CirclePy, Part::ConePy, Part::CylinderPy, Part::EllipsePy, Part::FeaturePythonPy, Part::GeometryCurvePy, Part::GeometryPy, Part::GeometrySurfacePy, Part::HyperbolaPy, Part::LinePy, Part::OffsetCurvePy, Part::OffsetSurfacePy, Part::ParabolaPy, Part::Part2DObjectPy, Part::PartFeaturePy, Part::PlanePy, Part::RectangularTrimmedSurfacePy, Part::SpherePy, Part::SurfaceOfExtrusionPy, Part::SurfaceOfRevolutionPy, Part::TopoShapeCompoundPy, Part::TopoShapeCompSolidPy, Part::TopoShapeEdgePy, Part::TopoShapeFacePy, Part::TopoShapePy, Part::TopoShapeShellPy, Part::TopoShapeSolidPy, Part::TopoShapeVertexPy, Part::TopoShapeWirePy, Part::ToroidPy, Points::PointsPy, Robot::Robot6AxisPy, Robot::RobotObjectPy, Robot::TrajectoryPy, Robot::WaypointPy, Sketcher::ConstraintPy, Sketcher::SketchObjectPy, Sketcher::SketchObjectSFPy, and Sketcher::SketchPy.
Definition at line 192 of file PyObjectBase.h.
virtual PyTypeObject* Base::PyObjectBase::GetType | ( | void | ) | [inline, virtual] |
Reimplemented in Base::BaseClassPy, Base::BoundBoxPy, Base::MatrixPy, Base::PersistencePy, Base::PlacementPy, Base::RotationPy, Base::VectorPy, Data::ComplexGeoDataPy, App::DocumentObjectGroupPy, App::DocumentObjectPy, App::DocumentPy, App::FeaturePythonPy, App::MaterialPy, App::PropertyContainerPy, Gui::PyResource, Gui::DocumentPy, Gui::PythonWorkbenchPy, Gui::SelectionObjectPy, Gui::ViewProviderDocumentObjectPy, Gui::ViewProviderPy, Gui::ViewProviderPythonFeaturePy, Gui::WorkbenchPy, TestGui::UnitTestPy, Fem::FemMeshPy, Mesh::FacetPy, Mesh::FeaturePythonPy, Mesh::MeshFeaturePy, Mesh::MeshPointPy, Mesh::MeshPy, Part::ArcOfCirclePy, Part::ArcPy, Part::BezierCurvePy, Part::BezierSurfacePy, Part::BSplineCurvePy, Part::BSplineSurfacePy, Part::CirclePy, Part::ConePy, Part::CylinderPy, Part::EllipsePy, Part::FeaturePythonPy, Part::GeometryCurvePy, Part::GeometryPy, Part::GeometrySurfacePy, Part::HyperbolaPy, Part::LinePy, Part::OffsetCurvePy, Part::OffsetSurfacePy, Part::ParabolaPy, Part::Part2DObjectPy, Part::PartFeaturePy, Part::PlanePy, Part::RectangularTrimmedSurfacePy, Part::SpherePy, Part::SurfaceOfExtrusionPy, Part::SurfaceOfRevolutionPy, Part::TopoShapeCompoundPy, Part::TopoShapeCompSolidPy, Part::TopoShapeEdgePy, Part::TopoShapeFacePy, Part::TopoShapePy, Part::TopoShapeShellPy, Part::TopoShapeSolidPy, Part::TopoShapeVertexPy, Part::TopoShapeWirePy, Part::ToroidPy, Points::PointsPy, Robot::Robot6AxisPy, Robot::RobotObjectPy, Robot::TrajectoryPy, Robot::WaypointPy, Sketcher::ConstraintPy, Sketcher::SketchObjectPy, Sketcher::SketchObjectSFPy, and Sketcher::SketchPy.
Definition at line 192 of file PyObjectBase.h.
PyObjectBase* Base::PyObjectBase::IncRef | ( | void | ) | [inline] |
incref method wrapper (see python extending manual)
Definition at line 208 of file PyObjectBase.h.
Referenced by Gui::PythonWorkbench::getPyObject(), Gui::ViewProviderDocumentObject::getPyObject(), Gui::ViewProvider::getPyObject(), and Gui::Document::getPyObject().
bool Base::PyObjectBase::isConst | ( | ) | [inline] |
Definition at line 288 of file PyObjectBase.h.
Referenced by __getattr(), App::DocumentPy::staticCallback_abortTransaction(), Gui::WorkbenchPy::staticCallback_activate(), Gui::DocumentPy::staticCallback_activeObject(), Gui::DocumentPy::staticCallback_activeView(), Part::TopoShapeShellPy::staticCallback_add(), Part::TopoShapeCompSolidPy::staticCallback_add(), Part::TopoShapeCompoundPy::staticCallback_add(), Base::BoundBoxPy::staticCallback_add(), Gui::DocumentPy::staticCallback_addAnnotation(), Sketcher::SketchPy::staticCallback_addConstraint(), Sketcher::SketchObjectPy::staticCallback_addConstraint(), Gui::ViewProviderPythonFeaturePy::staticCallback_addDisplayMode(), Fem::FemMeshPy::staticCallback_addEdge(), Sketcher::SketchObjectPy::staticCallback_addExternal(), Fem::FemMeshPy::staticCallback_addFace(), Mesh::MeshPy::staticCallback_addFacet(), Mesh::MeshPy::staticCallback_addFacets(), Sketcher::SketchPy::staticCallback_addGeometry(), Sketcher::SketchObjectPy::staticCallback_addGeometry(), Fem::FemMeshPy::staticCallback_addHypothesis(), Mesh::MeshPy::staticCallback_addMesh(), Fem::FemMeshPy::staticCallback_addNode(), App::DocumentPy::staticCallback_addObject(), App::DocumentObjectGroupPy::staticCallback_addObject(), Points::PointsPy::staticCallback_addPoints(), Gui::ViewProviderPythonFeaturePy::staticCallback_addProperty(), Part::FeaturePythonPy::staticCallback_addProperty(), Mesh::FeaturePythonPy::staticCallback_addProperty(), App::FeaturePythonPy::staticCallback_addProperty(), Fem::FemMeshPy::staticCallback_addQuad(), Fem::FemMeshPy::staticCallback_addVolume(), Gui::PythonWorkbenchPy::staticCallback_AppendCommandbar(), Gui::PythonWorkbenchPy::staticCallback_appendCommandbar(), Gui::PythonWorkbenchPy::staticCallback_AppendContextMenu(), Gui::PythonWorkbenchPy::staticCallback_appendContextMenu(), Gui::PythonWorkbenchPy::staticCallback_AppendMenu(), Gui::PythonWorkbenchPy::staticCallback_appendMenu(), Gui::PythonWorkbenchPy::staticCallback_AppendToolbar(), Gui::PythonWorkbenchPy::staticCallback_appendToolbar(), Part::TopoShapeWirePy::staticCallback_approximate(), Part::BSplineCurvePy::staticCallback_approximate(), Part::GeometrySurfacePy::staticCallback_bounds(), Part::BSplineSurfacePy::staticCallback_bounds(), Part::BezierSurfacePy::staticCallback_bounds(), Part::BSplineCurvePy::staticCallback_buildFromPoles(), Part::TopoShapeEdgePy::staticCallback_centerOfCurvatureAt(), Robot::Robot6AxisPy::staticCallback_check(), Sketcher::SketchPy::staticCallback_clear(), Mesh::MeshPy::staticCallback_clear(), App::DocumentPy::staticCallback_clearUndos(), Mesh::MeshPy::staticCallback_coarsen(), Mesh::MeshPy::staticCallback_collapseEdge(), Mesh::MeshPy::staticCallback_collapseFacet(), Mesh::MeshPy::staticCallback_collapseFacets(), App::DocumentPy::staticCallback_commitTransaction(), Part::TopoShapePy::staticCallback_common(), Part::TopoShapePy::staticCallback_complement(), Fem::FemMeshPy::staticCallback_compute(), Base::PlacementPy::staticCallback_copy(), Fem::FemMeshPy::staticCallback_copy(), App::DocumentPy::staticCallback_copyObject(), Mesh::MeshFeaturePy::staticCallback_countFacets(), Mesh::MeshFeaturePy::staticCallback_countPoints(), Part::TopoShapeFacePy::staticCallback_curvatureAt(), Part::TopoShapeEdgePy::staticCallback_curvatureAt(), Part::TopoShapePy::staticCallback_cut(), Sketcher::SketchObjectPy::staticCallback_delConstraint(), Sketcher::SketchObjectPy::staticCallback_delConstraintOnPoint(), Robot::TrajectoryPy::staticCallback_deleteLast(), Sketcher::SketchObjectPy::staticCallback_delExternal(), Sketcher::SketchObjectPy::staticCallback_delGeometry(), Part::TopoShapeFacePy::staticCallback_derivative1At(), Part::TopoShapeEdgePy::staticCallback_derivative1At(), Part::TopoShapeFacePy::staticCallback_derivative2At(), Part::TopoShapeEdgePy::staticCallback_derivative2At(), Part::TopoShapeEdgePy::staticCallback_derivative3At(), Base::MatrixPy::staticCallback_determinant(), Part::GeometryCurvePy::staticCallback_discretize(), Base::BoundBoxPy::staticCallback_enlarge(), Part::BSplineSurfacePy::staticCallback_exchangeUV(), Part::BezierSurfacePy::staticCallback_exchangeUV(), Part::TopoShapePy::staticCallback_extrude(), Sketcher::SketchObjectPy::staticCallback_fillet(), App::DocumentPy::staticCallback_findObjects(), Gui::ViewProviderPy::staticCallback_finishEditing(), Part::TopoShapePy::staticCallback_fix(), Mesh::MeshPy::staticCallback_fixDeformations(), Mesh::MeshPy::staticCallback_fixDegenerations(), Mesh::MeshFeaturePy::staticCallback_fixDegenerations(), Mesh::MeshPy::staticCallback_fixIndices(), Mesh::MeshFeaturePy::staticCallback_fixIndices(), Mesh::MeshPy::staticCallback_fixSelfIntersections(), Mesh::MeshFeaturePy::staticCallback_fixSelfIntersections(), Part::TopoShapePy::staticCallback_fuse(), Part::TopoShapeShellPy::staticCallback_getBadEdges(), App::PropertyContainerPy::staticCallback_getDocumentationOfProperty(), Part::TopoShapeShellPy::staticCallback_getFreeEdges(), App::PropertyContainerPy::staticCallback_getGroupOfProperty(), Base::BoundBoxPy::staticCallback_getIntersectionPoint(), Part::BSplineCurvePy::staticCallback_getKnot(), Part::BSplineCurvePy::staticCallback_getKnots(), Part::BSplineCurvePy::staticCallback_getMultiplicities(), Part::BSplineCurvePy::staticCallback_getMultiplicity(), Gui::DocumentPy::staticCallback_getObject(), App::DocumentPy::staticCallback_getObject(), App::DocumentObjectGroupPy::staticCallback_getObject(), App::DocumentPy::staticCallback_getObjectsByLabel(), Part::BSplineSurfacePy::staticCallback_getPole(), Part::BSplineCurvePy::staticCallback_getPole(), Part::BezierSurfacePy::staticCallback_getPole(), Part::BezierCurvePy::staticCallback_getPole(), Part::BSplineSurfacePy::staticCallback_getPoles(), Part::BSplineCurvePy::staticCallback_getPoles(), Part::BezierSurfacePy::staticCallback_getPoles(), Part::BezierCurvePy::staticCallback_getPoles(), App::PropertyContainerPy::staticCallback_getPropertyByName(), Robot::RobotObjectPy::staticCallback_getRobot(), App::DocumentPy::staticCallback_getTempFileName(), App::PropertyContainerPy::staticCallback_getTypeOfProperty(), Part::BSplineSurfacePy::staticCallback_getUKnot(), Part::BSplineSurfacePy::staticCallback_getUKnots(), Part::BSplineSurfacePy::staticCallback_getUMultiplicities(), Part::BSplineSurfacePy::staticCallback_getUMultiplicity(), Part::BSplineSurfacePy::staticCallback_getVKnot(), Part::BSplineSurfacePy::staticCallback_getVKnots(), Part::BSplineSurfacePy::staticCallback_getVMultiplicities(), Part::BSplineSurfacePy::staticCallback_getVMultiplicity(), Part::BSplineSurfacePy::staticCallback_getWeight(), Part::BSplineCurvePy::staticCallback_getWeight(), Part::BezierSurfacePy::staticCallback_getWeight(), Part::BezierCurvePy::staticCallback_getWeight(), Part::BSplineSurfacePy::staticCallback_getWeights(), Part::BSplineCurvePy::staticCallback_getWeights(), Part::BezierSurfacePy::staticCallback_getWeights(), Part::BezierCurvePy::staticCallback_getWeights(), Mesh::MeshFeaturePy::staticCallback_harmonizeNormals(), App::DocumentObjectGroupPy::staticCallback_hasObject(), Gui::ViewProviderPy::staticCallback_hide(), Gui::DocumentPy::staticCallback_hide(), Part::BezierSurfacePy::staticCallback_increase(), Part::BezierCurvePy::staticCallback_increase(), Part::BSplineSurfacePy::staticCallback_increaseDegree(), Part::BSplineCurvePy::staticCallback_increaseDegree(), Part::BSplineCurvePy::staticCallback_increaseMultiplicity(), Part::BSplineSurfacePy::staticCallback_increaseUMultiplicity(), Part::BSplineSurfacePy::staticCallback_increaseVMultiplicity(), Part::BSplineCurvePy::staticCallback_incrementMultiplicity(), Part::BSplineSurfacePy::staticCallback_incrementUMultiplicity(), Part::BSplineSurfacePy::staticCallback_incrementVMultiplicity(), Part::BSplineCurvePy::staticCallback_insertKnot(), Part::BSplineCurvePy::staticCallback_insertKnots(), Part::BezierCurvePy::staticCallback_insertPoleAfter(), Part::BezierCurvePy::staticCallback_insertPoleBefore(), Part::BezierSurfacePy::staticCallback_insertPoleColAfter(), Part::BezierSurfacePy::staticCallback_insertPoleColBefore(), Part::BezierSurfacePy::staticCallback_insertPoleRowAfter(), Part::BezierSurfacePy::staticCallback_insertPoleRowBefore(), Part::BSplineSurfacePy::staticCallback_insertUKnot(), Part::BSplineSurfacePy::staticCallback_insertUKnots(), Mesh::MeshPy::staticCallback_insertVertex(), Part::BSplineSurfacePy::staticCallback_insertVKnot(), Part::BSplineSurfacePy::staticCallback_insertVKnots(), Robot::TrajectoryPy::staticCallback_insertWaypoints(), Part::BSplineCurvePy::staticCallback_interpolate(), Mesh::FacetPy::staticCallback_intersect(), Base::PlacementPy::staticCallback_inverse(), Base::MatrixPy::staticCallback_inverse(), Base::RotationPy::staticCallback_invert(), Base::MatrixPy::staticCallback_invert(), Gui::SelectionObjectPy::staticCallback_isA(), Part::BSplineCurvePy::staticCallback_isClosed(), Part::BezierCurvePy::staticCallback_isClosed(), Base::BoundBoxPy::staticCallback_isCutPlane(), Gui::ViewProviderPy::staticCallback_isEditing(), Base::BoundBoxPy::staticCallback_isInside(), Base::BoundBoxPy::staticCallback_isIntersection(), Part::TopoShapeFacePy::staticCallback_isPartOfDomain(), Part::BSplineCurvePy::staticCallback_isPeriodic(), Part::BezierCurvePy::staticCallback_isPeriodic(), Part::BSplineCurvePy::staticCallback_isRational(), Part::BezierCurvePy::staticCallback_isRational(), Part::GeometrySurfacePy::staticCallback_isUClosed(), Part::BSplineSurfacePy::staticCallback_isUClosed(), Part::BezierSurfacePy::staticCallback_isUClosed(), Part::GeometrySurfacePy::staticCallback_isUPeriodic(), Part::BSplineSurfacePy::staticCallback_isUPeriodic(), Part::BezierSurfacePy::staticCallback_isUPeriodic(), Part::BSplineSurfacePy::staticCallback_isURational(), Part::BezierSurfacePy::staticCallback_isURational(), Part::GeometrySurfacePy::staticCallback_isVClosed(), Part::BSplineSurfacePy::staticCallback_isVClosed(), Part::BezierSurfacePy::staticCallback_isVClosed(), Gui::ViewProviderPy::staticCallback_isVisible(), Part::GeometrySurfacePy::staticCallback_isVPeriodic(), Part::BSplineSurfacePy::staticCallback_isVPeriodic(), Part::BezierSurfacePy::staticCallback_isVPeriodic(), Part::BSplineSurfacePy::staticCallback_isVRational(), Part::BezierSurfacePy::staticCallback_isVRational(), Part::BSplineCurvePy::staticCallback_join(), Gui::PythonWorkbenchPy::staticCallback_ListCommandbars(), Gui::PythonWorkbenchPy::staticCallback_listCommandbars(), Gui::ViewProviderPy::staticCallback_listDisplayModes(), Gui::PythonWorkbenchPy::staticCallback_ListMenus(), Gui::PythonWorkbenchPy::staticCallback_listMenus(), Gui::PythonWorkbenchPy::staticCallback_ListToolbars(), Gui::PythonWorkbenchPy::staticCallback_listToolbars(), Part::BSplineCurvePy::staticCallback_makeC1Continuous(), Part::TopoShapeShellPy::staticCallback_makeHalfSpace(), Part::TopoShapeFacePy::staticCallback_makeHalfSpace(), Part::TopoShapeWirePy::staticCallback_makeHomogenousWires(), Part::TopoShapeWirePy::staticCallback_makeOffset(), Part::TopoShapeFacePy::staticCallback_makeOffset(), Part::TopoShapePy::staticCallback_makeOffsetShape(), Part::TopoShapeWirePy::staticCallback_makePipe(), Part::TopoShapeWirePy::staticCallback_makePipeShell(), Part::GeometryCurvePy::staticCallback_makeRuledSurface(), Part::TopoShapePy::staticCallback_makeShapeFromMesh(), Part::TopoShapePy::staticCallback_makeThickness(), Part::TopoShapePy::staticCallback_mirror(), Part::GeometryPy::staticCallback_mirror(), Base::PlacementPy::staticCallback_move(), Mesh::MeshPointPy::staticCallback_move(), Base::MatrixPy::staticCallback_move(), Base::BoundBoxPy::staticCallback_move(), App::DocumentPy::staticCallback_moveObject(), Sketcher::SketchPy::staticCallback_movePoint(), Sketcher::SketchObjectPy::staticCallback_movePoint(), Part::BSplineSurfacePy::staticCallback_movePoint(), Part::BSplineCurvePy::staticCallback_movePoint(), Base::VectorPy::staticCallback_multiply(), Base::RotationPy::staticCallback_multiply(), Base::PlacementPy::staticCallback_multiply(), Base::MatrixPy::staticCallback_multiply(), Base::RotationPy::staticCallback_multVec(), Base::PlacementPy::staticCallback_multVec(), Gui::WorkbenchPy::staticCallback_name(), App::DocumentObjectGroupPy::staticCallback_newObject(), Part::TopoShapeFacePy::staticCallback_normalAt(), Part::TopoShapeEdgePy::staticCallback_normalAt(), Base::VectorPy::staticCallback_normalize(), Part::TopoShapePy::staticCallback_nullify(), Mesh::MeshPy::staticCallback_offset(), Mesh::MeshPy::staticCallback_offsetSpecial(), Part::TopoShapePy::staticCallback_oldFuse(), App::DocumentPy::staticCallback_openTransaction(), Part::GeometrySurfacePy::staticCallback_parameter(), Part::GeometryCurvePy::staticCallback_parameter(), Robot::TrajectoryPy::staticCallback_position(), Part::TopoShapePy::staticCallback_project(), Base::VectorPy::staticCallback_projectToLine(), Base::VectorPy::staticCallback_projectToPlane(), App::DocumentObjectPy::staticCallback_purgeTouched(), Part::TopoShapePy::staticCallback_read(), Points::PointsPy::staticCallback_read(), Mesh::MeshPy::staticCallback_read(), Fem::FemMeshPy::staticCallback_read(), App::DocumentPy::staticCallback_recompute(), App::DocumentPy::staticCallback_redo(), Mesh::MeshPy::staticCallback_refine(), Gui::SelectionObjectPy::staticCallback_remove(), Gui::PythonWorkbenchPy::staticCallback_RemoveCommandbar(), Gui::PythonWorkbenchPy::staticCallback_removeCommandbar(), Mesh::MeshPy::staticCallback_removeComponents(), Gui::PythonWorkbenchPy::staticCallback_RemoveContextMenu(), Gui::PythonWorkbenchPy::staticCallback_removeContextMenu(), Mesh::MeshPy::staticCallback_removeDuplicatedFacets(), Mesh::MeshFeaturePy::staticCallback_removeDuplicatedFacets(), Mesh::MeshPy::staticCallback_removeDuplicatedPoints(), Mesh::MeshFeaturePy::staticCallback_removeDuplicatedPoints(), Mesh::MeshPy::staticCallback_removeFacets(), Mesh::MeshPy::staticCallback_removeFoldsOnSurface(), Mesh::MeshFeaturePy::staticCallback_removeFoldsOnSurface(), Part::TopoShapePy::staticCallback_removeInternalWires(), Part::BSplineCurvePy::staticCallback_removeKnot(), Gui::PythonWorkbenchPy::staticCallback_RemoveMenu(), Gui::PythonWorkbenchPy::staticCallback_removeMenu(), Mesh::MeshPy::staticCallback_removeNonManifolds(), Mesh::MeshFeaturePy::staticCallback_removeNonManifolds(), App::DocumentPy::staticCallback_removeObject(), App::DocumentObjectGroupPy::staticCallback_removeObject(), App::DocumentObjectGroupPy::staticCallback_removeObjectsFromDocument(), Part::BezierCurvePy::staticCallback_removePole(), Part::BezierSurfacePy::staticCallback_removePoleCol(), Part::BezierSurfacePy::staticCallback_removePoleRow(), Gui::PythonWorkbenchPy::staticCallback_RemoveToolbar(), Gui::PythonWorkbenchPy::staticCallback_removeToolbar(), Part::BSplineSurfacePy::staticCallback_removeUKnot(), Part::BSplineSurfacePy::staticCallback_removeVKnot(), Gui::DocumentPy::staticCallback_resetEdit(), App::DocumentPy::staticCallback_restore(), Part::TopoShapePy::staticCallback_reverse(), Part::TopoShapePy::staticCallback_rotate(), Mesh::MeshPy::staticCallback_rotate(), Part::GeometryPy::staticCallback_rotate(), Base::MatrixPy::staticCallback_rotateX(), Base::MatrixPy::staticCallback_rotateY(), Base::MatrixPy::staticCallback_rotateZ(), App::DocumentPy::staticCallback_save(), Base::VectorPy::staticCallback_scale(), Part::TopoShapePy::staticCallback_scale(), Base::MatrixPy::staticCallback_scale(), Part::GeometryPy::staticCallback_scale(), Part::TopoShapePy::staticCallback_section(), Part::BSplineSurfacePy::staticCallback_segment(), Part::BSplineCurvePy::staticCallback_segment(), Part::BezierSurfacePy::staticCallback_segment(), Part::BezierCurvePy::staticCallback_segment(), App::MaterialPy::staticCallback_set(), Base::MatrixPy::staticCallback_setA(), Base::MatrixPy::staticCallback_setA11(), Base::MatrixPy::staticCallback_setA12(), Base::MatrixPy::staticCallback_setA13(), Base::MatrixPy::staticCallback_setA14(), Base::MatrixPy::staticCallback_setA21(), Base::MatrixPy::staticCallback_setA22(), Base::MatrixPy::staticCallback_setA23(), Base::MatrixPy::staticCallback_setA24(), Base::MatrixPy::staticCallback_setA31(), Base::MatrixPy::staticCallback_setA32(), Base::MatrixPy::staticCallback_setA33(), Base::MatrixPy::staticCallback_setA34(), Base::MatrixPy::staticCallback_setA41(), Base::MatrixPy::staticCallback_setA42(), Base::MatrixPy::staticCallback_setA43(), Base::MatrixPy::staticCallback_setA44(), Gui::DocumentPy::staticCallback_setActiveObject(), Gui::DocumentPy::staticCallback_setActiveView(), App::MaterialPy::staticCallback_setAmbientColor(), Gui::ViewProviderPy::staticCallback_setAnnotation(), Part::ToroidPy::staticCallback_setAxis(), Part::SpherePy::staticCallback_setAxis(), Part::PlanePy::staticCallback_setAxis(), Part::ParabolaPy::staticCallback_setAxis(), Part::HyperbolaPy::staticCallback_setAxis(), Part::EllipsePy::staticCallback_setAxis(), Part::CylinderPy::staticCallback_setAxis(), Part::ConePy::staticCallback_setAxis(), Part::CirclePy::staticCallback_setAxis(), Part::ArcOfCirclePy::staticCallback_setAxis(), Robot::Robot6AxisPy::staticCallback_setAxis1(), Robot::Robot6AxisPy::staticCallback_setAxis2(), Robot::Robot6AxisPy::staticCallback_setAxis3(), Robot::Robot6AxisPy::staticCallback_setAxis4(), Robot::Robot6AxisPy::staticCallback_setAxis5(), Robot::Robot6AxisPy::staticCallback_setAxis6(), Robot::WaypointPy::staticCallback_setBase(), Robot::Robot6AxisPy::staticCallback_setBase(), Base::PlacementPy::staticCallback_setBase(), Part::SurfaceOfRevolutionPy::staticCallback_setBasisCurve(), Part::SurfaceOfExtrusionPy::staticCallback_setBasisCurve(), Part::OffsetCurvePy::staticCallback_setBasisCurve(), Part::OffsetSurfacePy::staticCallback_setBasisSurface(), Part::ToroidPy::staticCallback_setCenter(), Part::SpherePy::staticCallback_setCenter(), Part::EllipsePy::staticCallback_setCenter(), Part::CylinderPy::staticCallback_setCenter(), Part::ConePy::staticCallback_setCenter(), Part::CirclePy::staticCallback_setCenter(), Part::ArcOfCirclePy::staticCallback_setCenter(), Part::GeometryPy::staticCallback_setConstruction(), Robot::WaypointPy::staticCallback_setCont(), Base::PersistencePy::staticCallback_setContent(), Sketcher::SketchObjectPy::staticCallback_setDatum(), App::MaterialPy::staticCallback_setDiffuseColor(), Part::SurfaceOfRevolutionPy::staticCallback_setDirection(), Part::SurfaceOfExtrusionPy::staticCallback_setDirection(), Gui::DocumentPy::staticCallback_setEdit(), App::MaterialPy::staticCallback_setEmissiveColor(), Part::LinePy::staticCallback_setEndPoint(), Sketcher::ConstraintPy::staticCallback_setFirst(), Part::ParabolaPy::staticCallback_setFocal(), Part::LinePy::staticCallback_setInfinite(), Part::BSplineCurvePy::staticCallback_setKnot(), Part::BSplineCurvePy::staticCallback_setKnots(), Base::VectorPy::staticCallback_setLength(), Part::SurfaceOfRevolutionPy::staticCallback_setLocation(), Part::ParabolaPy::staticCallback_setLocation(), Part::HyperbolaPy::staticCallback_setLocation(), Part::ToroidPy::staticCallback_setMajorRadius(), Part::HyperbolaPy::staticCallback_setMajorRadius(), Part::EllipsePy::staticCallback_setMajorRadius(), Data::ComplexGeoDataPy::staticCallback_setMatrix(), Part::ToroidPy::staticCallback_setMinorRadius(), Part::HyperbolaPy::staticCallback_setMinorRadius(), Part::EllipsePy::staticCallback_setMinorRadius(), Robot::WaypointPy::staticCallback_setName(), Part::BSplineCurvePy::staticCallback_setNotPeriodic(), Part::OffsetCurvePy::staticCallback_setOffsetDirection(), Part::OffsetSurfacePy::staticCallback_setOffsetValue(), Part::OffsetCurvePy::staticCallback_setOffsetValue(), Part::TopoShapePy::staticCallback_setOrientation(), Part::BSplineCurvePy::staticCallback_setOrigin(), Part::LinePy::staticCallback_setParameterRange(), Part::BSplineCurvePy::staticCallback_setPeriodic(), Data::ComplexGeoDataPy::staticCallback_setPlacement(), Mesh::MeshPy::staticCallback_setPoint(), Part::BSplineSurfacePy::staticCallback_setPole(), Part::BSplineCurvePy::staticCallback_setPole(), Part::BezierSurfacePy::staticCallback_setPole(), Part::BezierCurvePy::staticCallback_setPole(), Part::BSplineSurfacePy::staticCallback_setPoleCol(), Part::BezierSurfacePy::staticCallback_setPoleCol(), Part::BSplineSurfacePy::staticCallback_setPoleRow(), Part::BezierSurfacePy::staticCallback_setPoleRow(), Part::BezierCurvePy::staticCallback_setPoles(), Robot::WaypointPy::staticCallback_setPos(), Gui::DocumentPy::staticCallback_setPos(), Part::PlanePy::staticCallback_setPosition(), Base::RotationPy::staticCallback_setQ(), Part::SpherePy::staticCallback_setRadius(), Part::CylinderPy::staticCallback_setRadius(), Part::ConePy::staticCallback_setRadius(), Part::CirclePy::staticCallback_setRadius(), Part::ArcOfCirclePy::staticCallback_setRadius(), Gui::ViewProviderPy::staticCallback_setRootNode(), Base::PlacementPy::staticCallback_setRotation(), Sketcher::ConstraintPy::staticCallback_setSecond(), Part::ConePy::staticCallback_setSemiAngle(), Fem::FemMeshPy::staticCallback_setShape(), App::MaterialPy::staticCallback_setShininess(), App::MaterialPy::staticCallback_setSpecularColor(), Fem::FemMeshPy::staticCallback_setStanardHypotheses(), Part::LinePy::staticCallback_setStartPoint(), Robot::Robot6AxisPy::staticCallback_setTcp(), Part::TopoShapeVertexPy::staticCallback_setTolerance(), Part::TopoShapeFacePy::staticCallback_setTolerance(), Part::TopoShapeEdgePy::staticCallback_setTolerance(), Robot::WaypointPy::staticCallback_setTool(), Fem::FemMeshPy::staticCallback_setTransform(), Gui::ViewProviderPy::staticCallback_setTransformation(), App::MaterialPy::staticCallback_setTransparency(), Robot::WaypointPy::staticCallback_setType(), Part::BSplineSurfacePy::staticCallback_setUKnot(), Part::BSplineSurfacePy::staticCallback_setUKnots(), App::DocumentPy::staticCallback_setUndoMode(), Part::BSplineSurfacePy::staticCallback_setUNotPeriodic(), Part::BSplineSurfacePy::staticCallback_setUOrigin(), Part::BSplineSurfacePy::staticCallback_setUPeriodic(), Robot::WaypointPy::staticCallback_setVelocity(), Part::BSplineSurfacePy::staticCallback_setVKnot(), Part::BSplineSurfacePy::staticCallback_setVKnots(), Part::BSplineSurfacePy::staticCallback_setVNotPeriodic(), Part::BSplineSurfacePy::staticCallback_setVOrigin(), Part::BSplineSurfacePy::staticCallback_setVPeriodic(), Robot::TrajectoryPy::staticCallback_setWaypoints(), Part::BSplineSurfacePy::staticCallback_setWeight(), Part::BSplineCurvePy::staticCallback_setWeight(), Part::BezierSurfacePy::staticCallback_setWeight(), Part::BezierCurvePy::staticCallback_setWeight(), Part::BSplineSurfacePy::staticCallback_setWeightCol(), Part::BezierSurfacePy::staticCallback_setWeightCol(), Part::BSplineSurfacePy::staticCallback_setWeightRow(), Part::BezierSurfacePy::staticCallback_setWeightRow(), Base::VectorPy::staticCallback_setx(), Mesh::MeshPointPy::staticCallback_setx(), Base::BoundBoxPy::staticCallback_setXMax(), Base::BoundBoxPy::staticCallback_setXMin(), Base::VectorPy::staticCallback_sety(), Mesh::MeshPointPy::staticCallback_sety(), Base::BoundBoxPy::staticCallback_setYMax(), Base::BoundBoxPy::staticCallback_setYMin(), Base::VectorPy::staticCallback_setz(), Mesh::MeshPointPy::staticCallback_setz(), Base::BoundBoxPy::staticCallback_setZMax(), Base::BoundBoxPy::staticCallback_setZMin(), Part::TopoShapePy::staticCallback_sewShape(), Gui::ViewProviderPy::staticCallback_show(), Gui::DocumentPy::staticCallback_show(), Mesh::MeshFeaturePy::staticCallback_smooth(), Mesh::MeshPy::staticCallback_snapVertex(), Sketcher::SketchPy::staticCallback_solve(), Sketcher::SketchObjectPy::staticCallback_solve(), Mesh::MeshPy::staticCallback_splitEdge(), Mesh::MeshPy::staticCallback_splitEdges(), Mesh::MeshPy::staticCallback_splitFacet(), Gui::ViewProviderPy::staticCallback_startEditing(), Gui::ViewProviderPythonFeaturePy::staticCallback_supportedProperties(), Part::FeaturePythonPy::staticCallback_supportedProperties(), Mesh::FeaturePythonPy::staticCallback_supportedProperties(), App::FeaturePythonPy::staticCallback_supportedProperties(), App::DocumentPy::staticCallback_supportedTypes(), Mesh::MeshPy::staticCallback_swapEdge(), Part::GeometrySurfacePy::staticCallback_tangent(), Part::GeometryCurvePy::staticCallback_tangent(), Part::TopoShapeFacePy::staticCallback_tangentAt(), Part::TopoShapeEdgePy::staticCallback_tangentAt(), Part::BSplineCurvePy::staticCallback_toBezier(), Part::GeometrySurfacePy::staticCallback_toBSpline(), Base::RotationPy::staticCallback_toEuler(), Sketcher::SketchObjectPy::staticCallback_toggleConstruction(), Base::PlacementPy::staticCallback_toMatrix(), Gui::ViewProviderPy::staticCallback_toString(), App::DocumentObjectPy::staticCallback_touch(), Mesh::MeshPy::staticCallback_transform(), Base::MatrixPy::staticCallback_transform(), Part::GeometryPy::staticCallback_transform(), Part::TopoShapePy::staticCallback_transformGeometry(), Part::TopoShapePy::staticCallback_transformShape(), Mesh::MeshPy::staticCallback_transformToEigen(), Part::TopoShapePy::staticCallback_translate(), Mesh::MeshPy::staticCallback_translate(), Part::GeometryPy::staticCallback_translate(), Sketcher::SketchObjectPy::staticCallback_trim(), Part::ToroidPy::staticCallback_uIso(), Part::SpherePy::staticCallback_uIso(), Part::RectangularTrimmedSurfacePy::staticCallback_uIso(), Part::PlanePy::staticCallback_uIso(), Part::OffsetSurfacePy::staticCallback_uIso(), Part::CylinderPy::staticCallback_uIso(), Part::ConePy::staticCallback_uIso(), Part::BSplineSurfacePy::staticCallback_uIso(), Part::BezierSurfacePy::staticCallback_uIso(), Mesh::MeshPointPy::staticCallback_unbound(), Mesh::FacetPy::staticCallback_unbound(), App::DocumentPy::staticCallback_undo(), Base::MatrixPy::staticCallback_unity(), Gui::ViewProviderDocumentObjectPy::staticCallback_update(), Gui::DocumentPy::staticCallback_update(), Part::GeometrySurfacePy::staticCallback_UPeriod(), Part::GeometrySurfacePy::staticCallback_value(), Part::GeometryCurvePy::staticCallback_value(), Part::TopoShapeFacePy::staticCallback_valueAt(), Part::TopoShapeEdgePy::staticCallback_valueAt(), Robot::TrajectoryPy::staticCallback_velocity(), Part::ToroidPy::staticCallback_vIso(), Part::SpherePy::staticCallback_vIso(), Part::RectangularTrimmedSurfacePy::staticCallback_vIso(), Part::PlanePy::staticCallback_vIso(), Part::OffsetSurfacePy::staticCallback_vIso(), Part::CylinderPy::staticCallback_vIso(), Part::ConePy::staticCallback_vIso(), Part::BSplineSurfacePy::staticCallback_vIso(), Part::BezierSurfacePy::staticCallback_vIso(), and Part::GeometrySurfacePy::staticCallback_VPeriod().
bool Base::PyObjectBase::isValid | ( | void | ) | [inline] |
Definition at line 279 of file PyObjectBase.h.
Referenced by __getattr(), __setattr(), Part::TopoShapePy::isValid(), App::DocumentPy::staticCallback_abortTransaction(), Gui::WorkbenchPy::staticCallback_activate(), Gui::DocumentPy::staticCallback_activeObject(), Gui::DocumentPy::staticCallback_activeView(), Base::VectorPy::staticCallback_add(), Part::TopoShapeShellPy::staticCallback_add(), Part::TopoShapeCompSolidPy::staticCallback_add(), Part::TopoShapeCompoundPy::staticCallback_add(), Base::BoundBoxPy::staticCallback_add(), Gui::DocumentPy::staticCallback_addAnnotation(), Sketcher::SketchPy::staticCallback_addConstraint(), Sketcher::SketchObjectPy::staticCallback_addConstraint(), Gui::ViewProviderPythonFeaturePy::staticCallback_addDisplayMode(), Fem::FemMeshPy::staticCallback_addEdge(), Sketcher::SketchObjectPy::staticCallback_addExternal(), Fem::FemMeshPy::staticCallback_addFace(), Mesh::MeshPy::staticCallback_addFacet(), Mesh::MeshPy::staticCallback_addFacets(), Sketcher::SketchPy::staticCallback_addGeometry(), Sketcher::SketchObjectPy::staticCallback_addGeometry(), Fem::FemMeshPy::staticCallback_addHypothesis(), Mesh::MeshPy::staticCallback_addMesh(), Fem::FemMeshPy::staticCallback_addNode(), App::DocumentPy::staticCallback_addObject(), App::DocumentObjectGroupPy::staticCallback_addObject(), Points::PointsPy::staticCallback_addPoints(), Gui::ViewProviderPythonFeaturePy::staticCallback_addProperty(), Part::FeaturePythonPy::staticCallback_addProperty(), Mesh::FeaturePythonPy::staticCallback_addProperty(), App::FeaturePythonPy::staticCallback_addProperty(), Fem::FemMeshPy::staticCallback_addQuad(), Fem::FemMeshPy::staticCallback_addVolume(), Gui::PythonWorkbenchPy::staticCallback_AppendCommandbar(), Gui::PythonWorkbenchPy::staticCallback_appendCommandbar(), Gui::PythonWorkbenchPy::staticCallback_AppendContextMenu(), Gui::PythonWorkbenchPy::staticCallback_appendContextMenu(), Gui::PythonWorkbenchPy::staticCallback_AppendMenu(), Gui::PythonWorkbenchPy::staticCallback_appendMenu(), Gui::PythonWorkbenchPy::staticCallback_AppendToolbar(), Gui::PythonWorkbenchPy::staticCallback_appendToolbar(), Part::TopoShapeWirePy::staticCallback_approximate(), Part::BSplineCurvePy::staticCallback_approximate(), Part::GeometrySurfacePy::staticCallback_bounds(), Part::BSplineSurfacePy::staticCallback_bounds(), Part::BezierSurfacePy::staticCallback_bounds(), Part::BSplineCurvePy::staticCallback_buildFromPoles(), Part::TopoShapeEdgePy::staticCallback_centerOfCurvatureAt(), Part::TopoShapePy::staticCallback_check(), Robot::Robot6AxisPy::staticCallback_check(), Sketcher::SketchPy::staticCallback_clear(), Mesh::MeshPy::staticCallback_clear(), App::DocumentPy::staticCallback_clearUndos(), Mesh::MeshPy::staticCallback_coarsen(), Mesh::MeshPy::staticCallback_collapseEdge(), Mesh::MeshPy::staticCallback_collapseFacet(), Mesh::MeshPy::staticCallback_collapseFacets(), App::DocumentPy::staticCallback_commitTransaction(), Part::TopoShapePy::staticCallback_common(), Part::TopoShapePy::staticCallback_complement(), Fem::FemMeshPy::staticCallback_compute(), Part::TopoShapePy::staticCallback_copy(), Points::PointsPy::staticCallback_copy(), Base::PlacementPy::staticCallback_copy(), Mesh::MeshPy::staticCallback_copy(), Fem::FemMeshPy::staticCallback_copy(), App::DocumentPy::staticCallback_copyObject(), Mesh::MeshPy::staticCallback_countComponents(), Mesh::MeshFeaturePy::staticCallback_countFacets(), Mesh::MeshPy::staticCallback_countNonUniformOrientedFacets(), Mesh::MeshFeaturePy::staticCallback_countPoints(), Mesh::MeshPy::staticCallback_countSegments(), Base::VectorPy::staticCallback_cross(), Mesh::MeshPy::staticCallback_crossSections(), Part::TopoShapeFacePy::staticCallback_curvatureAt(), Part::TopoShapeEdgePy::staticCallback_curvatureAt(), Part::TopoShapePy::staticCallback_cut(), Sketcher::SketchObjectPy::staticCallback_delConstraint(), Sketcher::SketchObjectPy::staticCallback_delConstraintOnPoint(), Robot::TrajectoryPy::staticCallback_deleteLast(), Sketcher::SketchObjectPy::staticCallback_delExternal(), Sketcher::SketchObjectPy::staticCallback_delGeometry(), Part::TopoShapeFacePy::staticCallback_derivative1At(), Part::TopoShapeEdgePy::staticCallback_derivative1At(), Part::TopoShapeFacePy::staticCallback_derivative2At(), Part::TopoShapeEdgePy::staticCallback_derivative2At(), Part::TopoShapeEdgePy::staticCallback_derivative3At(), Base::MatrixPy::staticCallback_determinant(), Mesh::MeshPy::staticCallback_difference(), Part::GeometryCurvePy::staticCallback_discretize(), Base::VectorPy::staticCallback_distanceToLine(), Base::VectorPy::staticCallback_distanceToPlane(), Base::VectorPy::staticCallback_dot(), Base::BoundBoxPy::staticCallback_enlarge(), Part::BSplineSurfacePy::staticCallback_exchangeUV(), Part::BezierSurfacePy::staticCallback_exchangeUV(), Part::TopoShapePy::staticCallback_exportBrep(), Part::TopoShapePy::staticCallback_exportIges(), Part::TopoShapePy::staticCallback_exportStep(), Part::TopoShapePy::staticCallback_exportStl(), Part::TopoShapePy::staticCallback_extrude(), Sketcher::SketchObjectPy::staticCallback_fillet(), Mesh::MeshPy::staticCallback_fillupHoles(), App::DocumentPy::staticCallback_findObjects(), Gui::ViewProviderPy::staticCallback_finishEditing(), Part::TopoShapePy::staticCallback_fix(), Mesh::MeshPy::staticCallback_fixDeformations(), Mesh::MeshPy::staticCallback_fixDegenerations(), Mesh::MeshFeaturePy::staticCallback_fixDegenerations(), Mesh::MeshPy::staticCallback_fixIndices(), Mesh::MeshFeaturePy::staticCallback_fixIndices(), Mesh::MeshPy::staticCallback_fixSelfIntersections(), Mesh::MeshFeaturePy::staticCallback_fixSelfIntersections(), Mesh::MeshPy::staticCallback_flipNormals(), Mesh::MeshPy::staticCallback_foraminate(), Part::TopoShapePy::staticCallback_fuse(), Base::MatrixPy::staticCallback_getA(), Base::MatrixPy::staticCallback_getA11(), Base::MatrixPy::staticCallback_getA12(), Base::MatrixPy::staticCallback_getA13(), Base::MatrixPy::staticCallback_getA14(), Base::MatrixPy::staticCallback_getA21(), Base::MatrixPy::staticCallback_getA22(), Base::MatrixPy::staticCallback_getA23(), Base::MatrixPy::staticCallback_getA24(), Base::MatrixPy::staticCallback_getA31(), Base::MatrixPy::staticCallback_getA32(), Base::MatrixPy::staticCallback_getA33(), Base::MatrixPy::staticCallback_getA34(), Base::MatrixPy::staticCallback_getA41(), Base::MatrixPy::staticCallback_getA42(), Base::MatrixPy::staticCallback_getA43(), Base::MatrixPy::staticCallback_getA44(), Gui::DocumentPy::staticCallback_getActiveObject(), App::DocumentPy::staticCallback_getActiveObject(), Gui::DocumentPy::staticCallback_getActiveView(), Base::BaseClassPy::staticCallback_getAllDerivedFrom(), App::MaterialPy::staticCallback_getAmbientColor(), Base::VectorPy::staticCallback_getAngle(), Base::RotationPy::staticCallback_getAngle(), Gui::ViewProviderPy::staticCallback_getAnnotation(), Part::ConePy::staticCallback_getApex(), Part::ToroidPy::staticCallback_getArea(), Part::TopoShapePy::staticCallback_getArea(), Part::SpherePy::staticCallback_getArea(), Mesh::MeshPy::staticCallback_getArea(), Part::ToroidPy::staticCallback_getAxis(), Part::SpherePy::staticCallback_getAxis(), Base::RotationPy::staticCallback_getAxis(), Part::PlanePy::staticCallback_getAxis(), Part::ParabolaPy::staticCallback_getAxis(), Part::HyperbolaPy::staticCallback_getAxis(), Part::EllipsePy::staticCallback_getAxis(), Part::CylinderPy::staticCallback_getAxis(), Part::ConePy::staticCallback_getAxis(), Part::CirclePy::staticCallback_getAxis(), Part::ArcOfCirclePy::staticCallback_getAxis(), Robot::Robot6AxisPy::staticCallback_getAxis1(), Robot::Robot6AxisPy::staticCallback_getAxis2(), Robot::Robot6AxisPy::staticCallback_getAxis3(), Robot::Robot6AxisPy::staticCallback_getAxis4(), Robot::Robot6AxisPy::staticCallback_getAxis5(), Robot::Robot6AxisPy::staticCallback_getAxis6(), Part::TopoShapeShellPy::staticCallback_getBadEdges(), Robot::WaypointPy::staticCallback_getBase(), Robot::Robot6AxisPy::staticCallback_getBase(), Base::PlacementPy::staticCallback_getBase(), Part::SurfaceOfRevolutionPy::staticCallback_getBasisCurve(), Part::SurfaceOfExtrusionPy::staticCallback_getBasisCurve(), Part::OffsetCurvePy::staticCallback_getBasisCurve(), Part::OffsetSurfacePy::staticCallback_getBasisSurface(), Mesh::MeshPointPy::staticCallback_getBound(), Mesh::FacetPy::staticCallback_getBound(), Data::ComplexGeoDataPy::staticCallback_getBoundBox(), Part::ToroidPy::staticCallback_getCenter(), Part::SpherePy::staticCallback_getCenter(), Part::EllipsePy::staticCallback_getCenter(), Part::CylinderPy::staticCallback_getCenter(), Part::ConePy::staticCallback_getCenter(), Part::CirclePy::staticCallback_getCenter(), Base::BoundBoxPy::staticCallback_getCenter(), Part::ArcOfCirclePy::staticCallback_getCenter(), Part::TopoShapeWirePy::staticCallback_getCenterOfMass(), Part::TopoShapeSolidPy::staticCallback_getCenterOfMass(), Part::TopoShapeFacePy::staticCallback_getCenterOfMass(), Part::TopoShapeEdgePy::staticCallback_getCenterOfMass(), Part::ArcOfCirclePy::staticCallback_getCircle(), Part::TopoShapeEdgePy::staticCallback_getClosed(), Part::TopoShapePy::staticCallback_getCompounds(), Part::TopoShapePy::staticCallback_getCompSolids(), Sketcher::SketchPy::staticCallback_getConstraint(), Sketcher::SketchObjectPy::staticCallback_getConstraintCount(), Sketcher::SketchPy::staticCallback_getConstraints(), Part::GeometryPy::staticCallback_getConstruction(), Robot::WaypointPy::staticCallback_getCont(), Base::PersistencePy::staticCallback_getContent(), Mesh::MeshPy::staticCallback_getCountFacets(), Points::PointsPy::staticCallback_getCountPoints(), Mesh::MeshPy::staticCallback_getCountPoints(), Part::TopoShapeEdgePy::staticCallback_getCurve(), Part::TopoShapeEdgePy::staticCallback_getDegenerated(), Part::BSplineCurvePy::staticCallback_getDegree(), Part::BezierCurvePy::staticCallback_getDegree(), App::DocumentPy::staticCallback_getDependencyGraph(), Base::BoundBoxPy::staticCallback_getDiagonalLength(), App::MaterialPy::staticCallback_getDiffuseColor(), Part::SurfaceOfRevolutionPy::staticCallback_getDirection(), Part::SurfaceOfExtrusionPy::staticCallback_getDirection(), Gui::SelectionObjectPy::staticCallback_getDocument(), Gui::DocumentPy::staticCallback_getDocument(), App::DocumentObjectPy::staticCallback_getDocument(), App::PropertyContainerPy::staticCallback_getDocumentationOfProperty(), Gui::SelectionObjectPy::staticCallback_getDocumentName(), Robot::TrajectoryPy::staticCallback_getDuration(), Part::ParabolaPy::staticCallback_getEccentricity(), Part::HyperbolaPy::staticCallback_getEccentricity(), Part::EllipsePy::staticCallback_getEccentricity(), Fem::FemMeshPy::staticCallback_getEdgeCount(), Part::TopoShapePy::staticCallback_getEdges(), App::MaterialPy::staticCallback_getEmissiveColor(), Part::LinePy::staticCallback_getEndPoint(), Part::BSplineCurvePy::staticCallback_getEndPoint(), Part::BezierCurvePy::staticCallback_getEndPoint(), Part::TopoShapePy::staticCallback_getFaces(), Fem::FemMeshPy::staticCallback_getFacesCount(), Mesh::MeshPy::staticCallback_getFacets(), Mesh::MeshPy::staticCallback_getFacetSelection(), Sketcher::ConstraintPy::staticCallback_getFirst(), Part::GeometryCurvePy::staticCallback_getFirstParameter(), Part::BSplineSurfacePy::staticCallback_getFirstUKnotIndex(), Part::BSplineCurvePy::staticCallback_getFirstUKnotIndex(), Part::BSplineSurfacePy::staticCallback_getFirstVKnotIndex(), Part::ParabolaPy::staticCallback_getFocal(), Part::HyperbolaPy::staticCallback_getFocal(), Part::EllipsePy::staticCallback_getFocal(), Part::ParabolaPy::staticCallback_getFocus(), Part::HyperbolaPy::staticCallback_getFocus1(), Part::EllipsePy::staticCallback_getFocus1(), Part::HyperbolaPy::staticCallback_getFocus2(), Part::EllipsePy::staticCallback_getFocus2(), Part::TopoShapeShellPy::staticCallback_getFreeEdges(), Gui::SelectionObjectPy::staticCallback_getFullName(), Sketcher::SketchPy::staticCallback_getGeometries(), Sketcher::SketchObjectPy::staticCallback_getGeometryCount(), Fem::FemMeshPy::staticCallback_getGroupCount(), App::PropertyContainerPy::staticCallback_getGroupOfProperty(), Gui::SelectionObjectPy::staticCallback_getHasSubObjects(), Fem::FemMeshPy::staticCallback_getHexaCount(), Mesh::MeshPointPy::staticCallback_getIndex(), Mesh::FacetPy::staticCallback_getIndex(), Part::LinePy::staticCallback_getInfinite(), App::DocumentObjectPy::staticCallback_getInList(), Base::BoundBoxPy::staticCallback_getIntersectionPoint(), Gui::ViewProviderPy::staticCallback_getIV(), Part::BSplineCurvePy::staticCallback_getKnot(), Part::BSplineCurvePy::staticCallback_getKnots(), Part::BSplineCurvePy::staticCallback_getKnotSequence(), Part::GeometryCurvePy::staticCallback_getLastParameter(), Part::BSplineSurfacePy::staticCallback_getLastUKnotIndex(), Part::BSplineCurvePy::staticCallback_getLastUKnotIndex(), Part::BSplineSurfacePy::staticCallback_getLastVKnotIndex(), Base::VectorPy::staticCallback_getLength(), Robot::TrajectoryPy::staticCallback_getLength(), Part::TopoShapePy::staticCallback_getLength(), Part::TopoShapeEdgePy::staticCallback_getLength(), Part::SurfaceOfRevolutionPy::staticCallback_getLocation(), Part::ParabolaPy::staticCallback_getLocation(), Part::HyperbolaPy::staticCallback_getLocation(), Part::ToroidPy::staticCallback_getMajorRadius(), Part::HyperbolaPy::staticCallback_getMajorRadius(), Part::EllipsePy::staticCallback_getMajorRadius(), Data::ComplexGeoDataPy::staticCallback_getMatrix(), Part::BSplineSurfacePy::staticCallback_getMaxDegree(), Part::BSplineCurvePy::staticCallback_getMaxDegree(), Part::BezierSurfacePy::staticCallback_getMaxDegree(), Part::BezierCurvePy::staticCallback_getMaxDegree(), Base::PersistencePy::staticCallback_getMemSize(), Part::ToroidPy::staticCallback_getMinorRadius(), Part::HyperbolaPy::staticCallback_getMinorRadius(), Part::EllipsePy::staticCallback_getMinorRadius(), Base::BaseClassPy::staticCallback_getModule(), Part::BSplineCurvePy::staticCallback_getMultiplicities(), Part::BSplineCurvePy::staticCallback_getMultiplicity(), Robot::WaypointPy::staticCallback_getName(), App::DocumentPy::staticCallback_getName(), App::DocumentObjectPy::staticCallback_getName(), Part::BSplineCurvePy::staticCallback_getNbKnots(), Part::BSplineCurvePy::staticCallback_getNbPoles(), Part::BezierCurvePy::staticCallback_getNbPoles(), Part::BSplineSurfacePy::staticCallback_getNbUKnots(), Part::BSplineSurfacePy::staticCallback_getNbUPoles(), Part::BezierSurfacePy::staticCallback_getNbUPoles(), Part::BSplineSurfacePy::staticCallback_getNbVKnots(), Part::BSplineSurfacePy::staticCallback_getNbVPoles(), Part::BezierSurfacePy::staticCallback_getNbVPoles(), Fem::FemMeshPy::staticCallback_getNodeCount(), Mesh::MeshPointPy::staticCallback_getNormal(), Mesh::FacetPy::staticCallback_getNormal(), Gui::ViewProviderDocumentObjectPy::staticCallback_getObject(), Gui::SelectionObjectPy::staticCallback_getObject(), Gui::DocumentPy::staticCallback_getObject(), App::DocumentPy::staticCallback_getObject(), App::DocumentObjectGroupPy::staticCallback_getObject(), Gui::SelectionObjectPy::staticCallback_getObjectName(), App::DocumentPy::staticCallback_getObjects(), App::DocumentPy::staticCallback_getObjectsByLabel(), Part::OffsetCurvePy::staticCallback_getOffsetDirection(), Part::OffsetSurfacePy::staticCallback_getOffsetValue(), Part::OffsetCurvePy::staticCallback_getOffsetValue(), Part::TopoShapePy::staticCallback_getOrientation(), Part::TopoShapeSolidPy::staticCallback_getOuterShell(), App::DocumentObjectPy::staticCallback_getOutList(), Part::ParabolaPy::staticCallback_getParameter(), Part::HyperbolaPy::staticCallback_getParameter(), Part::TopoShapeFacePy::staticCallback_getParameterRange(), Part::TopoShapeEdgePy::staticCallback_getParameterRange(), Data::ComplexGeoDataPy::staticCallback_getPlacement(), Mesh::MeshPy::staticCallback_getPlanes(), Part::TopoShapeVertexPy::staticCallback_getPoint(), Points::PointsPy::staticCallback_getPoints(), Mesh::MeshPy::staticCallback_getPoints(), Mesh::FacetPy::staticCallback_getPoints(), Mesh::MeshPy::staticCallback_getPointSelection(), Part::BSplineSurfacePy::staticCallback_getPole(), Part::BSplineCurvePy::staticCallback_getPole(), Part::BezierSurfacePy::staticCallback_getPole(), Part::BezierCurvePy::staticCallback_getPole(), Part::BSplineSurfacePy::staticCallback_getPoles(), Part::BSplineCurvePy::staticCallback_getPoles(), Part::BezierSurfacePy::staticCallback_getPoles(), Part::BezierCurvePy::staticCallback_getPoles(), Fem::FemMeshPy::staticCallback_getPolygonCount(), Fem::FemMeshPy::staticCallback_getPolyhedronCount(), Robot::WaypointPy::staticCallback_getPos(), Part::PlanePy::staticCallback_getPosition(), Fem::FemMeshPy::staticCallback_getPrismCount(), App::PropertyContainerPy::staticCallback_getPropertiesList(), App::PropertyContainerPy::staticCallback_getPropertyByName(), Fem::FemMeshPy::staticCallback_getPyramidCount(), Base::RotationPy::staticCallback_getQ(), Fem::FemMeshPy::staticCallback_getQuadrangleCount(), Part::SpherePy::staticCallback_getRadius(), Part::CylinderPy::staticCallback_getRadius(), Part::ConePy::staticCallback_getRadius(), Part::CirclePy::staticCallback_getRadius(), Part::ArcOfCirclePy::staticCallback_getRadius(), App::DocumentPy::staticCallback_getRedoCount(), App::DocumentPy::staticCallback_getRedoNames(), Part::BSplineSurfacePy::staticCallback_getResolution(), Part::BSplineCurvePy::staticCallback_getResolution(), Part::BezierSurfacePy::staticCallback_getResolution(), Part::BezierCurvePy::staticCallback_getResolution(), Robot::RobotObjectPy::staticCallback_getRobot(), Gui::ViewProviderPy::staticCallback_getRootNode(), Base::PlacementPy::staticCallback_getRotation(), Sketcher::ConstraintPy::staticCallback_getSecond(), Mesh::MeshPy::staticCallback_getSegment(), Part::ConePy::staticCallback_getSemiAngle(), Mesh::MeshPy::staticCallback_getSeparateComponents(), Sketcher::SketchPy::staticCallback_getShape(), Part::TopoShapePy::staticCallback_getShapeType(), Part::TopoShapePy::staticCallback_getShells(), App::MaterialPy::staticCallback_getShininess(), Part::TopoShapePy::staticCallback_getSolids(), App::MaterialPy::staticCallback_getSpecularColor(), Part::LinePy::staticCallback_getStartPoint(), Part::BSplineCurvePy::staticCallback_getStartPoint(), Part::BezierCurvePy::staticCallback_getStartPoint(), App::DocumentObjectPy::staticCallback_getState(), Gui::SelectionObjectPy::staticCallback_getSubElementNames(), Fem::FemMeshPy::staticCallback_getSubMeshCount(), Gui::SelectionObjectPy::staticCallback_getSubObjects(), Part::TopoShapeFacePy::staticCallback_getSurface(), Robot::Robot6AxisPy::staticCallback_getTcp(), App::DocumentPy::staticCallback_getTempFileName(), Fem::FemMeshPy::staticCallback_getTetraCount(), Robot::WaypointPy::staticCallback_getTool(), Mesh::MeshPy::staticCallback_getTopology(), App::MaterialPy::staticCallback_getTransparency(), Fem::FemMeshPy::staticCallback_getTriangleCount(), Robot::WaypointPy::staticCallback_getType(), Base::BaseClassPy::staticCallback_getType(), App::PropertyContainerPy::staticCallback_getTypeOfProperty(), Part::BSplineSurfacePy::staticCallback_getUDegree(), Part::BezierSurfacePy::staticCallback_getUDegree(), Part::BSplineSurfacePy::staticCallback_getUKnot(), Part::BSplineSurfacePy::staticCallback_getUKnots(), Part::BSplineSurfacePy::staticCallback_getUKnotSequence(), Part::BSplineSurfacePy::staticCallback_getUMultiplicities(), Part::BSplineSurfacePy::staticCallback_getUMultiplicity(), App::DocumentPy::staticCallback_getUndoCount(), App::DocumentPy::staticCallback_getUndoMode(), App::DocumentPy::staticCallback_getUndoNames(), App::DocumentPy::staticCallback_getUndoRedoMemSize(), Part::BSplineSurfacePy::staticCallback_getVDegree(), Part::BezierSurfacePy::staticCallback_getVDegree(), Mesh::MeshPointPy::staticCallback_getVector(), Robot::WaypointPy::staticCallback_getVelocity(), Part::TopoShapePy::staticCallback_getVertexes(), App::DocumentObjectPy::staticCallback_getViewObject(), Part::BSplineSurfacePy::staticCallback_getVKnot(), Part::BSplineSurfacePy::staticCallback_getVKnots(), Part::BSplineSurfacePy::staticCallback_getVKnotSequence(), Part::BSplineSurfacePy::staticCallback_getVMultiplicities(), Part::BSplineSurfacePy::staticCallback_getVMultiplicity(), Part::ToroidPy::staticCallback_getVolume(), Part::TopoShapePy::staticCallback_getVolume(), Part::SpherePy::staticCallback_getVolume(), Mesh::MeshPy::staticCallback_getVolume(), Fem::FemMeshPy::staticCallback_getVolumeCount(), Robot::TrajectoryPy::staticCallback_getWaypoints(), Part::BSplineSurfacePy::staticCallback_getWeight(), Part::BSplineCurvePy::staticCallback_getWeight(), Part::BezierSurfacePy::staticCallback_getWeight(), Part::BezierCurvePy::staticCallback_getWeight(), Part::BSplineSurfacePy::staticCallback_getWeights(), Part::BSplineCurvePy::staticCallback_getWeights(), Part::BezierSurfacePy::staticCallback_getWeights(), Part::BezierCurvePy::staticCallback_getWeights(), Part::TopoShapeFacePy::staticCallback_getWire(), Part::TopoShapePy::staticCallback_getWires(), Base::VectorPy::staticCallback_getx(), Part::TopoShapeVertexPy::staticCallback_getX(), Mesh::MeshPointPy::staticCallback_getx(), Base::BoundBoxPy::staticCallback_getXLength(), Base::BoundBoxPy::staticCallback_getXMax(), Base::BoundBoxPy::staticCallback_getXMin(), Base::VectorPy::staticCallback_gety(), Part::TopoShapeVertexPy::staticCallback_getY(), Mesh::MeshPointPy::staticCallback_gety(), Base::BoundBoxPy::staticCallback_getYLength(), Base::BoundBoxPy::staticCallback_getYMax(), Base::BoundBoxPy::staticCallback_getYMin(), Base::VectorPy::staticCallback_getz(), Part::TopoShapeVertexPy::staticCallback_getZ(), Mesh::MeshPointPy::staticCallback_getz(), Base::BoundBoxPy::staticCallback_getZLength(), Base::BoundBoxPy::staticCallback_getZMax(), Base::BoundBoxPy::staticCallback_getZMin(), Mesh::MeshPy::staticCallback_harmonizeNormals(), Mesh::MeshFeaturePy::staticCallback_harmonizeNormals(), Part::TopoShapePy::staticCallback_hashCode(), Mesh::MeshPy::staticCallback_hasNonManifolds(), Mesh::MeshPy::staticCallback_hasNonUniformOrientedFacets(), App::DocumentObjectGroupPy::staticCallback_hasObject(), Mesh::MeshPy::staticCallback_hasSelfIntersections(), Gui::ViewProviderPy::staticCallback_hide(), Gui::DocumentPy::staticCallback_hide(), Part::BezierSurfacePy::staticCallback_increase(), Part::BezierCurvePy::staticCallback_increase(), Part::BSplineSurfacePy::staticCallback_increaseDegree(), Part::BSplineCurvePy::staticCallback_increaseDegree(), Part::BSplineCurvePy::staticCallback_increaseMultiplicity(), Part::BSplineSurfacePy::staticCallback_increaseUMultiplicity(), Part::BSplineSurfacePy::staticCallback_increaseVMultiplicity(), Part::BSplineCurvePy::staticCallback_incrementMultiplicity(), Part::BSplineSurfacePy::staticCallback_incrementUMultiplicity(), Part::BSplineSurfacePy::staticCallback_incrementVMultiplicity(), Mesh::MeshPy::staticCallback_inner(), Part::BSplineCurvePy::staticCallback_insertKnot(), Part::BSplineCurvePy::staticCallback_insertKnots(), Part::BezierCurvePy::staticCallback_insertPoleAfter(), Part::BezierCurvePy::staticCallback_insertPoleBefore(), Part::BezierSurfacePy::staticCallback_insertPoleColAfter(), Part::BezierSurfacePy::staticCallback_insertPoleColBefore(), Part::BezierSurfacePy::staticCallback_insertPoleRowAfter(), Part::BezierSurfacePy::staticCallback_insertPoleRowBefore(), Part::BSplineSurfacePy::staticCallback_insertUKnot(), Part::BSplineSurfacePy::staticCallback_insertUKnots(), Mesh::MeshPy::staticCallback_insertVertex(), Part::BSplineSurfacePy::staticCallback_insertVKnot(), Part::BSplineSurfacePy::staticCallback_insertVKnots(), Robot::TrajectoryPy::staticCallback_insertWaypoints(), Part::BSplineCurvePy::staticCallback_interpolate(), Mesh::MeshPy::staticCallback_intersect(), Mesh::FacetPy::staticCallback_intersect(), Base::PlacementPy::staticCallback_inverse(), Base::MatrixPy::staticCallback_inverse(), Base::RotationPy::staticCallback_invert(), Base::MatrixPy::staticCallback_invert(), Gui::SelectionObjectPy::staticCallback_isA(), Part::TopoShapePy::staticCallback_isClosed(), Part::BSplineCurvePy::staticCallback_isClosed(), Part::BezierCurvePy::staticCallback_isClosed(), Base::BoundBoxPy::staticCallback_isCutPlane(), Base::BaseClassPy::staticCallback_isDerivedFrom(), Gui::ViewProviderPy::staticCallback_isEditing(), Part::TopoShapePy::staticCallback_isEqual(), Part::TopoShapePy::staticCallback_isInside(), Base::BoundBoxPy::staticCallback_isInside(), Base::BoundBoxPy::staticCallback_isIntersection(), Part::TopoShapePy::staticCallback_isNull(), Part::TopoShapeFacePy::staticCallback_isPartOfDomain(), Part::BSplineCurvePy::staticCallback_isPeriodic(), Part::BezierCurvePy::staticCallback_isPeriodic(), Part::BSplineCurvePy::staticCallback_isRational(), Part::BezierCurvePy::staticCallback_isRational(), Part::TopoShapePy::staticCallback_isSame(), Mesh::MeshPy::staticCallback_isSolid(), Part::GeometrySurfacePy::staticCallback_isUClosed(), Part::BSplineSurfacePy::staticCallback_isUClosed(), Part::BezierSurfacePy::staticCallback_isUClosed(), Part::GeometrySurfacePy::staticCallback_isUPeriodic(), Part::BSplineSurfacePy::staticCallback_isUPeriodic(), Part::BezierSurfacePy::staticCallback_isUPeriodic(), Part::BSplineSurfacePy::staticCallback_isURational(), Part::BezierSurfacePy::staticCallback_isURational(), Part::TopoShapePy::staticCallback_isValid(), Part::GeometrySurfacePy::staticCallback_isVClosed(), Part::BSplineSurfacePy::staticCallback_isVClosed(), Part::BezierSurfacePy::staticCallback_isVClosed(), Gui::ViewProviderPy::staticCallback_isVisible(), Part::GeometrySurfacePy::staticCallback_isVPeriodic(), Part::BSplineSurfacePy::staticCallback_isVPeriodic(), Part::BezierSurfacePy::staticCallback_isVPeriodic(), Part::BSplineSurfacePy::staticCallback_isVRational(), Part::BezierSurfacePy::staticCallback_isVRational(), Part::BSplineCurvePy::staticCallback_join(), Gui::PythonWorkbenchPy::staticCallback_ListCommandbars(), Gui::PythonWorkbenchPy::staticCallback_listCommandbars(), Gui::ViewProviderPy::staticCallback_listDisplayModes(), Gui::PythonWorkbenchPy::staticCallback_ListMenus(), Gui::PythonWorkbenchPy::staticCallback_listMenus(), Gui::PythonWorkbenchPy::staticCallback_ListToolbars(), Gui::PythonWorkbenchPy::staticCallback_listToolbars(), Part::BSplineCurvePy::staticCallback_makeC1Continuous(), Part::TopoShapePy::staticCallback_makeChamfer(), Part::TopoShapePy::staticCallback_makeFillet(), Part::TopoShapeShellPy::staticCallback_makeHalfSpace(), Part::TopoShapeFacePy::staticCallback_makeHalfSpace(), Part::TopoShapeWirePy::staticCallback_makeHomogenousWires(), Part::TopoShapeWirePy::staticCallback_makeOffset(), Part::TopoShapeFacePy::staticCallback_makeOffset(), Part::TopoShapePy::staticCallback_makeOffsetShape(), Part::TopoShapeWirePy::staticCallback_makePipe(), Part::TopoShapeWirePy::staticCallback_makePipeShell(), Part::GeometryCurvePy::staticCallback_makeRuledSurface(), Part::TopoShapePy::staticCallback_makeShapeFromMesh(), Part::TopoShapePy::staticCallback_makeThickness(), Mesh::MeshPy::staticCallback_meshFromSegment(), Part::TopoShapePy::staticCallback_mirror(), Part::GeometryPy::staticCallback_mirror(), Base::PlacementPy::staticCallback_move(), Mesh::MeshPointPy::staticCallback_move(), Base::MatrixPy::staticCallback_move(), Base::BoundBoxPy::staticCallback_move(), App::DocumentPy::staticCallback_moveObject(), Sketcher::SketchPy::staticCallback_movePoint(), Sketcher::SketchObjectPy::staticCallback_movePoint(), Part::BSplineSurfacePy::staticCallback_movePoint(), Part::BSplineCurvePy::staticCallback_movePoint(), Base::VectorPy::staticCallback_multiply(), Base::RotationPy::staticCallback_multiply(), Base::PlacementPy::staticCallback_multiply(), Base::MatrixPy::staticCallback_multiply(), Base::RotationPy::staticCallback_multVec(), Base::PlacementPy::staticCallback_multVec(), Gui::WorkbenchPy::staticCallback_name(), Mesh::MeshPy::staticCallback_nearestFacetOnRay(), App::DocumentObjectGroupPy::staticCallback_newObject(), Part::TopoShapeFacePy::staticCallback_normalAt(), Part::TopoShapeEdgePy::staticCallback_normalAt(), Base::VectorPy::staticCallback_normalize(), Part::TopoShapePy::staticCallback_nullify(), Mesh::MeshPy::staticCallback_offset(), Mesh::MeshPy::staticCallback_offsetSpecial(), Part::TopoShapePy::staticCallback_oldFuse(), App::DocumentPy::staticCallback_openTransaction(), Mesh::MeshPy::staticCallback_optimizeEdges(), Mesh::MeshPy::staticCallback_optimizeTopology(), Mesh::MeshPy::staticCallback_outer(), Part::GeometrySurfacePy::staticCallback_parameter(), Part::GeometryCurvePy::staticCallback_parameter(), Robot::TrajectoryPy::staticCallback_position(), Mesh::MeshPy::staticCallback_printInfo(), Part::TopoShapePy::staticCallback_project(), Base::VectorPy::staticCallback_projectToLine(), Base::VectorPy::staticCallback_projectToPlane(), App::DocumentObjectPy::staticCallback_purgeTouched(), Part::TopoShapePy::staticCallback_read(), Points::PointsPy::staticCallback_read(), Mesh::MeshPy::staticCallback_read(), Fem::FemMeshPy::staticCallback_read(), App::DocumentPy::staticCallback_recompute(), App::DocumentPy::staticCallback_redo(), Mesh::MeshPy::staticCallback_refine(), Gui::SelectionObjectPy::staticCallback_remove(), Gui::PythonWorkbenchPy::staticCallback_RemoveCommandbar(), Gui::PythonWorkbenchPy::staticCallback_removeCommandbar(), Mesh::MeshPy::staticCallback_removeComponents(), Gui::PythonWorkbenchPy::staticCallback_RemoveContextMenu(), Gui::PythonWorkbenchPy::staticCallback_removeContextMenu(), Mesh::MeshPy::staticCallback_removeDuplicatedFacets(), Mesh::MeshFeaturePy::staticCallback_removeDuplicatedFacets(), Mesh::MeshPy::staticCallback_removeDuplicatedPoints(), Mesh::MeshFeaturePy::staticCallback_removeDuplicatedPoints(), Mesh::MeshPy::staticCallback_removeFacets(), Mesh::MeshPy::staticCallback_removeFoldsOnSurface(), Mesh::MeshFeaturePy::staticCallback_removeFoldsOnSurface(), Part::TopoShapePy::staticCallback_removeInternalWires(), Part::BSplineCurvePy::staticCallback_removeKnot(), Gui::PythonWorkbenchPy::staticCallback_RemoveMenu(), Gui::PythonWorkbenchPy::staticCallback_removeMenu(), Mesh::MeshPy::staticCallback_removeNonManifolds(), Mesh::MeshFeaturePy::staticCallback_removeNonManifolds(), App::DocumentPy::staticCallback_removeObject(), App::DocumentObjectGroupPy::staticCallback_removeObject(), App::DocumentObjectGroupPy::staticCallback_removeObjectsFromDocument(), Part::BezierCurvePy::staticCallback_removePole(), Part::BezierSurfacePy::staticCallback_removePoleCol(), Part::BezierSurfacePy::staticCallback_removePoleRow(), Part::TopoShapePy::staticCallback_removeShape(), Gui::PythonWorkbenchPy::staticCallback_RemoveToolbar(), Gui::PythonWorkbenchPy::staticCallback_removeToolbar(), Part::BSplineSurfacePy::staticCallback_removeUKnot(), Part::BSplineSurfacePy::staticCallback_removeVKnot(), Part::BSplineSurfacePy::staticCallback_reparametrize(), Part::TopoShapePy::staticCallback_replaceShape(), Gui::DocumentPy::staticCallback_resetEdit(), App::DocumentPy::staticCallback_restore(), Part::TopoShapePy::staticCallback_reverse(), Part::TopoShapePy::staticCallback_revolve(), Part::TopoShapePy::staticCallback_rotate(), Mesh::MeshPy::staticCallback_rotate(), Part::GeometryPy::staticCallback_rotate(), Base::MatrixPy::staticCallback_rotateX(), Base::MatrixPy::staticCallback_rotateY(), Base::MatrixPy::staticCallback_rotateZ(), App::DocumentPy::staticCallback_save(), Base::VectorPy::staticCallback_scale(), Part::TopoShapePy::staticCallback_scale(), Base::MatrixPy::staticCallback_scale(), Part::GeometryPy::staticCallback_scale(), Part::TopoShapePy::staticCallback_section(), Part::BSplineSurfacePy::staticCallback_segment(), Part::BSplineCurvePy::staticCallback_segment(), Part::BezierSurfacePy::staticCallback_segment(), Part::BezierCurvePy::staticCallback_segment(), App::MaterialPy::staticCallback_set(), Base::MatrixPy::staticCallback_setA(), Base::MatrixPy::staticCallback_setA11(), Base::MatrixPy::staticCallback_setA12(), Base::MatrixPy::staticCallback_setA13(), Base::MatrixPy::staticCallback_setA14(), Base::MatrixPy::staticCallback_setA21(), Base::MatrixPy::staticCallback_setA22(), Base::MatrixPy::staticCallback_setA23(), Base::MatrixPy::staticCallback_setA24(), Base::MatrixPy::staticCallback_setA31(), Base::MatrixPy::staticCallback_setA32(), Base::MatrixPy::staticCallback_setA33(), Base::MatrixPy::staticCallback_setA34(), Base::MatrixPy::staticCallback_setA41(), Base::MatrixPy::staticCallback_setA42(), Base::MatrixPy::staticCallback_setA43(), Base::MatrixPy::staticCallback_setA44(), Gui::DocumentPy::staticCallback_setActiveObject(), App::DocumentPy::staticCallback_setActiveObject(), Gui::DocumentPy::staticCallback_setActiveView(), App::MaterialPy::staticCallback_setAmbientColor(), Base::RotationPy::staticCallback_setAngle(), Gui::ViewProviderPy::staticCallback_setAnnotation(), Part::ConePy::staticCallback_setApex(), Part::ToroidPy::staticCallback_setArea(), Part::TopoShapePy::staticCallback_setArea(), Part::SpherePy::staticCallback_setArea(), Mesh::MeshPy::staticCallback_setArea(), Part::ToroidPy::staticCallback_setAxis(), Part::SpherePy::staticCallback_setAxis(), Base::RotationPy::staticCallback_setAxis(), Part::PlanePy::staticCallback_setAxis(), Part::ParabolaPy::staticCallback_setAxis(), Part::HyperbolaPy::staticCallback_setAxis(), Part::EllipsePy::staticCallback_setAxis(), Part::CylinderPy::staticCallback_setAxis(), Part::ConePy::staticCallback_setAxis(), Part::CirclePy::staticCallback_setAxis(), Part::ArcOfCirclePy::staticCallback_setAxis(), Robot::Robot6AxisPy::staticCallback_setAxis1(), Robot::Robot6AxisPy::staticCallback_setAxis2(), Robot::Robot6AxisPy::staticCallback_setAxis3(), Robot::Robot6AxisPy::staticCallback_setAxis4(), Robot::Robot6AxisPy::staticCallback_setAxis5(), Robot::Robot6AxisPy::staticCallback_setAxis6(), Robot::WaypointPy::staticCallback_setBase(), Robot::Robot6AxisPy::staticCallback_setBase(), Base::PlacementPy::staticCallback_setBase(), Part::SurfaceOfRevolutionPy::staticCallback_setBasisCurve(), Part::SurfaceOfExtrusionPy::staticCallback_setBasisCurve(), Part::OffsetCurvePy::staticCallback_setBasisCurve(), Part::OffsetSurfacePy::staticCallback_setBasisSurface(), Mesh::MeshPointPy::staticCallback_setBound(), Mesh::FacetPy::staticCallback_setBound(), Data::ComplexGeoDataPy::staticCallback_setBoundBox(), Part::ToroidPy::staticCallback_setCenter(), Part::SpherePy::staticCallback_setCenter(), Part::EllipsePy::staticCallback_setCenter(), Part::CylinderPy::staticCallback_setCenter(), Part::ConePy::staticCallback_setCenter(), Part::CirclePy::staticCallback_setCenter(), Base::BoundBoxPy::staticCallback_setCenter(), Part::ArcOfCirclePy::staticCallback_setCenter(), Part::TopoShapeWirePy::staticCallback_setCenterOfMass(), Part::TopoShapeSolidPy::staticCallback_setCenterOfMass(), Part::TopoShapeFacePy::staticCallback_setCenterOfMass(), Part::TopoShapeEdgePy::staticCallback_setCenterOfMass(), Part::ArcOfCirclePy::staticCallback_setCircle(), Part::TopoShapeEdgePy::staticCallback_setClosed(), Part::TopoShapePy::staticCallback_setCompounds(), Part::TopoShapePy::staticCallback_setCompSolids(), Sketcher::SketchPy::staticCallback_setConstraint(), Sketcher::SketchObjectPy::staticCallback_setConstraintCount(), Sketcher::SketchPy::staticCallback_setConstraints(), Part::GeometryPy::staticCallback_setConstruction(), Robot::WaypointPy::staticCallback_setCont(), Base::PersistencePy::staticCallback_setContent(), Mesh::MeshPy::staticCallback_setCountFacets(), Points::PointsPy::staticCallback_setCountPoints(), Mesh::MeshPy::staticCallback_setCountPoints(), Part::TopoShapeEdgePy::staticCallback_setCurve(), Sketcher::SketchObjectPy::staticCallback_setDatum(), Part::TopoShapeEdgePy::staticCallback_setDegenerated(), Part::BSplineCurvePy::staticCallback_setDegree(), Part::BezierCurvePy::staticCallback_setDegree(), App::DocumentPy::staticCallback_setDependencyGraph(), Base::BoundBoxPy::staticCallback_setDiagonalLength(), App::MaterialPy::staticCallback_setDiffuseColor(), Part::SurfaceOfRevolutionPy::staticCallback_setDirection(), Part::SurfaceOfExtrusionPy::staticCallback_setDirection(), Gui::SelectionObjectPy::staticCallback_setDocument(), Gui::DocumentPy::staticCallback_setDocument(), App::DocumentObjectPy::staticCallback_setDocument(), Gui::SelectionObjectPy::staticCallback_setDocumentName(), Robot::TrajectoryPy::staticCallback_setDuration(), Part::ParabolaPy::staticCallback_setEccentricity(), Part::HyperbolaPy::staticCallback_setEccentricity(), Part::EllipsePy::staticCallback_setEccentricity(), Fem::FemMeshPy::staticCallback_setEdgeCount(), Part::TopoShapePy::staticCallback_setEdges(), Gui::DocumentPy::staticCallback_setEdit(), App::MaterialPy::staticCallback_setEmissiveColor(), Part::LinePy::staticCallback_setEndPoint(), Part::BSplineCurvePy::staticCallback_setEndPoint(), Part::BezierCurvePy::staticCallback_setEndPoint(), Part::TopoShapePy::staticCallback_setFaces(), Fem::FemMeshPy::staticCallback_setFacesCount(), Mesh::MeshPy::staticCallback_setFacets(), Sketcher::ConstraintPy::staticCallback_setFirst(), Part::GeometryCurvePy::staticCallback_setFirstParameter(), Part::BSplineSurfacePy::staticCallback_setFirstUKnotIndex(), Part::BSplineCurvePy::staticCallback_setFirstUKnotIndex(), Part::BSplineSurfacePy::staticCallback_setFirstVKnotIndex(), Part::ParabolaPy::staticCallback_setFocal(), Part::HyperbolaPy::staticCallback_setFocal(), Part::EllipsePy::staticCallback_setFocal(), Part::ParabolaPy::staticCallback_setFocus(), Part::HyperbolaPy::staticCallback_setFocus1(), Part::EllipsePy::staticCallback_setFocus1(), Part::HyperbolaPy::staticCallback_setFocus2(), Part::EllipsePy::staticCallback_setFocus2(), Gui::SelectionObjectPy::staticCallback_setFullName(), Sketcher::SketchPy::staticCallback_setGeometries(), Sketcher::SketchObjectPy::staticCallback_setGeometryCount(), Fem::FemMeshPy::staticCallback_setGroupCount(), Gui::SelectionObjectPy::staticCallback_setHasSubObjects(), Fem::FemMeshPy::staticCallback_setHexaCount(), Mesh::MeshPointPy::staticCallback_setIndex(), Mesh::FacetPy::staticCallback_setIndex(), Part::LinePy::staticCallback_setInfinite(), App::DocumentObjectPy::staticCallback_setInList(), Gui::ViewProviderPy::staticCallback_setIV(), Part::BSplineCurvePy::staticCallback_setKnot(), Part::BSplineCurvePy::staticCallback_setKnots(), Part::BSplineCurvePy::staticCallback_setKnotSequence(), Part::GeometryCurvePy::staticCallback_setLastParameter(), Part::BSplineSurfacePy::staticCallback_setLastUKnotIndex(), Part::BSplineCurvePy::staticCallback_setLastUKnotIndex(), Part::BSplineSurfacePy::staticCallback_setLastVKnotIndex(), Base::VectorPy::staticCallback_setLength(), Robot::TrajectoryPy::staticCallback_setLength(), Part::TopoShapePy::staticCallback_setLength(), Part::TopoShapeEdgePy::staticCallback_setLength(), Part::SurfaceOfRevolutionPy::staticCallback_setLocation(), Part::ParabolaPy::staticCallback_setLocation(), Part::HyperbolaPy::staticCallback_setLocation(), Part::ToroidPy::staticCallback_setMajorRadius(), Part::HyperbolaPy::staticCallback_setMajorRadius(), Part::EllipsePy::staticCallback_setMajorRadius(), Data::ComplexGeoDataPy::staticCallback_setMatrix(), Part::BSplineSurfacePy::staticCallback_setMaxDegree(), Part::BSplineCurvePy::staticCallback_setMaxDegree(), Part::BezierSurfacePy::staticCallback_setMaxDegree(), Part::BezierCurvePy::staticCallback_setMaxDegree(), Base::PersistencePy::staticCallback_setMemSize(), Part::ToroidPy::staticCallback_setMinorRadius(), Part::HyperbolaPy::staticCallback_setMinorRadius(), Part::EllipsePy::staticCallback_setMinorRadius(), Base::BaseClassPy::staticCallback_setModule(), Robot::WaypointPy::staticCallback_setName(), App::DocumentPy::staticCallback_setName(), App::DocumentObjectPy::staticCallback_setName(), Part::BSplineCurvePy::staticCallback_setNbKnots(), Part::BSplineCurvePy::staticCallback_setNbPoles(), Part::BezierCurvePy::staticCallback_setNbPoles(), Part::BSplineSurfacePy::staticCallback_setNbUKnots(), Part::BSplineSurfacePy::staticCallback_setNbUPoles(), Part::BezierSurfacePy::staticCallback_setNbUPoles(), Part::BSplineSurfacePy::staticCallback_setNbVKnots(), Part::BSplineSurfacePy::staticCallback_setNbVPoles(), Part::BezierSurfacePy::staticCallback_setNbVPoles(), Fem::FemMeshPy::staticCallback_setNodeCount(), Mesh::MeshPointPy::staticCallback_setNormal(), Mesh::FacetPy::staticCallback_setNormal(), Part::BSplineCurvePy::staticCallback_setNotPeriodic(), Gui::ViewProviderDocumentObjectPy::staticCallback_setObject(), Gui::SelectionObjectPy::staticCallback_setObject(), Gui::SelectionObjectPy::staticCallback_setObjectName(), App::DocumentPy::staticCallback_setObjects(), Part::OffsetCurvePy::staticCallback_setOffsetDirection(), Part::OffsetSurfacePy::staticCallback_setOffsetValue(), Part::OffsetCurvePy::staticCallback_setOffsetValue(), Part::TopoShapePy::staticCallback_setOrientation(), Part::BSplineCurvePy::staticCallback_setOrigin(), Part::TopoShapeSolidPy::staticCallback_setOuterShell(), App::DocumentObjectPy::staticCallback_setOutList(), Part::ParabolaPy::staticCallback_setParameter(), Part::HyperbolaPy::staticCallback_setParameter(), Part::TopoShapeFacePy::staticCallback_setParameterRange(), Part::TopoShapeEdgePy::staticCallback_setParameterRange(), Part::LinePy::staticCallback_setParameterRange(), Part::BSplineCurvePy::staticCallback_setPeriodic(), Data::ComplexGeoDataPy::staticCallback_setPlacement(), Part::TopoShapeVertexPy::staticCallback_setPoint(), Mesh::MeshPy::staticCallback_setPoint(), Points::PointsPy::staticCallback_setPoints(), Mesh::MeshPy::staticCallback_setPoints(), Mesh::FacetPy::staticCallback_setPoints(), Part::BSplineSurfacePy::staticCallback_setPole(), Part::BSplineCurvePy::staticCallback_setPole(), Part::BezierSurfacePy::staticCallback_setPole(), Part::BezierCurvePy::staticCallback_setPole(), Part::BSplineSurfacePy::staticCallback_setPoleCol(), Part::BezierSurfacePy::staticCallback_setPoleCol(), Part::BSplineSurfacePy::staticCallback_setPoleRow(), Part::BezierSurfacePy::staticCallback_setPoleRow(), Part::BezierCurvePy::staticCallback_setPoles(), Fem::FemMeshPy::staticCallback_setPolygonCount(), Fem::FemMeshPy::staticCallback_setPolyhedronCount(), Robot::WaypointPy::staticCallback_setPos(), Gui::DocumentPy::staticCallback_setPos(), Part::PlanePy::staticCallback_setPosition(), Fem::FemMeshPy::staticCallback_setPrismCount(), App::PropertyContainerPy::staticCallback_setPropertiesList(), Fem::FemMeshPy::staticCallback_setPyramidCount(), Base::RotationPy::staticCallback_setQ(), Fem::FemMeshPy::staticCallback_setQuadrangleCount(), Part::SpherePy::staticCallback_setRadius(), Part::CylinderPy::staticCallback_setRadius(), Part::ConePy::staticCallback_setRadius(), Part::CirclePy::staticCallback_setRadius(), Part::ArcOfCirclePy::staticCallback_setRadius(), App::DocumentPy::staticCallback_setRedoCount(), App::DocumentPy::staticCallback_setRedoNames(), Gui::ViewProviderPy::staticCallback_setRootNode(), Base::PlacementPy::staticCallback_setRotation(), Sketcher::ConstraintPy::staticCallback_setSecond(), Part::ConePy::staticCallback_setSemiAngle(), Sketcher::SketchPy::staticCallback_setShape(), Fem::FemMeshPy::staticCallback_setShape(), Part::TopoShapePy::staticCallback_setShapeType(), Part::TopoShapePy::staticCallback_setShells(), App::MaterialPy::staticCallback_setShininess(), Part::TopoShapePy::staticCallback_setSolids(), App::MaterialPy::staticCallback_setSpecularColor(), Fem::FemMeshPy::staticCallback_setStanardHypotheses(), Part::LinePy::staticCallback_setStartPoint(), Part::BSplineCurvePy::staticCallback_setStartPoint(), Part::BezierCurvePy::staticCallback_setStartPoint(), App::DocumentObjectPy::staticCallback_setState(), Gui::SelectionObjectPy::staticCallback_setSubElementNames(), Fem::FemMeshPy::staticCallback_setSubMeshCount(), Gui::SelectionObjectPy::staticCallback_setSubObjects(), Part::TopoShapeFacePy::staticCallback_setSurface(), Robot::Robot6AxisPy::staticCallback_setTcp(), Fem::FemMeshPy::staticCallback_setTetraCount(), Part::TopoShapeVertexPy::staticCallback_setTolerance(), Part::TopoShapeFacePy::staticCallback_setTolerance(), Part::TopoShapeEdgePy::staticCallback_setTolerance(), Robot::WaypointPy::staticCallback_setTool(), Mesh::MeshPy::staticCallback_setTopology(), Fem::FemMeshPy::staticCallback_setTransform(), Gui::ViewProviderPy::staticCallback_setTransformation(), App::MaterialPy::staticCallback_setTransparency(), Fem::FemMeshPy::staticCallback_setTriangleCount(), Robot::WaypointPy::staticCallback_setType(), Base::BaseClassPy::staticCallback_setType(), Part::BSplineSurfacePy::staticCallback_setUDegree(), Part::BezierSurfacePy::staticCallback_setUDegree(), Part::BSplineSurfacePy::staticCallback_setUKnot(), Part::BSplineSurfacePy::staticCallback_setUKnots(), Part::BSplineSurfacePy::staticCallback_setUKnotSequence(), App::DocumentPy::staticCallback_setUndoCount(), App::DocumentPy::staticCallback_setUndoMode(), App::DocumentPy::staticCallback_setUndoNames(), App::DocumentPy::staticCallback_setUndoRedoMemSize(), Part::BSplineSurfacePy::staticCallback_setUNotPeriodic(), Part::BSplineSurfacePy::staticCallback_setUOrigin(), Part::BSplineSurfacePy::staticCallback_setUPeriodic(), Part::BSplineSurfacePy::staticCallback_setVDegree(), Part::BezierSurfacePy::staticCallback_setVDegree(), Mesh::MeshPointPy::staticCallback_setVector(), Robot::WaypointPy::staticCallback_setVelocity(), Part::TopoShapePy::staticCallback_setVertexes(), App::DocumentObjectPy::staticCallback_setViewObject(), Part::BSplineSurfacePy::staticCallback_setVKnot(), Part::BSplineSurfacePy::staticCallback_setVKnots(), Part::BSplineSurfacePy::staticCallback_setVKnotSequence(), Part::BSplineSurfacePy::staticCallback_setVNotPeriodic(), Part::ToroidPy::staticCallback_setVolume(), Part::TopoShapePy::staticCallback_setVolume(), Part::SpherePy::staticCallback_setVolume(), Mesh::MeshPy::staticCallback_setVolume(), Fem::FemMeshPy::staticCallback_setVolumeCount(), Part::BSplineSurfacePy::staticCallback_setVOrigin(), Part::BSplineSurfacePy::staticCallback_setVPeriodic(), Robot::TrajectoryPy::staticCallback_setWaypoints(), Part::BSplineSurfacePy::staticCallback_setWeight(), Part::BSplineCurvePy::staticCallback_setWeight(), Part::BezierSurfacePy::staticCallback_setWeight(), Part::BezierCurvePy::staticCallback_setWeight(), Part::BSplineSurfacePy::staticCallback_setWeightCol(), Part::BezierSurfacePy::staticCallback_setWeightCol(), Part::BSplineSurfacePy::staticCallback_setWeightRow(), Part::BezierSurfacePy::staticCallback_setWeightRow(), Part::TopoShapeFacePy::staticCallback_setWire(), Part::TopoShapePy::staticCallback_setWires(), Base::VectorPy::staticCallback_setx(), Part::TopoShapeVertexPy::staticCallback_setX(), Mesh::MeshPointPy::staticCallback_setx(), Base::BoundBoxPy::staticCallback_setXLength(), Base::BoundBoxPy::staticCallback_setXMax(), Base::BoundBoxPy::staticCallback_setXMin(), Base::VectorPy::staticCallback_sety(), Part::TopoShapeVertexPy::staticCallback_setY(), Mesh::MeshPointPy::staticCallback_sety(), Base::BoundBoxPy::staticCallback_setYLength(), Base::BoundBoxPy::staticCallback_setYMax(), Base::BoundBoxPy::staticCallback_setYMin(), Base::VectorPy::staticCallback_setz(), Part::TopoShapeVertexPy::staticCallback_setZ(), Mesh::MeshPointPy::staticCallback_setz(), Base::BoundBoxPy::staticCallback_setZLength(), Base::BoundBoxPy::staticCallback_setZMax(), Base::BoundBoxPy::staticCallback_setZMin(), Part::TopoShapePy::staticCallback_sewShape(), Gui::ViewProviderPy::staticCallback_show(), Gui::DocumentPy::staticCallback_show(), Part::TopoShapePy::staticCallback_slice(), Part::TopoShapePy::staticCallback_slices(), Mesh::MeshPy::staticCallback_smooth(), Mesh::MeshFeaturePy::staticCallback_smooth(), Mesh::MeshPy::staticCallback_snapVertex(), Sketcher::SketchPy::staticCallback_solve(), Sketcher::SketchObjectPy::staticCallback_solve(), Mesh::MeshPy::staticCallback_splitEdge(), Mesh::MeshPy::staticCallback_splitEdges(), Mesh::MeshPy::staticCallback_splitFacet(), Gui::ViewProviderPy::staticCallback_startEditing(), Base::VectorPy::staticCallback_sub(), Gui::ViewProviderPythonFeaturePy::staticCallback_supportedProperties(), Part::FeaturePythonPy::staticCallback_supportedProperties(), Mesh::FeaturePythonPy::staticCallback_supportedProperties(), App::FeaturePythonPy::staticCallback_supportedProperties(), App::DocumentPy::staticCallback_supportedTypes(), Mesh::MeshPy::staticCallback_swapEdge(), Part::GeometrySurfacePy::staticCallback_tangent(), Part::GeometryCurvePy::staticCallback_tangent(), Part::TopoShapeFacePy::staticCallback_tangentAt(), Part::TopoShapeEdgePy::staticCallback_tangentAt(), Part::TopoShapePy::staticCallback_tessellate(), Part::BSplineCurvePy::staticCallback_toBezier(), Part::GeometrySurfacePy::staticCallback_toBSpline(), Base::RotationPy::staticCallback_toEuler(), Sketcher::SketchObjectPy::staticCallback_toggleConstruction(), Base::PlacementPy::staticCallback_toMatrix(), Part::TopoShapePy::staticCallback_toNurbs(), Part::GeometrySurfacePy::staticCallback_toShape(), Part::GeometryCurvePy::staticCallback_toShape(), Gui::ViewProviderPy::staticCallback_toString(), App::DocumentObjectPy::staticCallback_touch(), Mesh::MeshPy::staticCallback_transform(), Base::MatrixPy::staticCallback_transform(), Part::GeometryPy::staticCallback_transform(), Part::TopoShapePy::staticCallback_transformGeometry(), Part::TopoShapePy::staticCallback_transformShape(), Mesh::MeshPy::staticCallback_transformToEigen(), Part::TopoShapePy::staticCallback_translate(), Mesh::MeshPy::staticCallback_translate(), Part::GeometryPy::staticCallback_translate(), Sketcher::SketchObjectPy::staticCallback_trim(), Part::ToroidPy::staticCallback_uIso(), Part::SpherePy::staticCallback_uIso(), Part::RectangularTrimmedSurfacePy::staticCallback_uIso(), Part::PlanePy::staticCallback_uIso(), Part::OffsetSurfacePy::staticCallback_uIso(), Part::CylinderPy::staticCallback_uIso(), Part::ConePy::staticCallback_uIso(), Part::BSplineSurfacePy::staticCallback_uIso(), Part::BezierSurfacePy::staticCallback_uIso(), Mesh::MeshPointPy::staticCallback_unbound(), Mesh::FacetPy::staticCallback_unbound(), App::DocumentPy::staticCallback_undo(), Mesh::MeshPy::staticCallback_unite(), Base::MatrixPy::staticCallback_unity(), Gui::ViewProviderDocumentObjectPy::staticCallback_update(), Gui::DocumentPy::staticCallback_update(), Part::GeometrySurfacePy::staticCallback_UPeriod(), Part::GeometrySurfacePy::staticCallback_value(), Part::GeometryCurvePy::staticCallback_value(), Part::TopoShapeFacePy::staticCallback_valueAt(), Part::TopoShapeEdgePy::staticCallback_valueAt(), Robot::TrajectoryPy::staticCallback_velocity(), Part::ToroidPy::staticCallback_vIso(), Part::SpherePy::staticCallback_vIso(), Part::RectangularTrimmedSurfacePy::staticCallback_vIso(), Part::PlanePy::staticCallback_vIso(), Part::OffsetSurfacePy::staticCallback_vIso(), Part::CylinderPy::staticCallback_vIso(), Part::ConePy::staticCallback_vIso(), Part::BSplineSurfacePy::staticCallback_vIso(), Part::BezierSurfacePy::staticCallback_vIso(), Part::GeometrySurfacePy::staticCallback_VPeriod(), Points::PointsPy::staticCallback_write(), Mesh::MeshPy::staticCallback_write(), Fem::FemMeshPy::staticCallback_write(), Fem::FemMeshPy::staticCallback_writeABAQUS(), Part::TopoShapePy::staticCallback_writeInventor(), Points::PointsPy::staticCallback_writeInventor(), and Mesh::MeshPy::staticCallback_writeInventor().
static void Base::PyObjectBase::PyDestructor | ( | PyObject * | P | ) | [inline, static] |
Wrapper for the Python destructor.
Definition at line 205 of file PyObjectBase.h.
PyInit method Overide this method to initialize a newly created instance of the class (Constuctor).
Reimplemented in Base::BaseClassPy, Base::BoundBoxPy, Base::MatrixPy, Base::PersistencePy, Base::PlacementPy, Base::RotationPy, Base::VectorPy, Data::ComplexGeoDataPy, App::DocumentObjectGroupPy, App::DocumentObjectPy, App::DocumentPy, App::FeaturePythonPy, App::MaterialPy, App::PropertyContainerPy, Gui::DocumentPy, Gui::PythonWorkbenchPy, Gui::SelectionObjectPy, Gui::ViewProviderDocumentObjectPy, Gui::ViewProviderPy, Gui::ViewProviderPythonFeaturePy, Gui::WorkbenchPy, Fem::FemMeshPy, Mesh::FacetPy, Mesh::FeaturePythonPy, Mesh::MeshFeaturePy, Mesh::MeshPointPy, Mesh::MeshPy, Part::ArcOfCirclePy, Part::ArcPy, Part::BezierCurvePy, Part::BezierSurfacePy, Part::BSplineCurvePy, Part::BSplineSurfacePy, Part::CirclePy, Part::ConePy, Part::CylinderPy, Part::EllipsePy, Part::FeaturePythonPy, Part::GeometryCurvePy, Part::GeometryPy, Part::GeometrySurfacePy, Part::HyperbolaPy, Part::LinePy, Part::OffsetCurvePy, Part::OffsetSurfacePy, Part::ParabolaPy, Part::Part2DObjectPy, Part::PartFeaturePy, Part::PlanePy, Part::RectangularTrimmedSurfacePy, Part::SpherePy, Part::SurfaceOfExtrusionPy, Part::SurfaceOfRevolutionPy, Part::TopoShapeCompoundPy, Part::TopoShapeCompSolidPy, Part::TopoShapeEdgePy, Part::TopoShapeFacePy, Part::TopoShapePy, Part::TopoShapeShellPy, Part::TopoShapeSolidPy, Part::TopoShapeVertexPy, Part::TopoShapeWirePy, Part::ToroidPy, Points::PointsPy, Robot::Robot6AxisPy, Robot::RobotObjectPy, Robot::TrajectoryPy, Robot::WaypointPy, Sketcher::ConstraintPy, Sketcher::SketchObjectPy, Sketcher::SketchObjectSFPy, and Sketcher::SketchPy.
Definition at line 263 of file PyObjectBase.h.
void PyObjectBase::setAttributeOf | ( | const char * | attr, | |
const PyObjectBase * | par | |||
) |
Definition at line 254 of file PyObjectBase.cpp.
References attribute, boost::numeric::bindings::umfpack::free(), and parent.
Referenced by __getattr().
void Base::PyObjectBase::setConst | ( | ) | [inline] |
Definition at line 283 of file PyObjectBase.h.
Referenced by Mesh::FacetPy::getNormal(), Points::PropertyPointKernel::getPyObject(), Mesh::PropertyMeshKernel::getPyObject(), Fem::PropertyFemMesh::getPyObject(), and Mesh::MeshPointPy::getVector().
void Base::PyObjectBase::setInvalid | ( | ) | [inline] |
Definition at line 273 of file PyObjectBase.h.
Referenced by Gui::Document::~Document(), App::Document::~Document(), Gui::PythonWorkbench::~PythonWorkbench(), and Gui::ViewProvider::~ViewProvider().
void PyObjectBase::startNotify | ( | ) |
Definition at line 281 of file PyObjectBase.cpp.
References __setattr(), attribute, and parent.
Referenced by __setattr().
void* Base::PyObjectBase::_pcTwinPointer [protected] |
pointer to the handled class
Definition at line 300 of file PyObjectBase.h.
Referenced by _repr(), Base::VectorPy::add(), Base::VectorPy::cross(), Base::VectorPy::distanceToLine(), Base::VectorPy::distanceToPlane(), Base::VectorPy::dot(), Base::VectorPy::getAngle(), Base::BaseClassPy::getBaseClassPtr(), Base::BoundBoxPy::getBoundBoxPtr(), Data::ComplexGeoDataPy::getComplexGeoDataPtr(), Sketcher::ConstraintPy::getConstraintPtr(), App::DocumentObjectGroupPy::getDocumentObjectGroupPtr(), App::DocumentObjectPy::getDocumentObjectPtr(), Gui::DocumentPy::getDocumentPtr(), App::DocumentPy::getDocumentPtr(), Mesh::FacetPy::getFacetPtr(), Part::PartFeaturePy::getFeaturePtr(), Mesh::MeshFeaturePy::getFeaturePtr(), Mesh::FeaturePythonPy::getFeaturePtr(), Part::FeaturePythonPy::getFeaturePythonPtr(), App::FeaturePythonPy::getFeaturePythonPtr(), Fem::FemMeshPy::getFemMeshPtr(), Part::ArcOfCirclePy::getGeomArcOfCirclePtr(), Part::BezierCurvePy::getGeomBezierCurvePtr(), Part::BezierSurfacePy::getGeomBezierSurfacePtr(), Part::BSplineCurvePy::getGeomBSplineCurvePtr(), Part::BSplineSurfacePy::getGeomBSplineSurfacePtr(), Part::CirclePy::getGeomCirclePtr(), Part::ConePy::getGeomConePtr(), Part::GeometryCurvePy::getGeomCurvePtr(), Part::CylinderPy::getGeomCylinderPtr(), Part::EllipsePy::getGeomEllipsePtr(), Part::GeometryPy::getGeometryPtr(), Part::HyperbolaPy::getGeomHyperbolaPtr(), Part::LinePy::getGeomLineSegmentPtr(), Part::OffsetCurvePy::getGeomOffsetCurvePtr(), Part::OffsetSurfacePy::getGeomOffsetSurfacePtr(), Part::ParabolaPy::getGeomParabolaPtr(), Part::PlanePy::getGeomPlanePtr(), Part::SpherePy::getGeomSpherePtr(), Part::SurfaceOfExtrusionPy::getGeomSurfaceOfExtrusionPtr(), Part::SurfaceOfRevolutionPy::getGeomSurfaceOfRevolutionPtr(), Part::GeometrySurfacePy::getGeomSurfacePtr(), Part::ToroidPy::getGeomToroidPtr(), Part::ArcPy::getGeomTrimmedCurvePtr(), Part::RectangularTrimmedSurfacePy::getGeomTrimmedSurfacePtr(), Base::VectorPy::getLength(), App::MaterialPy::getMaterialPtr(), Base::MatrixPy::getMatrixPtr(), Mesh::MeshPy::getMeshObjectPtr(), Mesh::MeshPointPy::getMeshPointPtr(), Part::Part2DObjectPy::getPart2DObjectPtr(), Base::PersistencePy::getPersistencePtr(), Base::PlacementPy::getPlacementPtr(), Points::PointsPy::getPointKernelPtr(), App::PropertyContainerPy::getPropertyContainerPtr(), Gui::PythonWorkbenchPy::getPythonWorkbenchPtr(), Robot::Robot6AxisPy::getRobot6AxisPtr(), Robot::RobotObjectPy::getRobotObjectPtr(), Base::RotationPy::getRotationPtr(), Gui::SelectionObjectPy::getSelectionObjectPtr(), Sketcher::SketchObjectPy::getSketchObjectPtr(), Sketcher::SketchObjectSFPy::getSketchObjectSFPtr(), Sketcher::SketchPy::getSketchPtr(), Part::TopoShapeWirePy::getTopoShapePtr(), Part::TopoShapeVertexPy::getTopoShapePtr(), Part::TopoShapeSolidPy::getTopoShapePtr(), Part::TopoShapeShellPy::getTopoShapePtr(), Part::TopoShapePy::getTopoShapePtr(), Part::TopoShapeFacePy::getTopoShapePtr(), Part::TopoShapeEdgePy::getTopoShapePtr(), Part::TopoShapeCompSolidPy::getTopoShapePtr(), Part::TopoShapeCompoundPy::getTopoShapePtr(), Robot::TrajectoryPy::getTrajectoryPtr(), Mesh::MeshPointPy::getVector(), Base::VectorPy::getVectorPtr(), Gui::ViewProviderDocumentObjectPy::getViewProviderDocumentObjectPtr(), Gui::ViewProviderPy::getViewProviderPtr(), Gui::ViewProviderPythonFeaturePy::getViewProviderPythonFeaturePtr(), Robot::WaypointPy::getWaypointPtr(), Gui::WorkbenchPy::getWorkbenchPtr(), Base::VectorPy::getx(), Mesh::MeshPointPy::getx(), Base::VectorPy::gety(), Mesh::MeshPointPy::gety(), Base::VectorPy::getz(), Mesh::MeshPointPy::getz(), Base::VectorPy::multiply(), Base::VectorPy::normalize(), Base::VectorPy::projectToLine(), Base::VectorPy::projectToPlane(), Base::VectorPy::PyInit(), Part::TopoShapeVertexPy::PyInit(), Base::MatrixPy::PyInit(), Base::VectorPy::representation(), Base::RotationPy::representation(), Base::PlacementPy::representation(), Mesh::MeshPy::representation(), Base::VectorPy::scale(), Base::VectorPy::setLength(), Base::VectorPy::setx(), Mesh::MeshPointPy::setx(), Base::VectorPy::sety(), Mesh::MeshPointPy::sety(), Base::VectorPy::setz(), Mesh::MeshPointPy::setz(), Base::VectorPy::sub(), Base::BoundBoxPy::~BoundBoxPy(), Mesh::FacetPy::~FacetPy(), Part::GeometryPy::~GeometryPy(), App::MaterialPy::~MaterialPy(), Base::MatrixPy::~MatrixPy(), Mesh::MeshPointPy::~MeshPointPy(), Base::PlacementPy::~PlacementPy(), Robot::Robot6AxisPy::~Robot6AxisPy(), Base::RotationPy::~RotationPy(), Gui::SelectionObjectPy::~SelectionObjectPy(), Robot::TrajectoryPy::~TrajectoryPy(), Base::VectorPy::~VectorPy(), and Robot::WaypointPy::~WaypointPy().
char* Base::PyObjectBase::attribute [protected] |
Definition at line 302 of file PyObjectBase.h.
Referenced by setAttributeOf(), startNotify(), and ~PyObjectBase().
PyMethodDef PyObjectBase::Methods [static] |
{ {NULL, NULL, 0, NULL} }
Reimplemented in Base::BaseClassPy, Base::BoundBoxPy, Base::MatrixPy, Base::PersistencePy, Base::PlacementPy, Base::RotationPy, Base::VectorPy, Data::ComplexGeoDataPy, App::DocumentObjectGroupPy, App::DocumentObjectPy, App::DocumentPy, App::FeaturePythonPy, App::MaterialPy, App::PropertyContainerPy, Gui::PyResource, Gui::DocumentPy, Gui::PythonWorkbenchPy, Gui::SelectionObjectPy, Gui::ViewProviderDocumentObjectPy, Gui::ViewProviderPy, Gui::ViewProviderPythonFeaturePy, Gui::WorkbenchPy, TestGui::UnitTestPy, Fem::FemMeshPy, Mesh::FacetPy, Mesh::FeaturePythonPy, Mesh::MeshFeaturePy, Mesh::MeshPointPy, Mesh::MeshPy, Part::ArcOfCirclePy, Part::ArcPy, Part::BezierCurvePy, Part::BezierSurfacePy, Part::BSplineCurvePy, Part::BSplineSurfacePy, Part::CirclePy, Part::ConePy, Part::CylinderPy, Part::EllipsePy, Part::FeaturePythonPy, Part::GeometryCurvePy, Part::GeometryPy, Part::GeometrySurfacePy, Part::HyperbolaPy, Part::LinePy, Part::OffsetCurvePy, Part::OffsetSurfacePy, Part::ParabolaPy, Part::Part2DObjectPy, Part::PartFeaturePy, Part::PlanePy, Part::RectangularTrimmedSurfacePy, Part::SpherePy, Part::SurfaceOfExtrusionPy, Part::SurfaceOfRevolutionPy, Part::TopoShapeCompoundPy, Part::TopoShapeCompSolidPy, Part::TopoShapeEdgePy, Part::TopoShapeFacePy, Part::TopoShapePy, Part::TopoShapeShellPy, Part::TopoShapeSolidPy, Part::TopoShapeVertexPy, Part::TopoShapeWirePy, Part::ToroidPy, Points::PointsPy, Robot::Robot6AxisPy, Robot::RobotObjectPy, Robot::TrajectoryPy, Robot::WaypointPy, Sketcher::ConstraintPy, Sketcher::SketchObjectPy, Sketcher::SketchObjectSFPy, and Sketcher::SketchPy.
Definition at line 192 of file PyObjectBase.h.
PyObjectBase* Base::PyObjectBase::parent [protected] |
Definition at line 301 of file PyObjectBase.h.
Referenced by setAttributeOf(), startNotify(), and ~PyObjectBase().
PyParentObject PyObjectBase::Parents = {&PyObjectBase::Type, NULL} [static] |
Reimplemented in Base::BaseClassPy, Base::BoundBoxPy, Base::MatrixPy, Base::PersistencePy, Base::PlacementPy, Base::RotationPy, Base::VectorPy, Data::ComplexGeoDataPy, App::DocumentObjectGroupPy, App::DocumentObjectPy, App::DocumentPy, App::FeaturePythonPy, App::MaterialPy, App::PropertyContainerPy, Gui::PyResource, Gui::DocumentPy, Gui::PythonWorkbenchPy, Gui::SelectionObjectPy, Gui::ViewProviderDocumentObjectPy, Gui::ViewProviderPy, Gui::ViewProviderPythonFeaturePy, Gui::WorkbenchPy, TestGui::UnitTestPy, Fem::FemMeshPy, Mesh::FacetPy, Mesh::FeaturePythonPy, Mesh::MeshFeaturePy, Mesh::MeshPointPy, Mesh::MeshPy, Part::ArcOfCirclePy, Part::ArcPy, Part::BezierCurvePy, Part::BezierSurfacePy, Part::BSplineCurvePy, Part::BSplineSurfacePy, Part::CirclePy, Part::ConePy, Part::CylinderPy, Part::EllipsePy, Part::FeaturePythonPy, Part::GeometryCurvePy, Part::GeometryPy, Part::GeometrySurfacePy, Part::HyperbolaPy, Part::LinePy, Part::OffsetCurvePy, Part::OffsetSurfacePy, Part::ParabolaPy, Part::Part2DObjectPy, Part::PartFeaturePy, Part::PlanePy, Part::RectangularTrimmedSurfacePy, Part::SpherePy, Part::SurfaceOfExtrusionPy, Part::SurfaceOfRevolutionPy, Part::TopoShapeCompoundPy, Part::TopoShapeCompSolidPy, Part::TopoShapeEdgePy, Part::TopoShapeFacePy, Part::TopoShapePy, Part::TopoShapeShellPy, Part::TopoShapeSolidPy, Part::TopoShapeVertexPy, Part::TopoShapeWirePy, Part::ToroidPy, Points::PointsPy, Robot::Robot6AxisPy, Robot::RobotObjectPy, Robot::TrajectoryPy, Robot::WaypointPy, Sketcher::ConstraintPy, Sketcher::SketchObjectPy, Sketcher::SketchObjectSFPy, and Sketcher::SketchPy.
Definition at line 192 of file PyObjectBase.h.
std::bitset<32> Base::PyObjectBase::StatusBits [protected] |
Definition at line 298 of file PyObjectBase.h.
Referenced by PyObjectBase().
PyTypeObject PyObjectBase::Type [static] |
Py_Header struct from python.h.
To prevent subclasses of PyTypeObject to be subclassed in Python we should remove the Py_TPFLAGS_BASETYPE flag.
Every PyObjectBase object is also a python object. So you can use every Python C-Library function also on a PyObjectBase object
For example, the classes App::VectorPy and App::MatrixPy have removed this flag and its Python proxies App.Vector and App.Matrix cannot be subclassed. In case we want to allow to derive from subclasses of PyTypeObject in Python we must either reimplment tp_new, tp_dealloc, tp_getattr, tp_setattr, tp_repr or set them to 0 and define tp_base as 0.
Reimplemented in Base::BaseClassPy, Base::BoundBoxPy, Base::MatrixPy, Base::PersistencePy, Base::PlacementPy, Base::RotationPy, Base::VectorPy, Data::ComplexGeoDataPy, App::DocumentObjectGroupPy, App::DocumentObjectPy, App::DocumentPy, App::FeaturePythonPy, App::MaterialPy, App::PropertyContainerPy, Gui::PyResource, Gui::DocumentPy, Gui::PythonWorkbenchPy, Gui::SelectionObjectPy, Gui::ViewProviderDocumentObjectPy, Gui::ViewProviderPy, Gui::ViewProviderPythonFeaturePy, Gui::WorkbenchPy, TestGui::UnitTestPy, Fem::FemMeshPy, Mesh::FacetPy, Mesh::FeaturePythonPy, Mesh::MeshFeaturePy, Mesh::MeshPointPy, Mesh::MeshPy, Part::ArcOfCirclePy, Part::ArcPy, Part::BezierCurvePy, Part::BezierSurfacePy, Part::BSplineCurvePy, Part::BSplineSurfacePy, Part::CirclePy, Part::ConePy, Part::CylinderPy, Part::EllipsePy, Part::FeaturePythonPy, Part::GeometryCurvePy, Part::GeometryPy, Part::GeometrySurfacePy, Part::HyperbolaPy, Part::LinePy, Part::OffsetCurvePy, Part::OffsetSurfacePy, Part::ParabolaPy, Part::Part2DObjectPy, Part::PartFeaturePy, Part::PlanePy, Part::RectangularTrimmedSurfacePy, Part::SpherePy, Part::SurfaceOfExtrusionPy, Part::SurfaceOfRevolutionPy, Part::TopoShapeCompoundPy, Part::TopoShapeCompSolidPy, Part::TopoShapeEdgePy, Part::TopoShapeFacePy, Part::TopoShapePy, Part::TopoShapeShellPy, Part::TopoShapeSolidPy, Part::TopoShapeVertexPy, Part::TopoShapeWirePy, Part::ToroidPy, Points::PointsPy, Robot::Robot6AxisPy, Robot::RobotObjectPy, Robot::TrajectoryPy, Robot::WaypointPy, Sketcher::ConstraintPy, Sketcher::SketchObjectPy, Sketcher::SketchObjectSFPy, and Sketcher::SketchPy.
Definition at line 192 of file PyObjectBase.h.
Referenced by __getattr().