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/stroke/CurveIterators.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/stroke/CurveIterators.h')
-rwxr-xr-xsource/blender/freestyle/intern/stroke/CurveIterators.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/freestyle/intern/stroke/CurveIterators.h b/source/blender/freestyle/intern/stroke/CurveIterators.h
index 92f8bf065f4..2ba77a3c478 100755
--- a/source/blender/freestyle/intern/stroke/CurveIterators.h
+++ b/source/blender/freestyle/intern/stroke/CurveIterators.h
@@ -134,7 +134,7 @@ namespace CurveInternal {
return new CurvePointIterator(*this);
}
- inline Interface0DIterator CastToInterface0DIterator() const{
+ inline Interface0DIterator castToInterface0DIterator() const{
Interface0DIterator ret(new CurveInternal::CurvePointIterator(*this));
return ret;
}
@@ -183,7 +183,9 @@ namespace CurveInternal {
return true;
return false;
}
- protected:
+
+// protected:
+
virtual void increment()
{
if((_currentn == _n-1) && (_t == 1.f))