Revision: 19488
          
http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=19488
Author:   kjym3
Date:     2009-04-01 03:21:11 +0200 (Wed, 01 Apr 2009)

Log Message:
-----------
Added getExactTypeName() method.

Modified Paths:
--------------
    
branches/soc-2008-mxcurioni/source/blender/freestyle/intern/view_map/Silhouette.h

Modified: 
branches/soc-2008-mxcurioni/source/blender/freestyle/intern/view_map/Silhouette.h
===================================================================
--- 
branches/soc-2008-mxcurioni/source/blender/freestyle/intern/view_map/Silhouette.h
   2009-03-31 22:45:11 UTC (rev 19487)
+++ 
branches/soc-2008-mxcurioni/source/blender/freestyle/intern/view_map/Silhouette.h
   2009-04-01 01:21:11 UTC (rev 19488)
@@ -791,6 +791,10 @@
   unsigned _bFrsMaterialIndex;
   
 public:
+  /*! Returns the string "FEdgeSharp" . */
+  virtual string getExactTypeName() const {
+    return "FEdgeSharp";
+  }
   /*! Default constructor. */
   inline FEdgeSharp() : FEdge(){
     _aFrsMaterialIndex = _bFrsMaterialIndex = 0;
@@ -867,6 +871,10 @@
   void * _Face; // In case of exact silhouette, Face is the WFace crossed by 
Fedge 
                // NON GERE PAR LE COPY CONSTRUCTEUR
 public:
+  /*! Returns the string "FEdgeSmooth" . */
+  virtual string getExactTypeName() const {
+    return "FEdgeSmooth";
+  }
   /*! Default constructor. */
   inline FEdgeSmooth() : FEdge(){
     _Face=0;


_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to