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-24 12:29:48 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-07-24 12:29:48 +0400
commita0359c37506d05589bae86e4818fa653c8f281ab (patch)
tree35927f22801fa65585ac6f076abb29406189dd2a /source/blender/freestyle/intern/view_map/Silhouette.h
parentdd899939dabae68564f7a1d1994b50ee2f2cf8be (diff)
soc-2008-mxcurioni: added (without testing) the following classes: BBox, SShape, ViewShape. Also corrected a few typos (Get#->get#).
Diffstat (limited to 'source/blender/freestyle/intern/view_map/Silhouette.h')
-rwxr-xr-xsource/blender/freestyle/intern/view_map/Silhouette.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/freestyle/intern/view_map/Silhouette.h b/source/blender/freestyle/intern/view_map/Silhouette.h
index c88a3da8967..14d934c6791 100755
--- a/source/blender/freestyle/intern/view_map/Silhouette.h
+++ b/source/blender/freestyle/intern/view_map/Silhouette.h
@@ -963,7 +963,7 @@ public:
// vertices
//---------
vector<SVertex*>::iterator sv,svend;
- vector<SVertex*>& verticesList = iBrother.GetVertexList();
+ vector<SVertex*>& verticesList = iBrother.getVertexList();
for(sv=verticesList.begin(), svend=verticesList.end();
sv!=svend;
sv++)
@@ -977,7 +977,7 @@ public:
// edges
//------
vector<FEdge*>::iterator e,eend;
- vector<FEdge*>& edgesList = iBrother.GetEdgeList();
+ vector<FEdge*>& edgesList = iBrother.getEdgeList();
for(e=edgesList.begin(),eend=edgesList.end();
e!=eend;
e++)
@@ -990,7 +990,7 @@ public:
// starting chain edges
//-------------------------
vector<FEdge*>::iterator fe,fend;
- vector<FEdge*>& fedges = iBrother.GetChains();
+ vector<FEdge*>& fedges = iBrother.getChains();
for(fe=fedges.begin(),fend=fedges.end();
fe!=fend;
fe++)
@@ -1392,10 +1392,10 @@ public:
/* accessors */
/*! Returns the list of SVertex of the Shape. */
- inline vector<SVertex*>& GetVertexList() {return _verticesList;} // Get vertices list
+ inline vector<SVertex*>& getVertexList() {return _verticesList;} // Get vertices list
/*! Returns the list of FEdges of the Shape. */
- inline vector<FEdge*>& GetEdgeList() {return _edgesList;} // Get edges list
- inline vector<FEdge*>& GetChains() {return _chains;}
+ inline vector<FEdge*>& getEdgeList() {return _edgesList;} // Get edges list
+ inline vector<FEdge*>& getChains() {return _chains;}
/*! Returns the bounding box of the shape. */
inline const BBox<Vec3r>& bbox() {return _BBox;}
/*! Returns the ith material of the shape. */