OffsetCurvePy.h
Go to the documentation of this file.00001
00002
00003
00004 #ifndef PART_OFFSETCURVEPY_H
00005 #define PART_OFFSETCURVEPY_H
00006
00007 #include <Mod/Part/App/GeometryCurvePy.h>
00008 #include <Mod/Part/App/Geometry.h>
00009 #include <string>
00010
00011 namespace Part
00012 {
00013
00014
00015
00016
00017
00020 class PartExport OffsetCurvePy : public Part::GeometryCurvePy
00021 {
00022 public:
00023 static PyTypeObject Type;
00024 static PyMethodDef Methods[];
00025 static PyGetSetDef GetterSetter[];
00026 static PyParentObject Parents[];
00027 virtual PyTypeObject *GetType(void) {return &Type;};
00028 virtual PyParentObject *GetParents(void) {return Parents;}
00029
00030 public:
00031 OffsetCurvePy(GeomOffsetCurve *pcObject, PyTypeObject *T = &Type);
00032 static PyObject *PyMake(struct _typeobject *, PyObject *, PyObject *);
00033 virtual int PyInit(PyObject* args, PyObject*k);
00034 ~OffsetCurvePy();
00035
00036 typedef GeomOffsetCurve* PointerType ;
00037
00038 virtual PyObject *_repr(void);
00039 std::string representation(void) const;
00040
00043
00044
00045
00048
00049 static PyObject * staticCallback_getOffsetValue (PyObject *self, void *closure);
00051 Py::Float getOffsetValue(void) const;
00053 static int staticCallback_setOffsetValue (PyObject *self, PyObject *value, void *closure);
00055 void setOffsetValue(Py::Float arg);
00057 static PyObject * staticCallback_getOffsetDirection (PyObject *self, void *closure);
00059 Py::Object getOffsetDirection(void) const;
00061 static int staticCallback_setOffsetDirection (PyObject *self, PyObject *value, void *closure);
00063 void setOffsetDirection(Py::Object arg);
00065 static PyObject * staticCallback_getBasisCurve (PyObject *self, void *closure);
00067 Py::Object getBasisCurve(void) const;
00069 static int staticCallback_setBasisCurve (PyObject *self, PyObject *value, void *closure);
00071 void setBasisCurve(Py::Object arg);
00073
00075 PyObject *getCustomAttributes(const char* attr) const;
00077 int setCustomAttributes(const char* attr, PyObject *obj);
00078 PyObject *_getattr(char *attr);
00079 int _setattr(char *attr, PyObject *value);
00080
00082 GeomOffsetCurve *getGeomOffsetCurvePtr(void) const;
00083
00086
00088 };
00089
00090 #define PARENTSPartOffsetCurvePy &OffsetCurvePy::Type,PARENTSPartGeometryCurvePy
00091
00092 }
00093
00094 #endif // PART_OFFSETCURVEPY_H
00095
00096