25 TipRemoverShader___doc__,
26 "Class hierarchy: :class:`freestyle.types.StrokeShader` > :class:`TipRemoverShader`\n"
30 ".. method:: __init__(tip_length)\n"
32 " Builds a TipRemoverShader object.\n"
34 " :arg tip_length: The length of the piece of stroke we want to remove\n"
35 " at each extremity.\n"
36 " :type tip_length: float\n"
38 ".. method:: shade(stroke)\n"
40 " Removes the stroke's extremities.\n"
42 " :arg stroke: A Stroke object.\n"
43 " :type stroke: :class:`freestyle.types.Stroke`\n");
47 static const char *kwlist[] = {
"tip_length",
nullptr};
50 if (!PyArg_ParseTupleAndKeywords(args, kwds,
"d", (
char **)kwlist, &d)) {
60 PyVarObject_HEAD_INIT(
nullptr, 0)
79 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
80 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.