Blender V4.3
BPy_LocalAverageDepthF0D.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
10
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17using namespace Freestyle;
18
20
21//------------------------INSTANCE METHODS ----------------------------------
22
24 /* Wrap. */
25 LocalAverageDepthF0D___doc__,
26 "Class hierarchy: :class:`freestyle.types.UnaryFunction0D` > "
27 ":class:`freestyle.types.UnaryFunction0DDouble` > :class:`LocalAverageDepthF0D`\n"
28 "\n"
29 ".. method:: __init__(mask_size=5.0)\n"
30 "\n"
31 " Builds a LocalAverageDepthF0D object.\n"
32 "\n"
33 " :arg mask_size: The size of the mask.\n"
34 " :type mask_size: float\n"
35 "\n"
36 ".. method:: __call__(it)\n"
37 "\n"
38 " Returns the average depth around the\n"
39 " :class:`freestyle.types.Interface0D` pointed by the\n"
40 " Interface0DIterator. The result is obtained by querying the depth\n"
41 " buffer on a window around that point.\n"
42 "\n"
43 " :arg it: An Interface0DIterator object.\n"
44 " :type it: :class:`freestyle.types.Interface0DIterator`\n"
45 " :return: The average depth around the pointed Interface0D.\n"
46 " :rtype: float\n");
47
49 PyObject *args,
50 PyObject *kwds)
51{
52 static const char *kwlist[] = {"mask_size", nullptr};
53 double d = 5.0;
54
55 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|d", (char **)kwlist, &d)) {
56 return -1;
57 }
58 self->py_uf0D_double.uf0D_double = new Functions0D::LocalAverageDepthF0D(d);
59 self->py_uf0D_double.uf0D_double->py_uf0D = (PyObject *)self;
60 return 0;
61}
62
63/*-----------------------BPy_LocalAverageDepthF0D type definition ------------------------------*/
64
66 /*ob_base*/ PyVarObject_HEAD_INIT(nullptr, 0)
67 /*tp_name*/ "LocalAverageDepthF0D",
68 /*tp_basicsize*/ sizeof(BPy_LocalAverageDepthF0D),
69 /*tp_itemsize*/ 0,
70 /*tp_dealloc*/ nullptr,
71 /*tp_vectorcall_offset*/ 0,
72 /*tp_getattr*/ nullptr,
73 /*tp_setattr*/ nullptr,
74 /*tp_as_async*/ nullptr,
75 /*tp_repr*/ nullptr,
76 /*tp_as_number*/ nullptr,
77 /*tp_as_sequence*/ nullptr,
78 /*tp_as_mapping*/ nullptr,
79 /*tp_hash*/ nullptr,
80 /*tp_call*/ nullptr,
81 /*tp_str*/ nullptr,
82 /*tp_getattro*/ nullptr,
83 /*tp_setattro*/ nullptr,
84 /*tp_as_buffer*/ nullptr,
85 /*tp_flags*/ Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
86 /*tp_doc*/ LocalAverageDepthF0D___doc__,
87 /*tp_traverse*/ nullptr,
88 /*tp_clear*/ nullptr,
89 /*tp_richcompare*/ nullptr,
90 /*tp_weaklistoffset*/ 0,
91 /*tp_iter*/ nullptr,
92 /*tp_iternext*/ nullptr,
93 /*tp_methods*/ nullptr,
94 /*tp_members*/ nullptr,
95 /*tp_getset*/ nullptr,
96 /*tp_base*/ &UnaryFunction0DDouble_Type,
97 /*tp_dict*/ nullptr,
98 /*tp_descr_get*/ nullptr,
99 /*tp_descr_set*/ nullptr,
100 /*tp_dictoffset*/ 0,
101 /*tp_init*/ (initproc)LocalAverageDepthF0D___init__,
102 /*tp_alloc*/ nullptr,
103 /*tp_new*/ nullptr,
104};
105
107
108#ifdef __cplusplus
109}
110#endif
Functions taking 0D input.
PyTypeObject LocalAverageDepthF0D_Type
static int LocalAverageDepthF0D___init__(BPy_LocalAverageDepthF0D *self, PyObject *args, PyObject *kwds)
PyDoc_STRVAR(LocalAverageDepthF0D___doc__, "Class hierarchy: :class:`freestyle.types.UnaryFunction0D` > " ":class:`freestyle.types.UnaryFunction0DDouble` > :class:`LocalAverageDepthF0D`\n" "\n" ".. method:: __init__(mask_size=5.0)\n" "\n" " Builds a LocalAverageDepthF0D object.\n" "\n" " :arg mask_size: The size of the mask.\n" " :type mask_size: float\n" "\n" ".. method:: __call__(it)\n" "\n" " Returns the average depth around the\n" " :class:`freestyle.types.Interface0D` pointed by the\n" " Interface0DIterator. The result is obtained by querying the depth\n" " buffer on a window around that point.\n" "\n" " :arg it: An Interface0DIterator object.\n" " :type it: :class:`freestyle.types.Interface0DIterator`\n" " :return: The average depth around the pointed Interface0D.\n" " :rtype: float\n")
PyTypeObject UnaryFunction0DDouble_Type
PyObject * self
inherits from class Rep
Definition AppCanvas.cpp:20