00001
00002
00003
00004 #ifndef PART_BEZIERSURFACEPY_H
00005 #define PART_BEZIERSURFACEPY_H
00006
00007 #include <Mod/Part/App/GeometrySurfacePy.h>
00008 #include <Mod/Part/App/Geometry.h>
00009 #include <string>
00010
00011 namespace Part
00012 {
00013
00014
00015
00016
00017
00020 class PartExport BezierSurfacePy : public Part::GeometrySurfacePy
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 BezierSurfacePy(GeomBezierSurface *pcObject, PyTypeObject *T = &Type);
00032 static PyObject *PyMake(struct _typeobject *, PyObject *, PyObject *);
00033 virtual int PyInit(PyObject* args, PyObject*k);
00034 ~BezierSurfacePy();
00035
00036 typedef GeomBezierSurface* PointerType ;
00037
00038 virtual PyObject *_repr(void);
00039 std::string representation(void) const;
00040
00043
00044 static PyObject * staticCallback_bounds (PyObject *self, PyObject *args);
00046 PyObject* bounds(PyObject *args);
00048 static PyObject * staticCallback_isURational (PyObject *self, PyObject *args);
00050 PyObject* isURational(PyObject *args);
00052 static PyObject * staticCallback_isVRational (PyObject *self, PyObject *args);
00054 PyObject* isVRational(PyObject *args);
00056 static PyObject * staticCallback_isUPeriodic (PyObject *self, PyObject *args);
00058 PyObject* isUPeriodic(PyObject *args);
00060 static PyObject * staticCallback_isVPeriodic (PyObject *self, PyObject *args);
00062 PyObject* isVPeriodic(PyObject *args);
00064 static PyObject * staticCallback_isUClosed (PyObject *self, PyObject *args);
00066 PyObject* isUClosed(PyObject *args);
00068 static PyObject * staticCallback_isVClosed (PyObject *self, PyObject *args);
00070 PyObject* isVClosed(PyObject *args);
00072 static PyObject * staticCallback_increase (PyObject *self, PyObject *args);
00074 PyObject* increase(PyObject *args);
00076 static PyObject * staticCallback_insertPoleColAfter (PyObject *self, PyObject *args);
00078 PyObject* insertPoleColAfter(PyObject *args);
00080 static PyObject * staticCallback_insertPoleRowAfter (PyObject *self, PyObject *args);
00082 PyObject* insertPoleRowAfter(PyObject *args);
00084 static PyObject * staticCallback_insertPoleColBefore (PyObject *self, PyObject *args);
00086 PyObject* insertPoleColBefore(PyObject *args);
00088 static PyObject * staticCallback_insertPoleRowBefore (PyObject *self, PyObject *args);
00090 PyObject* insertPoleRowBefore(PyObject *args);
00092 static PyObject * staticCallback_removePoleCol (PyObject *self, PyObject *args);
00094 PyObject* removePoleCol(PyObject *args);
00096 static PyObject * staticCallback_removePoleRow (PyObject *self, PyObject *args);
00098 PyObject* removePoleRow(PyObject *args);
00100 static PyObject * staticCallback_segment (PyObject *self, PyObject *args);
00102 PyObject* segment(PyObject *args);
00104 static PyObject * staticCallback_setPole (PyObject *self, PyObject *args);
00106 PyObject* setPole(PyObject *args);
00108 static PyObject * staticCallback_setPoleCol (PyObject *self, PyObject *args);
00110 PyObject* setPoleCol(PyObject *args);
00112 static PyObject * staticCallback_setPoleRow (PyObject *self, PyObject *args);
00114 PyObject* setPoleRow(PyObject *args);
00116 static PyObject * staticCallback_getPole (PyObject *self, PyObject *args);
00118 PyObject* getPole(PyObject *args);
00120 static PyObject * staticCallback_getPoles (PyObject *self, PyObject *args);
00122 PyObject* getPoles(PyObject *args);
00124 static PyObject * staticCallback_setWeight (PyObject *self, PyObject *args);
00126 PyObject* setWeight(PyObject *args);
00128 static PyObject * staticCallback_setWeightCol (PyObject *self, PyObject *args);
00130 PyObject* setWeightCol(PyObject *args);
00132 static PyObject * staticCallback_setWeightRow (PyObject *self, PyObject *args);
00134 PyObject* setWeightRow(PyObject *args);
00136 static PyObject * staticCallback_getWeight (PyObject *self, PyObject *args);
00138 PyObject* getWeight(PyObject *args);
00140 static PyObject * staticCallback_getWeights (PyObject *self, PyObject *args);
00142 PyObject* getWeights(PyObject *args);
00144 static PyObject * staticCallback_getResolution (PyObject *self, PyObject *args);
00146 PyObject* getResolution(PyObject *args);
00148 static PyObject * staticCallback_exchangeUV (PyObject *self, PyObject *args);
00150 PyObject* exchangeUV(PyObject *args);
00152 static PyObject * staticCallback_uIso (PyObject *self, PyObject *args);
00154 PyObject* uIso(PyObject *args);
00156 static PyObject * staticCallback_vIso (PyObject *self, PyObject *args);
00158 PyObject* vIso(PyObject *args);
00160
00161
00164
00165 static PyObject * staticCallback_getUDegree (PyObject *self, void *closure);
00167 Py::Int getUDegree(void) const;
00169 static int staticCallback_setUDegree (PyObject *self, PyObject *value, void *closure);
00170
00172 static PyObject * staticCallback_getVDegree (PyObject *self, void *closure);
00174 Py::Int getVDegree(void) const;
00176 static int staticCallback_setVDegree (PyObject *self, PyObject *value, void *closure);
00177
00179 static PyObject * staticCallback_getMaxDegree (PyObject *self, void *closure);
00181 Py::Int getMaxDegree(void) const;
00183 static int staticCallback_setMaxDegree (PyObject *self, PyObject *value, void *closure);
00184
00186 static PyObject * staticCallback_getNbUPoles (PyObject *self, void *closure);
00188 Py::Int getNbUPoles(void) const;
00190 static int staticCallback_setNbUPoles (PyObject *self, PyObject *value, void *closure);
00191
00193 static PyObject * staticCallback_getNbVPoles (PyObject *self, void *closure);
00195 Py::Int getNbVPoles(void) const;
00197 static int staticCallback_setNbVPoles (PyObject *self, PyObject *value, void *closure);
00198
00200
00202 PyObject *getCustomAttributes(const char* attr) const;
00204 int setCustomAttributes(const char* attr, PyObject *obj);
00205 PyObject *_getattr(char *attr);
00206 int _setattr(char *attr, PyObject *value);
00207
00209 GeomBezierSurface *getGeomBezierSurfacePtr(void) const;
00210
00213
00215 };
00216
00217 #define PARENTSPartBezierSurfacePy &BezierSurfacePy::Type,PARENTSPartGeometrySurfacePy
00218
00219 }
00220
00221 #endif // PART_BEZIERSURFACEPY_H
00222
00223