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>2013-02-24 06:32:56 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-02-24 06:32:56 +0400
commitd38a335d47f1632000db5172877499ff0184d114 (patch)
tree296dceec7d9a82057f0b7cd7ce33de6771dc8906 /source/blender/freestyle/intern/python/BPy_Iterator.cpp
parent3bd0b8971615d6ddc309aa33a40f7ebf0c25b0c6 (diff)
Code clean-up and fix for typos in docstrings.
Diffstat (limited to 'source/blender/freestyle/intern/python/BPy_Iterator.cpp')
-rw-r--r--source/blender/freestyle/intern/python/BPy_Iterator.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/freestyle/intern/python/BPy_Iterator.cpp b/source/blender/freestyle/intern/python/BPy_Iterator.cpp
index 2f4544d8e02..785a24a47bb 100644
--- a/source/blender/freestyle/intern/python/BPy_Iterator.cpp
+++ b/source/blender/freestyle/intern/python/BPy_Iterator.cpp
@@ -69,47 +69,47 @@ int Iterator_Init(PyObject *module)
return -1;
Py_INCREF(&Interface0DIterator_Type);
PyModule_AddObject(module, "Interface0DIterator", (PyObject *)&Interface0DIterator_Type);
-
+
if (PyType_Ready(&CurvePointIterator_Type) < 0)
return -1;
Py_INCREF(&CurvePointIterator_Type);
PyModule_AddObject(module, "CurvePointIterator", (PyObject *)&CurvePointIterator_Type);
-
+
if (PyType_Ready(&StrokeVertexIterator_Type) < 0)
return -1;
Py_INCREF(&StrokeVertexIterator_Type);
PyModule_AddObject(module, "StrokeVertexIterator", (PyObject *)&StrokeVertexIterator_Type);
-
+
if (PyType_Ready(&SVertexIterator_Type) < 0)
return -1;
Py_INCREF(&SVertexIterator_Type);
PyModule_AddObject(module, "SVertexIterator", (PyObject *)&SVertexIterator_Type);
-
+
if (PyType_Ready(&orientedViewEdgeIterator_Type) < 0)
return -1;
Py_INCREF(&orientedViewEdgeIterator_Type);
PyModule_AddObject(module, "orientedViewEdgeIterator", (PyObject *)&orientedViewEdgeIterator_Type);
-
+
if (PyType_Ready(&ViewEdgeIterator_Type) < 0)
return -1;
Py_INCREF(&ViewEdgeIterator_Type);
PyModule_AddObject(module, "ViewEdgeIterator", (PyObject *)&ViewEdgeIterator_Type);
-
+
if (PyType_Ready(&ChainingIterator_Type) < 0)
return -1;
Py_INCREF(&ChainingIterator_Type);
PyModule_AddObject(module, "ChainingIterator", (PyObject *)&ChainingIterator_Type);
-
+
if (PyType_Ready(&ChainPredicateIterator_Type) < 0)
return -1;
Py_INCREF(&ChainPredicateIterator_Type);
PyModule_AddObject(module, "ChainPredicateIterator", (PyObject *)&ChainPredicateIterator_Type);
-
+
if (PyType_Ready(&ChainSilhouetteIterator_Type) < 0)
return -1;
Py_INCREF(&ChainSilhouetteIterator_Type);
PyModule_AddObject(module, "ChainSilhouetteIterator", (PyObject *)&ChainSilhouetteIterator_Type);
-
+
return 0;
}