96 "Base class for any 1D element.\n"
98 ".. method:: __init__()\n"
100 " Default constructor.");
104 static const char *kwlist[] = {
nullptr};
106 if (!PyArg_ParseTupleAndKeywords(args, kwds,
"", (
char **)kwlist)) {
110 self->borrowed =
false;
116 if (
self->if1D && !
self->borrowed) {
119 Py_TYPE(
self)->tp_free((PyObject *)
self);
124 return PyUnicode_FromFormat(
125 "type: %s - address: %p",
self->if1D->getExactTypeName().c_str(),
self->if1D);
129 ".. method:: vertices_begin()\n"
131 " Returns an iterator over the Interface1D vertices, pointing to the\n"
134 " :return: An Interface0DIterator pointing to the first vertex.\n"
135 " :rtype: :class:`Interface0DIterator`");
144 ".. method:: vertices_end()\n"
146 " Returns an iterator over the Interface1D vertices, pointing after\n"
147 " the last vertex.\n"
149 " :return: An Interface0DIterator pointing after the last vertex.\n"
150 " :rtype: :class:`Interface0DIterator`");
159 ".. method:: points_begin(t=0.0)\n"
161 " Returns an iterator over the Interface1D points, pointing to the\n"
162 " first point. The difference with vertices_begin() is that here we can\n"
163 " iterate over points of the 1D element at a any given sampling.\n"
164 " Indeed, for each iteration, a virtual point is created.\n"
166 " :arg t: A sampling with which we want to iterate over points of\n"
167 " this 1D element.\n"
169 " :return: An Interface0DIterator pointing to the first point.\n"
170 " :rtype: :class:`Interface0DIterator`");
174 static const char *kwlist[] = {
"t",
nullptr};
177 if (!PyArg_ParseTupleAndKeywords(args, kwds,
"|f", (
char **)kwlist, &f)) {
185 ".. method:: points_end(t=0.0)\n"
187 " Returns an iterator over the Interface1D points, pointing after the\n"
188 " last point. The difference with vertices_end() is that here we can\n"
189 " iterate over points of the 1D element at a given sampling. Indeed,\n"
190 " for each iteration, a virtual point is created.\n"
192 " :arg t: A sampling with which we want to iterate over points of\n"
193 " this 1D element.\n"
195 " :return: An Interface0DIterator pointing after the last point.\n"
196 " :rtype: :class:`Interface0DIterator`");
200 static const char *kwlist[] = {
"t",
nullptr};
203 if (!PyArg_ParseTupleAndKeywords(args, kwds,
"|f", (
char **)kwlist, &f)) {
214 Interface1D_vertices_begin_doc},
218 Interface1D_vertices_end_doc},
221 METH_VARARGS | METH_KEYWORDS,
222 Interface1D_points_begin_doc},
225 METH_VARARGS | METH_KEYWORDS,
226 Interface1D_points_end_doc},
227 {
nullptr,
nullptr, 0,
nullptr},
233 "The string of the name of the 1D element.\n"
239 return PyUnicode_FromString(Py_TYPE(
self)->tp_name);
243 "The Id of this Interface1D.\n"
245 ":type: :class:`Id`");
250 if (PyErr_Occurred()) {
257 "The nature of this Interface1D.\n"
259 ":type: :class:`Nature`");
264 if (PyErr_Occurred()) {
271 "The 2D length of this Interface1D.\n"
278 if (PyErr_Occurred()) {
281 return PyFloat_FromDouble((
double)
length);
285 "The time stamp of the 1D element, mainly used for selection.\n"
291 return PyLong_FromLong(
self->if1D->getTimeStamp());
300 if ((timestamp = PyLong_AsLong(value)) == -1 && PyErr_Occurred()) {
301 PyErr_SetString(PyExc_TypeError,
"value must be a number");
304 self->if1D->setTimeStamp(timestamp);
315 Interface1D_length_2d_doc,
320 Interface1D_time_stamp_doc,
322 {
nullptr,
nullptr,
nullptr,
nullptr,
nullptr}
328 PyVarObject_HEAD_INIT(
nullptr, 0)
"Interface1D",
346 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
PyObject * BPy_Interface0DIterator_from_Interface0DIterator(Interface0DIterator &if0D_it, bool reversed)
PyObject * BPy_Id_from_Id(Id &id)
PyObject * BPy_Nature_from_Nature(unsigned short n)
PyTypeObject FEdgeSharp_Type
void FEdgeSharp_mathutils_register_callback()
void FEdgeSmooth_mathutils_register_callback()
PyTypeObject FEdgeSmooth_Type
PyTypeObject FrsCurve_Type
static void Interface1D_dealloc(BPy_Interface1D *self)
static int Interface1D_time_stamp_set(BPy_Interface1D *self, PyObject *value, void *UNUSED(closure))
static PyObject * Interface1D_time_stamp_get(BPy_Interface1D *self, void *UNUSED(closure))
static PyObject * Interface1D_points_begin(BPy_Interface1D *self, PyObject *args, PyObject *kwds)
PyDoc_STRVAR(Interface1D_doc, "Base class for any 1D element.\n" "\n" ".. method:: __init__()\n" "\n" " Default constructor.")
static PyObject * Interface1D_vertices_end(BPy_Interface1D *self)
PyTypeObject Interface1D_Type
static int Interface1D_init(BPy_Interface1D *self, PyObject *args, PyObject *kwds)
static PyObject * Interface1D_vertices_begin(BPy_Interface1D *self)
static PyObject * Interface1D_repr(BPy_Interface1D *self)
static PyObject * Interface1D_points_end(BPy_Interface1D *self, PyObject *args, PyObject *kwds)
int Interface1D_Init(PyObject *module)
static PyObject * Interface1D_id_get(BPy_Interface1D *self, void *UNUSED(closure))
static PyObject * Interface1D_length_2d_get(BPy_Interface1D *self, void *UNUSED(closure))
static PyGetSetDef BPy_Interface1D_getseters[]
static PyObject * Interface1D_name_get(BPy_Interface1D *self, void *UNUSED(closure))
static PyMethodDef BPy_Interface1D_methods[]
static PyObject * Interface1D_nature_get(BPy_Interface1D *self, void *UNUSED(closure))
#define BPy_MediumType_HUMID_MEDIUM
#define BPy_MediumType_OPAQUE_MEDIUM
#define BPy_MediumType_DRY_MEDIUM
PyTypeObject ViewEdge_Type
unsigned short VertexNature
T length(const vec_base< T, Size > &a)
static struct PyModuleDef module