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>2009-04-01 05:21:11 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-04-01 05:21:11 +0400
commit044c2b1fc40e7915f6769ef4826d05972df37630 (patch)
tree028f910cba3ddcb650b399a15c781895d6662906 /source/blender/freestyle/intern/view_map/Silhouette.h
parent67e4d7dc63a6654b848d9966991ca2b507b78aa7 (diff)
Added getExactTypeName() method.
Diffstat (limited to 'source/blender/freestyle/intern/view_map/Silhouette.h')
-rwxr-xr-xsource/blender/freestyle/intern/view_map/Silhouette.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/freestyle/intern/view_map/Silhouette.h b/source/blender/freestyle/intern/view_map/Silhouette.h
index b8e7d66efcc..a928eb87cc9 100755
--- a/source/blender/freestyle/intern/view_map/Silhouette.h
+++ b/source/blender/freestyle/intern/view_map/Silhouette.h
@@ -791,6 +791,10 @@ protected:
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 @@ protected:
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;