ClangFormat: apply to source, most of intern
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
This commit is contained in:
@@ -34,206 +34,206 @@ extern "C" {
|
||||
//------------------------ MODULE FUNCTIONS ----------------------------------
|
||||
|
||||
static char ContextFunctions_get_time_stamp___doc__[] =
|
||||
".. function:: get_time_stamp()\n"
|
||||
"\n"
|
||||
" Returns the system time stamp.\n"
|
||||
"\n"
|
||||
" :return: The system time stamp.\n"
|
||||
" :rtype: int\n";
|
||||
".. function:: get_time_stamp()\n"
|
||||
"\n"
|
||||
" Returns the system time stamp.\n"
|
||||
"\n"
|
||||
" :return: The system time stamp.\n"
|
||||
" :rtype: int\n";
|
||||
|
||||
static PyObject *
|
||||
ContextFunctions_get_time_stamp(PyObject * /*self*/)
|
||||
static PyObject *ContextFunctions_get_time_stamp(PyObject * /*self*/)
|
||||
{
|
||||
return PyLong_FromLong(ContextFunctions::GetTimeStampCF());
|
||||
return PyLong_FromLong(ContextFunctions::GetTimeStampCF());
|
||||
}
|
||||
|
||||
static char ContextFunctions_get_canvas_width___doc__[] =
|
||||
".. method:: get_canvas_width()\n"
|
||||
"\n"
|
||||
" Returns the canvas width.\n"
|
||||
"\n"
|
||||
" :return: The canvas width.\n"
|
||||
" :rtype: int\n";
|
||||
".. method:: get_canvas_width()\n"
|
||||
"\n"
|
||||
" Returns the canvas width.\n"
|
||||
"\n"
|
||||
" :return: The canvas width.\n"
|
||||
" :rtype: int\n";
|
||||
|
||||
static PyObject *
|
||||
ContextFunctions_get_canvas_width(PyObject * /*self*/)
|
||||
static PyObject *ContextFunctions_get_canvas_width(PyObject * /*self*/)
|
||||
{
|
||||
return PyLong_FromLong(ContextFunctions::GetCanvasWidthCF());
|
||||
return PyLong_FromLong(ContextFunctions::GetCanvasWidthCF());
|
||||
}
|
||||
|
||||
static char ContextFunctions_get_canvas_height___doc__[] =
|
||||
".. method:: get_canvas_height()\n"
|
||||
"\n"
|
||||
" Returns the canvas height.\n"
|
||||
"\n"
|
||||
" :return: The canvas height.\n"
|
||||
" :rtype: int\n";
|
||||
".. method:: get_canvas_height()\n"
|
||||
"\n"
|
||||
" Returns the canvas height.\n"
|
||||
"\n"
|
||||
" :return: The canvas height.\n"
|
||||
" :rtype: int\n";
|
||||
|
||||
static PyObject *
|
||||
ContextFunctions_get_canvas_height(PyObject * /*self*/)
|
||||
static PyObject *ContextFunctions_get_canvas_height(PyObject * /*self*/)
|
||||
{
|
||||
return PyLong_FromLong(ContextFunctions::GetCanvasHeightCF());
|
||||
return PyLong_FromLong(ContextFunctions::GetCanvasHeightCF());
|
||||
}
|
||||
|
||||
static char ContextFunctions_get_border___doc__[] =
|
||||
".. method:: get_border()\n"
|
||||
"\n"
|
||||
" Returns the border.\n"
|
||||
"\n"
|
||||
" :return: A tuple of 4 numbers (xmin, ymin, xmax, ymax).\n"
|
||||
" :rtype: tuple\n";
|
||||
".. method:: get_border()\n"
|
||||
"\n"
|
||||
" Returns the border.\n"
|
||||
"\n"
|
||||
" :return: A tuple of 4 numbers (xmin, ymin, xmax, ymax).\n"
|
||||
" :rtype: tuple\n";
|
||||
|
||||
static PyObject *
|
||||
ContextFunctions_get_border(PyObject * /*self*/)
|
||||
static PyObject *ContextFunctions_get_border(PyObject * /*self*/)
|
||||
{
|
||||
BBox<Vec2i> border(ContextFunctions::GetBorderCF());
|
||||
PyObject *v = PyTuple_New(4);
|
||||
PyTuple_SET_ITEMS(v,
|
||||
PyLong_FromLong(border.getMin().x()),
|
||||
PyLong_FromLong(border.getMin().y()),
|
||||
PyLong_FromLong(border.getMax().x()),
|
||||
PyLong_FromLong(border.getMax().y()));
|
||||
return v;
|
||||
BBox<Vec2i> border(ContextFunctions::GetBorderCF());
|
||||
PyObject *v = PyTuple_New(4);
|
||||
PyTuple_SET_ITEMS(v,
|
||||
PyLong_FromLong(border.getMin().x()),
|
||||
PyLong_FromLong(border.getMin().y()),
|
||||
PyLong_FromLong(border.getMax().x()),
|
||||
PyLong_FromLong(border.getMax().y()));
|
||||
return v;
|
||||
}
|
||||
|
||||
static char ContextFunctions_load_map___doc__[] =
|
||||
".. function:: load_map(file_name, map_name, num_levels=4, sigma=1.0)\n"
|
||||
"\n"
|
||||
" Loads an image map for further reading.\n"
|
||||
"\n"
|
||||
" :arg file_name: The name of the image file.\n"
|
||||
" :type file_name: str\n"
|
||||
" :arg map_name: The name that will be used to access this image.\n"
|
||||
" :type map_name: str\n"
|
||||
" :arg num_levels: The number of levels in the map pyramid\n"
|
||||
" (default = 4). If num_levels == 0, the complete pyramid is\n"
|
||||
" built.\n"
|
||||
" :type num_levels: int\n"
|
||||
" :arg sigma: The sigma value of the gaussian function.\n"
|
||||
" :type sigma: float\n";
|
||||
".. function:: load_map(file_name, map_name, num_levels=4, sigma=1.0)\n"
|
||||
"\n"
|
||||
" Loads an image map for further reading.\n"
|
||||
"\n"
|
||||
" :arg file_name: The name of the image file.\n"
|
||||
" :type file_name: str\n"
|
||||
" :arg map_name: The name that will be used to access this image.\n"
|
||||
" :type map_name: str\n"
|
||||
" :arg num_levels: The number of levels in the map pyramid\n"
|
||||
" (default = 4). If num_levels == 0, the complete pyramid is\n"
|
||||
" built.\n"
|
||||
" :type num_levels: int\n"
|
||||
" :arg sigma: The sigma value of the gaussian function.\n"
|
||||
" :type sigma: float\n";
|
||||
|
||||
static PyObject *
|
||||
ContextFunctions_load_map(PyObject * /*self*/, PyObject *args, PyObject *kwds)
|
||||
static PyObject *ContextFunctions_load_map(PyObject * /*self*/, PyObject *args, PyObject *kwds)
|
||||
{
|
||||
static const char *kwlist[] = {"file_name", "map_name", "num_levels", "sigma", NULL};
|
||||
char *fileName, *mapName;
|
||||
unsigned nbLevels = 4;
|
||||
float sigma = 1.0;
|
||||
static const char *kwlist[] = {"file_name", "map_name", "num_levels", "sigma", NULL};
|
||||
char *fileName, *mapName;
|
||||
unsigned nbLevels = 4;
|
||||
float sigma = 1.0;
|
||||
|
||||
if (!PyArg_ParseTupleAndKeywords(args, kwds, "ss|If", (char **)kwlist, &fileName, &mapName, &nbLevels, &sigma))
|
||||
return NULL;
|
||||
ContextFunctions::LoadMapCF(fileName, mapName, nbLevels, sigma);
|
||||
Py_RETURN_NONE;
|
||||
if (!PyArg_ParseTupleAndKeywords(
|
||||
args, kwds, "ss|If", (char **)kwlist, &fileName, &mapName, &nbLevels, &sigma))
|
||||
return NULL;
|
||||
ContextFunctions::LoadMapCF(fileName, mapName, nbLevels, sigma);
|
||||
Py_RETURN_NONE;
|
||||
}
|
||||
|
||||
static char ContextFunctions_read_map_pixel___doc__[] =
|
||||
".. function:: read_map_pixel(map_name, level, x, y)\n"
|
||||
"\n"
|
||||
" Reads a pixel in a user-defined map.\n"
|
||||
"\n"
|
||||
" :arg map_name: The name of the map.\n"
|
||||
" :type map_name: str\n"
|
||||
" :arg level: The level of the pyramid in which we wish to read the\n"
|
||||
" pixel.\n"
|
||||
" :type level: int\n"
|
||||
" :arg x: The x coordinate of the pixel we wish to read. The origin\n"
|
||||
" is in the lower-left corner.\n"
|
||||
" :type x: int\n"
|
||||
" :arg y: The y coordinate of the pixel we wish to read. The origin\n"
|
||||
" is in the lower-left corner.\n"
|
||||
" :type y: int\n"
|
||||
" :return: The floating-point value stored for that pixel.\n"
|
||||
" :rtype: float\n";
|
||||
".. function:: read_map_pixel(map_name, level, x, y)\n"
|
||||
"\n"
|
||||
" Reads a pixel in a user-defined map.\n"
|
||||
"\n"
|
||||
" :arg map_name: The name of the map.\n"
|
||||
" :type map_name: str\n"
|
||||
" :arg level: The level of the pyramid in which we wish to read the\n"
|
||||
" pixel.\n"
|
||||
" :type level: int\n"
|
||||
" :arg x: The x coordinate of the pixel we wish to read. The origin\n"
|
||||
" is in the lower-left corner.\n"
|
||||
" :type x: int\n"
|
||||
" :arg y: The y coordinate of the pixel we wish to read. The origin\n"
|
||||
" is in the lower-left corner.\n"
|
||||
" :type y: int\n"
|
||||
" :return: The floating-point value stored for that pixel.\n"
|
||||
" :rtype: float\n";
|
||||
|
||||
static PyObject *
|
||||
ContextFunctions_read_map_pixel(PyObject * /*self*/, PyObject *args, PyObject *kwds)
|
||||
static PyObject *ContextFunctions_read_map_pixel(PyObject * /*self*/,
|
||||
PyObject *args,
|
||||
PyObject *kwds)
|
||||
{
|
||||
static const char *kwlist[] = {"map_name", "level", "x", "y", NULL};
|
||||
char *mapName;
|
||||
int level;
|
||||
unsigned x, y;
|
||||
static const char *kwlist[] = {"map_name", "level", "x", "y", NULL};
|
||||
char *mapName;
|
||||
int level;
|
||||
unsigned x, y;
|
||||
|
||||
if (!PyArg_ParseTupleAndKeywords(args, kwds, "siII", (char **)kwlist, &mapName, &level, &x, &y))
|
||||
return NULL;
|
||||
return PyFloat_FromDouble(ContextFunctions::ReadMapPixelCF(mapName, level, x, y));
|
||||
if (!PyArg_ParseTupleAndKeywords(args, kwds, "siII", (char **)kwlist, &mapName, &level, &x, &y))
|
||||
return NULL;
|
||||
return PyFloat_FromDouble(ContextFunctions::ReadMapPixelCF(mapName, level, x, y));
|
||||
}
|
||||
|
||||
static char ContextFunctions_read_complete_view_map_pixel___doc__[] =
|
||||
".. function:: read_complete_view_map_pixel(level, x, y)\n"
|
||||
"\n"
|
||||
" Reads a pixel in the complete view map.\n"
|
||||
"\n"
|
||||
" :arg level: The level of the pyramid in which we wish to read the\n"
|
||||
" pixel.\n"
|
||||
" :type level: int\n"
|
||||
" :arg x: The x coordinate of the pixel we wish to read. The origin\n"
|
||||
" is in the lower-left corner.\n"
|
||||
" :type x: int\n"
|
||||
" :arg y: The y coordinate of the pixel we wish to read. The origin\n"
|
||||
" is in the lower-left corner.\n"
|
||||
" :type y: int\n"
|
||||
" :return: The floating-point value stored for that pixel.\n"
|
||||
" :rtype: float\n";
|
||||
".. function:: read_complete_view_map_pixel(level, x, y)\n"
|
||||
"\n"
|
||||
" Reads a pixel in the complete view map.\n"
|
||||
"\n"
|
||||
" :arg level: The level of the pyramid in which we wish to read the\n"
|
||||
" pixel.\n"
|
||||
" :type level: int\n"
|
||||
" :arg x: The x coordinate of the pixel we wish to read. The origin\n"
|
||||
" is in the lower-left corner.\n"
|
||||
" :type x: int\n"
|
||||
" :arg y: The y coordinate of the pixel we wish to read. The origin\n"
|
||||
" is in the lower-left corner.\n"
|
||||
" :type y: int\n"
|
||||
" :return: The floating-point value stored for that pixel.\n"
|
||||
" :rtype: float\n";
|
||||
|
||||
static PyObject *
|
||||
ContextFunctions_read_complete_view_map_pixel(PyObject * /*self*/, PyObject *args, PyObject *kwds)
|
||||
static PyObject *ContextFunctions_read_complete_view_map_pixel(PyObject * /*self*/,
|
||||
PyObject *args,
|
||||
PyObject *kwds)
|
||||
{
|
||||
static const char *kwlist[] = {"level", "x", "y", NULL};
|
||||
int level;
|
||||
unsigned x, y;
|
||||
static const char *kwlist[] = {"level", "x", "y", NULL};
|
||||
int level;
|
||||
unsigned x, y;
|
||||
|
||||
if (!PyArg_ParseTupleAndKeywords(args, kwds, "iII", (char **)kwlist, &level, &x, &y))
|
||||
return NULL;
|
||||
return PyFloat_FromDouble(ContextFunctions::ReadCompleteViewMapPixelCF(level, x, y));
|
||||
if (!PyArg_ParseTupleAndKeywords(args, kwds, "iII", (char **)kwlist, &level, &x, &y))
|
||||
return NULL;
|
||||
return PyFloat_FromDouble(ContextFunctions::ReadCompleteViewMapPixelCF(level, x, y));
|
||||
}
|
||||
|
||||
static char ContextFunctions_read_directional_view_map_pixel___doc__[] =
|
||||
".. function:: read_directional_view_map_pixel(orientation, level, x, y)\n"
|
||||
"\n"
|
||||
" Reads a pixel in one of the oriented view map images.\n"
|
||||
"\n"
|
||||
" :arg orientation: The number telling which orientation we want to\n"
|
||||
" check.\n"
|
||||
" :type orientation: int\n"
|
||||
" :arg level: The level of the pyramid in which we wish to read the\n"
|
||||
" pixel.\n"
|
||||
" :type level: int\n"
|
||||
" :arg x: The x coordinate of the pixel we wish to read. The origin\n"
|
||||
" is in the lower-left corner.\n"
|
||||
" :type x: int\n"
|
||||
" :arg y: The y coordinate of the pixel we wish to read. The origin\n"
|
||||
" is in the lower-left corner.\n"
|
||||
" :type y: int\n"
|
||||
" :return: The floating-point value stored for that pixel.\n"
|
||||
" :rtype: float\n";
|
||||
".. function:: read_directional_view_map_pixel(orientation, level, x, y)\n"
|
||||
"\n"
|
||||
" Reads a pixel in one of the oriented view map images.\n"
|
||||
"\n"
|
||||
" :arg orientation: The number telling which orientation we want to\n"
|
||||
" check.\n"
|
||||
" :type orientation: int\n"
|
||||
" :arg level: The level of the pyramid in which we wish to read the\n"
|
||||
" pixel.\n"
|
||||
" :type level: int\n"
|
||||
" :arg x: The x coordinate of the pixel we wish to read. The origin\n"
|
||||
" is in the lower-left corner.\n"
|
||||
" :type x: int\n"
|
||||
" :arg y: The y coordinate of the pixel we wish to read. The origin\n"
|
||||
" is in the lower-left corner.\n"
|
||||
" :type y: int\n"
|
||||
" :return: The floating-point value stored for that pixel.\n"
|
||||
" :rtype: float\n";
|
||||
|
||||
static PyObject *
|
||||
ContextFunctions_read_directional_view_map_pixel(PyObject * /*self*/, PyObject *args, PyObject *kwds)
|
||||
static PyObject *ContextFunctions_read_directional_view_map_pixel(PyObject * /*self*/,
|
||||
PyObject *args,
|
||||
PyObject *kwds)
|
||||
{
|
||||
static const char *kwlist[] = {"orientation", "level", "x", "y", NULL};
|
||||
int orientation, level;
|
||||
unsigned x, y;
|
||||
static const char *kwlist[] = {"orientation", "level", "x", "y", NULL};
|
||||
int orientation, level;
|
||||
unsigned x, y;
|
||||
|
||||
if (!PyArg_ParseTupleAndKeywords(args, kwds, "iiII", (char **)kwlist, &orientation, &level, &x, &y))
|
||||
return NULL;
|
||||
return PyFloat_FromDouble(ContextFunctions::ReadDirectionalViewMapPixelCF(orientation, level, x, y));
|
||||
if (!PyArg_ParseTupleAndKeywords(
|
||||
args, kwds, "iiII", (char **)kwlist, &orientation, &level, &x, &y))
|
||||
return NULL;
|
||||
return PyFloat_FromDouble(
|
||||
ContextFunctions::ReadDirectionalViewMapPixelCF(orientation, level, x, y));
|
||||
}
|
||||
|
||||
static char ContextFunctions_get_selected_fedge___doc__[] =
|
||||
".. function:: get_selected_fedge()\n"
|
||||
"\n"
|
||||
" Returns the selected FEdge.\n"
|
||||
"\n"
|
||||
" :return: The selected FEdge.\n"
|
||||
" :rtype: :class:`FEdge`\n";
|
||||
".. function:: get_selected_fedge()\n"
|
||||
"\n"
|
||||
" Returns the selected FEdge.\n"
|
||||
"\n"
|
||||
" :return: The selected FEdge.\n"
|
||||
" :rtype: :class:`FEdge`\n";
|
||||
|
||||
static PyObject *
|
||||
ContextFunctions_get_selected_fedge(PyObject * /*self*/)
|
||||
static PyObject *ContextFunctions_get_selected_fedge(PyObject * /*self*/)
|
||||
{
|
||||
FEdge *fe = ContextFunctions::GetSelectedFEdgeCF();
|
||||
if (fe)
|
||||
return Any_BPy_FEdge_from_FEdge(*fe);
|
||||
Py_RETURN_NONE;
|
||||
FEdge *fe = ContextFunctions::GetSelectedFEdgeCF();
|
||||
if (fe)
|
||||
return Any_BPy_FEdge_from_FEdge(*fe);
|
||||
Py_RETURN_NONE;
|
||||
}
|
||||
|
||||
/*-----------------------ContextFunctions module docstring-------------------------------*/
|
||||
@@ -243,27 +243,43 @@ static char module_docstring[] = "The Blender Freestyle.ContextFunctions submodu
|
||||
/*-----------------------ContextFunctions module functions definitions-------------------*/
|
||||
|
||||
static PyMethodDef module_functions[] = {
|
||||
{"get_time_stamp", (PyCFunction)ContextFunctions_get_time_stamp, METH_NOARGS,
|
||||
ContextFunctions_get_time_stamp___doc__},
|
||||
{"get_canvas_width", (PyCFunction)ContextFunctions_get_canvas_width, METH_NOARGS,
|
||||
ContextFunctions_get_canvas_width___doc__},
|
||||
{"get_canvas_height", (PyCFunction)ContextFunctions_get_canvas_height, METH_NOARGS,
|
||||
ContextFunctions_get_canvas_height___doc__},
|
||||
{"get_border", (PyCFunction)ContextFunctions_get_border, METH_NOARGS,
|
||||
ContextFunctions_get_border___doc__},
|
||||
{"load_map", (PyCFunction)ContextFunctions_load_map, METH_VARARGS | METH_KEYWORDS,
|
||||
ContextFunctions_load_map___doc__},
|
||||
{"read_map_pixel", (PyCFunction)ContextFunctions_read_map_pixel, METH_VARARGS | METH_KEYWORDS,
|
||||
ContextFunctions_read_map_pixel___doc__},
|
||||
{"read_complete_view_map_pixel", (PyCFunction)ContextFunctions_read_complete_view_map_pixel,
|
||||
METH_VARARGS | METH_KEYWORDS,
|
||||
ContextFunctions_read_complete_view_map_pixel___doc__},
|
||||
{"read_directional_view_map_pixel", (PyCFunction)ContextFunctions_read_directional_view_map_pixel,
|
||||
METH_VARARGS | METH_KEYWORDS,
|
||||
ContextFunctions_read_directional_view_map_pixel___doc__},
|
||||
{"get_selected_fedge", (PyCFunction)ContextFunctions_get_selected_fedge, METH_NOARGS,
|
||||
ContextFunctions_get_selected_fedge___doc__},
|
||||
{NULL, NULL, 0, NULL},
|
||||
{"get_time_stamp",
|
||||
(PyCFunction)ContextFunctions_get_time_stamp,
|
||||
METH_NOARGS,
|
||||
ContextFunctions_get_time_stamp___doc__},
|
||||
{"get_canvas_width",
|
||||
(PyCFunction)ContextFunctions_get_canvas_width,
|
||||
METH_NOARGS,
|
||||
ContextFunctions_get_canvas_width___doc__},
|
||||
{"get_canvas_height",
|
||||
(PyCFunction)ContextFunctions_get_canvas_height,
|
||||
METH_NOARGS,
|
||||
ContextFunctions_get_canvas_height___doc__},
|
||||
{"get_border",
|
||||
(PyCFunction)ContextFunctions_get_border,
|
||||
METH_NOARGS,
|
||||
ContextFunctions_get_border___doc__},
|
||||
{"load_map",
|
||||
(PyCFunction)ContextFunctions_load_map,
|
||||
METH_VARARGS | METH_KEYWORDS,
|
||||
ContextFunctions_load_map___doc__},
|
||||
{"read_map_pixel",
|
||||
(PyCFunction)ContextFunctions_read_map_pixel,
|
||||
METH_VARARGS | METH_KEYWORDS,
|
||||
ContextFunctions_read_map_pixel___doc__},
|
||||
{"read_complete_view_map_pixel",
|
||||
(PyCFunction)ContextFunctions_read_complete_view_map_pixel,
|
||||
METH_VARARGS | METH_KEYWORDS,
|
||||
ContextFunctions_read_complete_view_map_pixel___doc__},
|
||||
{"read_directional_view_map_pixel",
|
||||
(PyCFunction)ContextFunctions_read_directional_view_map_pixel,
|
||||
METH_VARARGS | METH_KEYWORDS,
|
||||
ContextFunctions_read_directional_view_map_pixel___doc__},
|
||||
{"get_selected_fedge",
|
||||
(PyCFunction)ContextFunctions_get_selected_fedge,
|
||||
METH_NOARGS,
|
||||
ContextFunctions_get_selected_fedge___doc__},
|
||||
{NULL, NULL, 0, NULL},
|
||||
};
|
||||
|
||||
/*-----------------------ContextFunctions module definition--------------------------------*/
|
||||
@@ -280,18 +296,18 @@ static PyModuleDef module_definition = {
|
||||
|
||||
int ContextFunctions_Init(PyObject *module)
|
||||
{
|
||||
PyObject *m;
|
||||
PyObject *m;
|
||||
|
||||
if (module == NULL)
|
||||
return -1;
|
||||
if (module == NULL)
|
||||
return -1;
|
||||
|
||||
m = PyModule_Create(&module_definition);
|
||||
if (m == NULL)
|
||||
return -1;
|
||||
Py_INCREF(m);
|
||||
PyModule_AddObject(module, "ContextFunctions", m);
|
||||
m = PyModule_Create(&module_definition);
|
||||
if (m == NULL)
|
||||
return -1;
|
||||
Py_INCREF(m);
|
||||
PyModule_AddObject(module, "ContextFunctions", m);
|
||||
|
||||
return 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user