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-26 01:56:06 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-07-26 01:56:06 +0400
commit51f9082c964fda6ba90aa5b503a06f22c5a9ee60 (patch)
tree973f0d301c3e21a8b3bc2501a38ebb727020dcb3 /source/blender/freestyle/intern/view_map/ViewMap.h
parentdc385c59ea12ceb32e18baf4da46905327ea1103 (diff)
soc-2008-mxcurioni: added (but did not test) NonTVertex and TVertex classes. All Interface0D structures have been implemented
Diffstat (limited to 'source/blender/freestyle/intern/view_map/ViewMap.h')
-rwxr-xr-xsource/blender/freestyle/intern/view_map/ViewMap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/freestyle/intern/view_map/ViewMap.h b/source/blender/freestyle/intern/view_map/ViewMap.h
index 2ddeb198fff..e4b0d915ada 100755
--- a/source/blender/freestyle/intern/view_map/ViewMap.h
+++ b/source/blender/freestyle/intern/view_map/ViewMap.h
@@ -465,7 +465,7 @@ public:
/* modifiers */
/*! Sets the SVertex that is closer to the viewpoint. */
- inline void setFrontVertex(SVertex *iFrontSVertex) {_FrontSVertex = iFrontSVertex;_FrontSVertex->setViewVertex(this);}
+ inline void setFrontSVertex(SVertex *iFrontSVertex) {_FrontSVertex = iFrontSVertex;_FrontSVertex->setViewVertex(this);}
/*! Sets the SVertex that is further away from the viewpoint. */
inline void setBackSVertex(SVertex *iBackSVertex) {_BackSVertex = iBackSVertex;_BackSVertex->setViewVertex(this);}
void setFrontEdgeA(ViewEdge *iFrontEdgeA, bool incoming=true);
@@ -476,7 +476,7 @@ public:
inline void setId(const Id& iId) {_Id = iId;}
/*! Returns the SVertex (among the 2) belonging to the FEdge iFEdge */
- inline SVertex * GetSVertex(FEdge *iFEdge)
+ inline SVertex * getSVertex(FEdge *iFEdge)
{
const vector<FEdge*>& vfEdges = _FrontSVertex->fedges();
vector<FEdge*>::const_iterator fe,fend;