Cleanup: style (pointers)
This commit is contained in:
@@ -138,7 +138,7 @@ PyDoc_STRVAR(Interface1D_vertices_begin_doc,
|
||||
" :return: An Interface0DIterator pointing to the first vertex.\n"
|
||||
" :rtype: :class:`Interface0DIterator`");
|
||||
|
||||
static PyObject * Interface1D_vertices_begin(BPy_Interface1D *self)
|
||||
static PyObject *Interface1D_vertices_begin(BPy_Interface1D *self)
|
||||
{
|
||||
Interface0DIterator if0D_it(self->if1D->verticesBegin());
|
||||
return BPy_Interface0DIterator_from_Interface0DIterator(if0D_it, false);
|
||||
@@ -153,7 +153,7 @@ PyDoc_STRVAR(Interface1D_vertices_end_doc,
|
||||
" :return: An Interface0DIterator pointing after the last vertex.\n"
|
||||
" :rtype: :class:`Interface0DIterator`");
|
||||
|
||||
static PyObject * Interface1D_vertices_end(BPy_Interface1D *self)
|
||||
static PyObject *Interface1D_vertices_end(BPy_Interface1D *self)
|
||||
{
|
||||
Interface0DIterator if0D_it(self->if1D->verticesEnd());
|
||||
return BPy_Interface0DIterator_from_Interface0DIterator(if0D_it, true);
|
||||
@@ -173,7 +173,7 @@ PyDoc_STRVAR(Interface1D_points_begin_doc,
|
||||
" :return: An Interface0DIterator pointing to the first point.\n"
|
||||
" :rtype: :class:`Interface0DIterator`");
|
||||
|
||||
static PyObject * Interface1D_points_begin(BPy_Interface1D *self, PyObject *args, PyObject *kwds)
|
||||
static PyObject *Interface1D_points_begin(BPy_Interface1D *self, PyObject *args, PyObject *kwds)
|
||||
{
|
||||
static const char *kwlist[] = {"t", NULL};
|
||||
float f = 0.0f;
|
||||
@@ -198,7 +198,7 @@ PyDoc_STRVAR(Interface1D_points_end_doc,
|
||||
" :return: An Interface0DIterator pointing after the last point.\n"
|
||||
" :rtype: :class:`Interface0DIterator`");
|
||||
|
||||
static PyObject * Interface1D_points_end(BPy_Interface1D *self, PyObject *args, PyObject *kwds)
|
||||
static PyObject *Interface1D_points_end(BPy_Interface1D *self, PyObject *args, PyObject *kwds)
|
||||
{
|
||||
static const char *kwlist[] = {"t", NULL};
|
||||
float f = 0.0f;
|
||||
|
||||
Reference in New Issue
Block a user