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>2009-03-14 16:06:09 +0300
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-03-14 16:06:09 +0300
commitc14e91590efd56959eaaaddc47c16817973c59de (patch)
tree4a99f0be1572284162b031cb5b4b3dc5b32b07bd /source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ShapeUP1D.cpp
parentc8ac7723d61a4368905accd990f4e6b117cb7a16 (diff)
Fixed StrokeVertex::setPoint() to accept a Blender Vector object as the argument.
Now this method accepts 2D coordinates in the following three forms: a) Python list of 2 real numbers: setPoint([x, y]) b) Blender Vector of 2 elements: setPoint(Vector(x, y)) c) 2 real numbers: setPoint(x, y)
Diffstat (limited to 'source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ShapeUP1D.cpp')
-rw-r--r--source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ShapeUP1D.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ShapeUP1D.cpp b/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ShapeUP1D.cpp
index 9e5312275bf..9e63e43cd6d 100644
--- a/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ShapeUP1D.cpp
+++ b/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ShapeUP1D.cpp
@@ -100,7 +100,7 @@ int ShapeUP1D___init__( BPy_ShapeUP1D* self, PyObject *args )
{
unsigned u1, u2 = 0;
- if( !PyArg_ParseTuple(args, "II", &u1, &u2) ) {
+ if( !PyArg_ParseTuple(args, "I|I", &u1, &u2) ) {
cout << "ERROR: ShapeUP1D___init__" << endl;
return -1;
}