Blender V5.0
BPy_ReadSteerableViewMapPixelF0D.cpp
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2004-2022 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
8
10
12
13#include "BLI_sys_types.h"
14
15using namespace Freestyle;
16
18
19//------------------------INSTANCE METHODS ----------------------------------
20
22 /* Wrap. */
23 ReadSteerableViewMapPixelF0D___doc__,
24 "Class hierarchy: :class:`freestyle.types.UnaryFunction0D` > "
25 ":class:`freestyle.types.UnaryFunction0DFloat` > :class:`ReadSteerableViewMapPixelF0D`\n"
26 "\n"
27 ".. method:: __init__(orientation, level)\n"
28 "\n"
29 " Builds a ReadSteerableViewMapPixelF0D object.\n"
30 "\n"
31 " :arg orientation: The integer belonging to [0, 4] indicating the\n"
32 " orientation (E, NE, N, NW) we are interested in.\n"
33 " :type orientation: int\n"
34 " :arg level: The level of the pyramid from which the pixel must be\n"
35 " read.\n"
36 " :type level: int\n"
37 "\n"
38 ".. method:: __call__(it)\n"
39 "\n"
40 " Reads a pixel in one of the level of one of the steerable viewmaps.\n"
41 "\n"
42 " :arg it: An Interface0DIterator object.\n"
43 " :type it: :class:`freestyle.types.Interface0DIterator`\n"
44 " :return: A pixel in one of the level of one of the steerable viewmaps.\n"
45 " :rtype: float\n");
47 PyObject *args,
48 PyObject *kwds)
49{
50 static const char *kwlist[] = {"orientation", "level", nullptr};
51 uint u;
52 int i;
53
54 if (!PyArg_ParseTupleAndKeywords(args, kwds, "Ii", (char **)kwlist, &u, &i)) {
55 return -1;
56 }
57 self->py_uf0D_float.uf0D_float = new Functions0D::ReadSteerableViewMapPixelF0D(u, i);
58 self->py_uf0D_float.uf0D_float->py_uf0D = (PyObject *)self;
59 return 0;
60}
61
62/*-----------------------BPy_ReadSteerableViewMapPixelF0D type definition -----------------------*/
63
65 /*ob_base*/ PyVarObject_HEAD_INIT(nullptr, 0)
66 /*tp_name*/ "ReadSteerableViewMapPixelF0D",
67 /*tp_basicsize*/ sizeof(BPy_ReadSteerableViewMapPixelF0D),
68 /*tp_itemsize*/ 0,
69 /*tp_dealloc*/ nullptr,
70 /*tp_vectorcall_offset*/ 0,
71 /*tp_getattr*/ nullptr,
72 /*tp_setattr*/ nullptr,
73 /*tp_as_async*/ nullptr,
74 /*tp_repr*/ nullptr,
75 /*tp_as_number*/ nullptr,
76 /*tp_as_sequence*/ nullptr,
77 /*tp_as_mapping*/ nullptr,
78 /*tp_hash*/ nullptr,
79 /*tp_call*/ nullptr,
80 /*tp_str*/ nullptr,
81 /*tp_getattro*/ nullptr,
82 /*tp_setattro*/ nullptr,
83 /*tp_as_buffer*/ nullptr,
84 /*tp_flags*/ Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
85 /*tp_doc*/ ReadSteerableViewMapPixelF0D___doc__,
86 /*tp_traverse*/ nullptr,
87 /*tp_clear*/ nullptr,
88 /*tp_richcompare*/ nullptr,
89 /*tp_weaklistoffset*/ 0,
90 /*tp_iter*/ nullptr,
91 /*tp_iternext*/ nullptr,
92 /*tp_methods*/ nullptr,
93 /*tp_members*/ nullptr,
94 /*tp_getset*/ nullptr,
95 /*tp_base*/ &UnaryFunction0DFloat_Type,
96 /*tp_dict*/ nullptr,
97 /*tp_descr_get*/ nullptr,
98 /*tp_descr_set*/ nullptr,
99 /*tp_dictoffset*/ 0,
100 /*tp_init*/ (initproc)ReadSteerableViewMapPixelF0D___init__,
101 /*tp_alloc*/ nullptr,
102 /*tp_new*/ nullptr,
103};
104
Functions taking 0D input.
unsigned int uint
PyDoc_STRVAR(ReadSteerableViewMapPixelF0D___doc__, "Class hierarchy: :class:`freestyle.types.UnaryFunction0D` > " ":class:`freestyle.types.UnaryFunction0DFloat` > :class:`ReadSteerableViewMapPixelF0D`\n" "\n" ".. method:: __init__(orientation, level)\n" "\n" " Builds a ReadSteerableViewMapPixelF0D object.\n" "\n" " :arg orientation: The integer belonging to [0, 4] indicating the\n" " orientation (E, NE, N, NW) we are interested in.\n" " :type orientation: int\n" " :arg level: The level of the pyramid from which the pixel must be\n" " read.\n" " :type level: int\n" "\n" ".. method:: __call__(it)\n" "\n" " Reads a pixel in one of the level of one of the steerable viewmaps.\n" "\n" " :arg it: An Interface0DIterator object.\n" " :type it: :class:`freestyle.types.Interface0DIterator`\n" " :return: A pixel in one of the level of one of the steerable viewmaps.\n" " :rtype: float\n")
static int ReadSteerableViewMapPixelF0D___init__(BPy_ReadSteerableViewMapPixelF0D *self, PyObject *args, PyObject *kwds)
PyTypeObject ReadSteerableViewMapPixelF0D_Type
PyTypeObject UnaryFunction0DFloat_Type
PyObject * self
inherits from class Rep
Definition AppCanvas.cpp:20
i
Definition text_draw.cc:230