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/ViewMapIO.cpp
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/ViewMapIO.cpp')
-rwxr-xr-xsource/blender/freestyle/intern/view_map/ViewMapIO.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/freestyle/intern/view_map/ViewMapIO.cpp b/source/blender/freestyle/intern/view_map/ViewMapIO.cpp
index 370f44dffcf..3591c67ce1f 100755
--- a/source/blender/freestyle/intern/view_map/ViewMapIO.cpp
+++ b/source/blender/freestyle/intern/view_map/ViewMapIO.cpp
@@ -628,24 +628,24 @@ namespace ViewMapIO {
save(out, vs->sshape()->material(i));
// -> VerticesList (List)
- tmp = vs->sshape()->GetVertexList().size();
+ tmp = vs->sshape()->getVertexList().size();
WRITE(tmp);
- for (vector<SVertex*>::const_iterator i1 = vs->sshape()->GetVertexList().begin();
- i1 != vs->sshape()->GetVertexList().end(); i1++)
+ for (vector<SVertex*>::const_iterator i1 = vs->sshape()->getVertexList().begin();
+ i1 != vs->sshape()->getVertexList().end(); i1++)
WRITE_IF_NON_NULL(*i1);
// -> Chains (List)
- tmp = vs->sshape()->GetChains().size();
+ tmp = vs->sshape()->getChains().size();
WRITE(tmp);
- for (vector<FEdge*>::const_iterator i2 = vs->sshape()->GetChains().begin();
- i2 != vs->sshape()->GetChains().end(); i2++)
+ for (vector<FEdge*>::const_iterator i2 = vs->sshape()->getChains().begin();
+ i2 != vs->sshape()->getChains().end(); i2++)
WRITE_IF_NON_NULL(*i2);
// -> EdgesList (List)
- tmp = vs->sshape()->GetEdgeList().size();
+ tmp = vs->sshape()->getEdgeList().size();
WRITE(tmp);
- for (vector<FEdge*>::const_iterator i3 = vs->sshape()->GetEdgeList().begin();
- i3 != vs->sshape()->GetEdgeList().end(); i3++)
+ for (vector<FEdge*>::const_iterator i3 = vs->sshape()->getEdgeList().begin();
+ i3 != vs->sshape()->getEdgeList().end(); i3++)
WRITE_IF_NON_NULL(*i3);
// ViewEdges (List)