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-08-02 11:39:49 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-08-02 11:39:49 +0400
commite385d69580de32df6dcfd009853ddd4eb8a3191e (patch)
treeef141019b1e00f03da689be0cea0b1a1bf6eb457 /source/blender/freestyle/intern/view_map/Interface1D.h
parent7565990db264dbb7771744cea0a1c87b3e11fc3f (diff)
soc-2008-mxcurioni: Made crucial corrections to stabilize the system. Most of the original styles are supported: stroke attributes are correctly taken into account, Python shaders are supported. Added SamplingShader.
Diffstat (limited to 'source/blender/freestyle/intern/view_map/Interface1D.h')
-rwxr-xr-xsource/blender/freestyle/intern/view_map/Interface1D.h35
1 files changed, 27 insertions, 8 deletions
diff --git a/source/blender/freestyle/intern/view_map/Interface1D.h b/source/blender/freestyle/intern/view_map/Interface1D.h
index 55a2aece91c..44822005705 100755
--- a/source/blender/freestyle/intern/view_map/Interface1D.h
+++ b/source/blender/freestyle/intern/view_map/Interface1D.h
@@ -212,22 +212,41 @@ public:
/*! Returns the 2D length of the 1D element. */
virtual real getLength2D() const {
- cerr << "Warning: method getLength2D() not implemented" << endl;
- return 0;
+ string name( py_if1D ? PyString_AsString(PyObject_CallMethod(py_if1D, "getExactTypeName", "")) : getExactTypeName() );
+
+ if( py_if1D && PyObject_HasAttrString(py_if1D, "getLength2D") ) {
+ return Director_BPy_Interface1D_getLength2D(py_if1D);
+ } else {
+ cerr << "Warning: " << name << " getLength2D() not implemented" << endl;
+ return 0;
+ }
}
/*! Returns the Id of the 1D element .*/
virtual Id getId() const {
- cerr << "Warning: method getId() not implemented" << endl;
- return Id(0, 0);
- }
+ string name( py_if1D ? PyString_AsString(PyObject_CallMethod(py_if1D, "getExactTypeName", "")) : getExactTypeName() );
+
+ if( py_if1D && PyObject_HasAttrString(py_if1D, "getId") ) {
+ return Director_BPy_Interface1D_getId(py_if1D);
+ } else {
+ cerr << "Warning: " << name << " getId() not implemented" << endl;
+ return Id(0, 0);
+ }
+ }
+
// FIXME: ce truc n'a rien a faire la...(c une requete complexe qui doit etre ds les Function1D)
/*! Returns the nature of the 1D element. */
virtual Nature::EdgeNature getNature() const {
- cerr << "Warning: method getNature() not implemented" << endl;
- return Nature::NO_FEATURE;
- }
+ string name( py_if1D ? PyString_AsString(PyObject_CallMethod(py_if1D, "getExactTypeName", "")) : getExactTypeName() );
+
+ if( py_if1D && PyObject_HasAttrString(py_if1D, "getNature") ) {
+ return Director_BPy_Interface1D_getNature(py_if1D);
+ } else {
+ cerr << "Warning: " << name << " getNature() not implemented" << endl;
+ return Nature::NO_FEATURE;
+ }
+ }
/*! Returns the time stamp of the 1D element. Mainly used for selection. */
virtual unsigned getTimeStamp() const {