Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-04-18 06:03:19 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-04-18 06:03:19 +0400
commitdfe2f8dc03267e041102837e92f547fb04881510 (patch)
treed9582c4667ce5b9e39e2adce40832aa4f44b4fe7 /source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp
parentd7e08f2d33207fdf76b1b597ef0de9dec26e3987 (diff)
parent00e46ef739cf2bfddb8805af056aa59fd3b3c71c (diff)
Merged changes in the trunk up to revision 28247.
Diffstat (limited to 'source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp')
-rw-r--r--source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp b/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp
index 875edaea2d5..4db7110ac29 100644
--- a/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp
+++ b/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp
@@ -171,7 +171,7 @@ static char StrokeAttribute_getColorRGB___doc__[] =
" Returns the RGB components of the stroke color.\n"
"\n"
" :return: RGB components of the stroke color.\n"
-" :rtype: :class:`Mathutils.Vector`\n";
+" :rtype: :class:`mathutils.Vector`\n";
static PyObject *StrokeAttribute_getColorRGB( BPy_StrokeAttribute *self ) {
Vec3f v( self->sa->getColorRGB() );
@@ -225,7 +225,7 @@ static char StrokeAttribute_getThicknessRL___doc__[] =
" :return: A two-dimensional vector. The first value is the\n"
" thickness on the right of the vertex when following the stroke,\n"
" and the second one is the thickness on the left.\n"
-" :rtype: :class:`Mathutils.Vector`\n";
+" :rtype: :class:`mathutils.Vector`\n";
static PyObject *StrokeAttribute_getThicknessRL( BPy_StrokeAttribute *self ) {
Vec2f v( self->sa->getThicknessRL() );
@@ -272,7 +272,7 @@ static char StrokeAttribute_getAttributeVec2f___doc__[] =
" :arg iName: The name of the attribute.\n"
" :type iName: string\n"
" :return: The attribute value.\n"
-" :rtype: :class:`Mathutils.Vector`\n";
+" :rtype: :class:`mathutils.Vector`\n";
static PyObject *StrokeAttribute_getAttributeVec2f( BPy_StrokeAttribute *self, PyObject *args ) {
char *attr;
@@ -292,7 +292,7 @@ static char StrokeAttribute_getAttributeVec3f___doc__[] =
" :arg iName: The name of the attribute.\n"
" :type iName: string\n"
" :return: The attribute value.\n"
-" :rtype: :class:`Mathutils.Vector`\n";
+" :rtype: :class:`mathutils.Vector`\n";
static PyObject *StrokeAttribute_getAttributeVec3f( BPy_StrokeAttribute *self, PyObject *args ) {
char *attr;
@@ -381,7 +381,7 @@ static char StrokeAttribute_setColor___doc__[] =
" Sets the stroke color.\n"
"\n"
" :arg iRGB: The new RGB values.\n"
-" :type iRGB: :class:`Mathutils.Vector`, list or tuple of 3 real numbers\n";
+" :type iRGB: :class:`mathutils.Vector`, list or tuple of 3 real numbers\n";
static PyObject * StrokeAttribute_setColor( BPy_StrokeAttribute *self, PyObject *args ) {
PyObject *obj1 = 0, *obj2 = 0, *obj3 = 0 ;
@@ -449,7 +449,7 @@ static char StrokeAttribute_setThickness___doc__[] =
"\n"
" :arg tRL: The thickness on the right and on the left of the vertex\n"
" when following the stroke.\n"
-" :type tRL: :class:`Mathutils.Vector`, list or tuple of 2 real numbers\n";
+" :type tRL: :class:`mathutils.Vector`, list or tuple of 2 real numbers\n";
static PyObject * StrokeAttribute_setThickness( BPy_StrokeAttribute *self, PyObject *args ) {
PyObject *obj1 = 0, *obj2 = 0;
@@ -532,7 +532,7 @@ static char StrokeAttribute_setAttributeVec2f___doc__[] =
" :arg iName: The name of the attribute.\n"
" :type iName: string\n"
" :arg att: The attribute value.\n"
-" :type att: :class:`Mathutils.Vector`, list or tuple of 2 real numbers\n";
+" :type att: :class:`mathutils.Vector`, list or tuple of 2 real numbers\n";
static PyObject * StrokeAttribute_setAttributeVec2f( BPy_StrokeAttribute *self, PyObject *args ) {
char *s;
@@ -561,7 +561,7 @@ static char StrokeAttribute_setAttributeVec3f___doc__[] =
" :arg iName: The name of the attribute.\n"
" :type iName: string\n"
" :arg att: The attribute value.\n"
-" :type att: :class:`Mathutils.Vector`, list or tuple of 3 real numbers\n";
+" :type att: :class:`mathutils.Vector`, list or tuple of 3 real numbers\n";
static PyObject * StrokeAttribute_setAttributeVec3f( BPy_StrokeAttribute *self, PyObject *args ) {
char *s;