21 TipRemoverShader___doc__,
22 "Class hierarchy: :class:`freestyle.types.StrokeShader` > :class:`TipRemoverShader`\n"
26 ".. method:: __init__(tip_length)\n"
28 " Builds a TipRemoverShader object.\n"
30 " :arg tip_length: The length of the piece of stroke we want to remove\n"
31 " at each extremity.\n"
32 " :type tip_length: float\n"
34 ".. method:: shade(stroke)\n"
36 " Removes the stroke's extremities.\n"
38 " :arg stroke: A Stroke object.\n"
39 " :type stroke: :class:`freestyle.types.Stroke`\n");
42 static const char *kwlist[] = {
"tip_length",
nullptr};
45 if (!PyArg_ParseTupleAndKeywords(args, kwds,
"d", (
char **)kwlist, &d)) {
55 PyVarObject_HEAD_INIT(
nullptr, 0)
74 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
75 TipRemoverShader___doc__,
PyTypeObject StrokeShader_Type
static int TipRemoverShader___init__(BPy_TipRemoverShader *self, PyObject *args, PyObject *kwds)
PyTypeObject TipRemoverShader_Type
PyDoc_STRVAR(TipRemoverShader___doc__, "Class hierarchy: :class:`freestyle.types.StrokeShader` > :class:`TipRemoverShader`\n" "\n" "[Geometry shader]\n" "\n" ".. method:: __init__(tip_length)\n" "\n" " Builds a TipRemoverShader object.\n" "\n" " :arg tip_length: The length of the piece of stroke we want to remove\n" " at each extremity.\n" " :type tip_length: float\n" "\n" ".. method:: shade(stroke)\n" "\n" " Removes the stroke's extremities.\n" "\n" " :arg stroke: A Stroke object.\n" " :type stroke: :class:`freestyle.types.Stroke`\n")
Class gathering basic stroke shaders.