~ubuntu-branches/ubuntu/trusty/blender/trusty-proposed

« back to all changes in this revision

Viewing changes to source/blender/freestyle/intern/python/StrokeShader/BPy_ColorNoiseShader.cpp

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * ***** BEGIN GPL LICENSE BLOCK *****
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License
 
6
 * as published by the Free Software Foundation; either version 2
 
7
 * of the License, or (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software Foundation,
 
16
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
17
 *
 
18
 * ***** END GPL LICENSE BLOCK *****
 
19
 */
 
20
 
 
21
/** \file source/blender/freestyle/intern/python/StrokeShader/BPy_ColorNoiseShader.cpp
 
22
 *  \ingroup freestyle
 
23
 */
 
24
 
 
25
#include "BPy_ColorNoiseShader.h"
 
26
 
 
27
#include "../../stroke/BasicStrokeShaders.h"
 
28
 
 
29
#ifdef __cplusplus
 
30
extern "C" {
 
31
#endif
 
32
 
 
33
///////////////////////////////////////////////////////////////////////////////////////////
 
34
 
 
35
//------------------------INSTANCE METHODS ----------------------------------
 
36
 
 
37
static char ColorNoiseShader___doc__[] =
 
38
"Class hierarchy: :class:`StrokeShader` > :class:`ColorNoiseShader`\n"
 
39
"\n"
 
40
"[Color shader]\n"
 
41
"\n"
 
42
".. method:: __init__(amplitude, period)\n"
 
43
"\n"
 
44
"   Builds a ColorNoiseShader object.\n"
 
45
"\n"
 
46
"   :arg amplitude: The amplitude of the noise signal.\n"
 
47
"   :type amplitude: float\n"
 
48
"   :arg period: The period of the noise signal.\n"
 
49
"   :type period: float\n"
 
50
"\n"
 
51
".. method:: shade(stroke)\n"
 
52
"\n"
 
53
"   Shader to add noise to the stroke colors.\n"
 
54
"\n"
 
55
"   :arg stroke: A Stroke object.\n"
 
56
"   :type stroke: :class:`Stroke`\n";
 
57
 
 
58
static int ColorNoiseShader___init__(BPy_ColorNoiseShader *self, PyObject *args, PyObject *kwds)
 
59
{
 
60
        static const char *kwlist[] = {"amplitude", "period", NULL};
 
61
        float f1, f2;
 
62
 
 
63
        if (!PyArg_ParseTupleAndKeywords(args, kwds, "ff", (char **)kwlist, &f1, &f2))
 
64
                return -1;
 
65
        self->py_ss.ss = new StrokeShaders::ColorNoiseShader(f1, f2);
 
66
        return 0;
 
67
}
 
68
 
 
69
/*-----------------------BPy_ColorNoiseShader type definition ------------------------------*/
 
70
 
 
71
PyTypeObject ColorNoiseShader_Type = {
 
72
        PyVarObject_HEAD_INIT(NULL, 0)
 
73
        "ColorNoiseShader",             /* tp_name */
 
74
        sizeof(BPy_ColorNoiseShader),   /* tp_basicsize */
 
75
        0,                              /* tp_itemsize */
 
76
        0,                              /* tp_dealloc */
 
77
        0,                              /* tp_print */
 
78
        0,                              /* tp_getattr */
 
79
        0,                              /* tp_setattr */
 
80
        0,                              /* tp_reserved */
 
81
        0,                              /* tp_repr */
 
82
        0,                              /* tp_as_number */
 
83
        0,                              /* tp_as_sequence */
 
84
        0,                              /* tp_as_mapping */
 
85
        0,                              /* tp_hash  */
 
86
        0,                              /* tp_call */
 
87
        0,                              /* tp_str */
 
88
        0,                              /* tp_getattro */
 
89
        0,                              /* tp_setattro */
 
90
        0,                              /* tp_as_buffer */
 
91
        Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
 
92
        ColorNoiseShader___doc__,       /* tp_doc */
 
93
        0,                              /* tp_traverse */
 
94
        0,                              /* tp_clear */
 
95
        0,                              /* tp_richcompare */
 
96
        0,                              /* tp_weaklistoffset */
 
97
        0,                              /* tp_iter */
 
98
        0,                              /* tp_iternext */
 
99
        0,                              /* tp_methods */
 
100
        0,                              /* tp_members */
 
101
        0,                              /* tp_getset */
 
102
        &StrokeShader_Type,             /* tp_base */
 
103
        0,                              /* tp_dict */
 
104
        0,                              /* tp_descr_get */
 
105
        0,                              /* tp_descr_set */
 
106
        0,                              /* tp_dictoffset */
 
107
        (initproc)ColorNoiseShader___init__, /* tp_init */
 
108
        0,                              /* tp_alloc */
 
109
        0,                              /* tp_new */
 
110
};
 
111
 
 
112
///////////////////////////////////////////////////////////////////////////////////////////
 
113
 
 
114
#ifdef __cplusplus
 
115
}
 
116
#endif