Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/stroke/StrokeIterators.h
| Context not available. | |||||
| return _it == _begin; | return _it == _begin; | ||||
| } | } | ||||
| /*! Returns true if the pointed StrokeVertex is the final valid StrokeVertex of the Stroke. */ | |||||
| bool isLast() const | |||||
| { | |||||
| if (_it == _end) | |||||
| return false; | |||||
| return (this)->castToInterface0DIterator().isLast(); | |||||
| } | |||||
| /*! Returns true if the pointed StrokeVertex is after the last StrokeVertex of the Stroke. */ | /*! Returns true if the pointed StrokeVertex is after the last StrokeVertex of the Stroke. */ | ||||
| bool isEnd() const | bool isEnd() const | ||||
| { | { | ||||
| Context not available. | |||||