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:
authorMaxime Curioni <maxime.curioni@gmail.com>2008-07-27 00:05:55 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-07-27 00:05:55 +0400
commit5718639a79b51241f348eb241d2379ade06cd787 (patch)
tree068d394ac7ae8927a6e7ad90c9248d89a4b8f25d /source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.h
parent13364bf2085097a8183c65242b3aba8f7d5c163b (diff)
soc-2008-mxcurioni: implemented (but did not test) ChainPredicateIterator and ChainSilhouetteIterator
Diffstat (limited to 'source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.h')
-rw-r--r--source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.h b/source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.h
index 7fa0a3e2703..c5d32fb01f3 100644
--- a/source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.h
+++ b/source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.h
@@ -2,9 +2,9 @@
#define FREESTYLE_PYTHON_CHAINPREDICATEITERATOR_H
-#include "../../view_map/ChainingIterators.h"
+#include "../../stroke/ChainingIterators.h"
-#include "BPy_ChainPredicateIterator.h"
+#include "BPy_ChainingIterator.h"
#ifdef __cplusplus
extern "C" {
@@ -20,7 +20,7 @@ extern PyTypeObject ChainPredicateIterator_Type;
/*---------------------------Python BPy_ChainPredicateIterator structure definition----------*/
typedef struct {
- ChainingIterator py_c_it;
+ BPy_ChainingIterator py_c_it;
ChainPredicateIterator *cp_it;
} BPy_ChainPredicateIterator;