Home
last modified time | relevance | path

Searched refs:AnimatedCycle (Results 1 – 11 of 11) sorted by relevance

/dports/graphics/vpaint/vpaint-1.7/src/Gui/VectorAnimationComplex/
H A DAnimatedCycle.h28 namespace VectorAnimationComplex { class AnimatedCycle; } variable
29 QTextStream & operator<<(QTextStream &, const VectorAnimationComplex::AnimatedCycle &);
30 QTextStream & operator>>(QTextStream &, VectorAnimationComplex::AnimatedCycle &);
96 class AnimatedCycle
99 AnimatedCycle();
102 AnimatedCycle(const AnimatedCycle & other);
103 AnimatedCycle & operator=(const AnimatedCycle & other);
104 ~AnimatedCycle();
138 friend QTextStream & ::operator<<(QTextStream & out, const AnimatedCycle & cycle);
139 friend QTextStream & ::operator>>(QTextStream & in, AnimatedCycle & cycle);
[all …]
H A DAnimatedCycle.cpp223 AnimatedCycle::AnimatedCycle() : in AnimatedCycle() function in VectorAnimationComplex::AnimatedCycle
228 AnimatedCycle::AnimatedCycle(AnimatedCycleNode * first) : in AnimatedCycle() function in VectorAnimationComplex::AnimatedCycle
233 AnimatedCycle::AnimatedCycle(const AnimatedCycle & other) : in AnimatedCycle() function in VectorAnimationComplex::AnimatedCycle
239 AnimatedCycle & AnimatedCycle::operator=(const AnimatedCycle & other) in operator =()
247 AnimatedCycle::~AnimatedCycle() in ~AnimatedCycle()
252 void AnimatedCycle::clear() in clear()
260 void AnimatedCycle::copyFrom(const AnimatedCycle & other) in copyFrom()
345 CellSet AnimatedCycle::cells() const in cells()
362 KeyCellSet AnimatedCycle::afterCells() const in afterCells()
1145 QString AnimatedCycle::toString() const in toString()
[all …]
H A DInbetweenFace.h33 const QList<AnimatedCycle> & cycles,
44 void addAnimatedCycle(const AnimatedCycle & cycle); // must be valid
45 void setCycle(int i, const AnimatedCycle & cycle); // must be valid
61 AnimatedCycle animatedCycle(int i) const;
79 QList<AnimatedCycle> cycles_;
H A DInbetweenFace.cpp206 PolygonData createPolygonData(const QList<AnimatedCycle> & cycles, Time time) in createPolygonData()
214 AnimatedCycle cycle = cycles[k]; in createPolygonData()
226 void computeTrianglesFromCycles(const QList<AnimatedCycle> & cycles, Triangles & triangles, Time ti… in computeTrianglesFromCycles()
310 const QList<AnimatedCycle> & cycles, in InbetweenFace()
326 cycles_ << AnimatedCycle(); in addAnimatedCycle()
329 void InbetweenFace::addAnimatedCycle(const AnimatedCycle & cycle) // must be valid in addAnimatedCycle()
335 void InbetweenFace::setCycle(int i, const AnimatedCycle & cycle) // must be valid in setCycle()
395 AnimatedCycle InbetweenFace::animatedCycle(int i) const in animatedCycle()
660 cycles_ << AnimatedCycle(); in InbetweenFace()
H A DVAC.h49 class AnimatedCycle; variable
295 InbetweenFace * newInbetweenFace(const QList<AnimatedCycle> & cycles,
H A DVAC.cpp1673 InbetweenFace * VAC::newInbetweenFace(const QList<AnimatedCycle> & cycles, in newInbetweenFace()
5035 InbetweenFace * inbetweenFaceBefore = newInbetweenFace(QList<AnimatedCycle>(), in keyframe_()
5038 InbetweenFace * inbetweenFaceAfter = newInbetweenFace(QList<AnimatedCycle>(), in keyframe_()
5049 AnimatedCycle beforeCycle = sface->animatedCycle(i); in keyframe_()
5050 AnimatedCycle afterCycle = sface->animatedCycle(i); in keyframe_()
5091 AnimatedCycle animatedCycle = sface->animatedCycle(i); in keyframe_()
5788 QList<AnimatedCycle> cycles; in motionPaste()
5792 AnimatedCycle cycle; in motionPaste()
5845 cycles << AnimatedCycle(nodes.first()); in motionPaste()
/dports/graphics/vpaint/vpaint-1.7/src/Gui/
H A DAnimatedCycleWidget.h123 void setAnimatedCycle(const AnimatedCycle & animatedCycle);
133 AnimatedCycle getAnimatedCycle() const;
180 AnimatedCycle animatedCycle_;
H A DGui.pro136 VectorAnimationComplex/AnimatedCycle.h \
230 VectorAnimationComplex/AnimatedCycle.cpp \
H A DObjectPropertiesWidget.cpp237 animatedCycleWidget_->setAnimatedCycle(AnimatedCycle()); in hideAnimatedCycleWidgets()
H A DAnimatedCycleWidget.cpp623 void AnimatedCycleWidget::setAnimatedCycle(const AnimatedCycle & animatedCycle) in setAnimatedCycle()
660 AnimatedCycle AnimatedCycleWidget::getAnimatedCycle() const in getAnimatedCycle()
H A DScene.cpp761 QList<VectorAnimationComplex::AnimatedCycle>(), in createInbetweenFace()