Blender V5.0
BPy_QuantitativeInvisibilityF0D.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
13using namespace Freestyle;
14
16
17//------------------------INSTANCE METHODS ----------------------------------
18
20 /* Wrap. */
21 QuantitativeInvisibilityF0D___doc__,
22 "Class hierarchy: :class:`freestyle.types.UnaryFunction0D` > "
23 ":class:`freestyle.types.UnaryFunction0DUnsigned` > :class:`QuantitativeInvisibilityF0D`\n"
24 "\n"
25 ".. method:: __init__()\n"
26 "\n"
27 " Builds a QuantitativeInvisibilityF0D object.\n"
28 "\n"
29 ".. method:: __call__(it)\n"
30 "\n"
31 " Returns the quantitative invisibility of the\n"
32 " :class:`freestyle.types.Interface0D` pointed by the\n"
33 " Interface0DIterator. This evaluation can be ambiguous (in the case of\n"
34 " a :class:`freestyle.types.TVertex` for example). This functor tries\n"
35 " to remove this ambiguity using the context offered by the 1D element\n"
36 " to which the Interface0D belongs to. However, there still can be\n"
37 " problematic cases, and the user willing to deal with this cases in a\n"
38 " specific way should implement its own getQIF0D functor.\n"
39 "\n"
40 " :arg it: An Interface0DIterator object.\n"
41 " :type it: :class:`freestyle.types.Interface0DIterator`\n"
42 " :return: The quantitative invisibility of the pointed Interface0D.\n"
43 " :rtype: int\n");
45 PyObject *args,
46 PyObject *kwds)
47{
48 static const char *kwlist[] = {nullptr};
49
50 if (!PyArg_ParseTupleAndKeywords(args, kwds, "", (char **)kwlist)) {
51 return -1;
52 }
53 self->py_uf0D_unsigned.uf0D_unsigned = new Functions0D::QuantitativeInvisibilityF0D();
54 self->py_uf0D_unsigned.uf0D_unsigned->py_uf0D = (PyObject *)self;
55 return 0;
56}
57
58/*-----------------------BPy_QuantitativeInvisibilityF0D type definition ------------------------*/
59
61 /*ob_base*/ PyVarObject_HEAD_INIT(nullptr, 0)
62 /*tp_name*/ "QuantitativeInvisibilityF0D",
63 /*tp_basicsize*/ sizeof(BPy_QuantitativeInvisibilityF0D),
64 /*tp_itemsize*/ 0,
65 /*tp_dealloc*/ nullptr,
66 /*tp_vectorcall_offset*/ 0,
67 /*tp_getattr*/ nullptr,
68 /*tp_setattr*/ nullptr,
69 /*tp_as_async*/ nullptr,
70 /*tp_repr*/ nullptr,
71 /*tp_as_number*/ nullptr,
72 /*tp_as_sequence*/ nullptr,
73 /*tp_as_mapping*/ nullptr,
74 /*tp_hash*/ nullptr,
75 /*tp_call*/ nullptr,
76 /*tp_str*/ nullptr,
77 /*tp_getattro*/ nullptr,
78 /*tp_setattro*/ nullptr,
79 /*tp_as_buffer*/ nullptr,
80 /*tp_flags*/ Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
81 /*tp_doc*/ QuantitativeInvisibilityF0D___doc__,
82 /*tp_traverse*/ nullptr,
83 /*tp_clear*/ nullptr,
84 /*tp_richcompare*/ nullptr,
85 /*tp_weaklistoffset*/ 0,
86 /*tp_iter*/ nullptr,
87 /*tp_iternext*/ nullptr,
88 /*tp_methods*/ nullptr,
89 /*tp_members*/ nullptr,
90 /*tp_getset*/ nullptr,
92 /*tp_dict*/ nullptr,
93 /*tp_descr_get*/ nullptr,
94 /*tp_descr_set*/ nullptr,
95 /*tp_dictoffset*/ 0,
96 /*tp_init*/ (initproc)QuantitativeInvisibilityF0D___init__,
97 /*tp_alloc*/ nullptr,
98 /*tp_new*/ nullptr,
99};
100
PyTypeObject QuantitativeInvisibilityF0D_Type
static int QuantitativeInvisibilityF0D___init__(BPy_QuantitativeInvisibilityF0D *self, PyObject *args, PyObject *kwds)
PyDoc_STRVAR(QuantitativeInvisibilityF0D___doc__, "Class hierarchy: :class:`freestyle.types.UnaryFunction0D` > " ":class:`freestyle.types.UnaryFunction0DUnsigned` > :class:`QuantitativeInvisibilityF0D`\n" "\n" ".. method:: __init__()\n" "\n" " Builds a QuantitativeInvisibilityF0D object.\n" "\n" ".. method:: __call__(it)\n" "\n" " Returns the quantitative invisibility of the\n" " :class:`freestyle.types.Interface0D` pointed by the\n" " Interface0DIterator. This evaluation can be ambiguous (in the case of\n" " a :class:`freestyle.types.TVertex` for example). This functor tries\n" " to remove this ambiguity using the context offered by the 1D element\n" " to which the Interface0D belongs to. However, there still can be\n" " problematic cases, and the user willing to deal with this cases in a\n" " specific way should implement its own getQIF0D functor.\n" "\n" " :arg it: An Interface0DIterator object.\n" " :type it: :class:`freestyle.types.Interface0DIterator`\n" " :return: The quantitative invisibility of the pointed Interface0D.\n" " :rtype: int\n")
PyTypeObject UnaryFunction0DUnsigned_Type
Functions taking 0D input.
PyObject * self
inherits from class Rep
Definition AppCanvas.cpp:20