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 17:40:33 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-07-27 17:40:33 +0400
commit362e4f763f7c4c6d61ee75fec0db567f5bbe2a22 (patch)
treeac4ecdeb67d73bac7488ce573ab63253dd975896 /source/blender/freestyle/intern/python/BPy_Convert.cpp
parent2b2df54aefa61e249d21b09c2f6ca0b82be7bed4 (diff)
soc-2008-mxcurioni: implemented and integrated all 21 original stroke shaders.
Diffstat (limited to 'source/blender/freestyle/intern/python/BPy_Convert.cpp')
-rw-r--r--source/blender/freestyle/intern/python/BPy_Convert.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/freestyle/intern/python/BPy_Convert.cpp b/source/blender/freestyle/intern/python/BPy_Convert.cpp
index d7b8bfa6cce..042d4b7bef0 100644
--- a/source/blender/freestyle/intern/python/BPy_Convert.cpp
+++ b/source/blender/freestyle/intern/python/BPy_Convert.cpp
@@ -204,6 +204,9 @@ IntegrationType IntegrationType_from_BPy_IntegrationType( PyObject* obj ) {
return static_cast<IntegrationType>( PyInt_AsLong(obj) );
}
+Stroke::MediumType MediumType_from_BPy_MediumType( PyObject* obj ) {
+ return static_cast<Stroke::MediumType>( PyInt_AsLong(obj) );
+}
///////////////////////////////////////////////////////////////////////////////////////////