8 void AnimPoint::operator= ( const AnimPoint & other )
13 void AnimPoint::operator= ( const QPointF & other )
20 bool AnimPoint::operator== ( const QPointF& other )
26 bool AnimPoint::operator== ( AnimPoint other )
28 if (rx() != other.rx() ) return false;
29 if (ry() != other.ry() ) return false;
30 if (animated != other.animated ) return false;
35 void AnimPoint::init ()
40 void AnimPoint::copy (AnimPoint other)
44 animated=other.animated;
48 void AnimPoint::setDest(const QPointF &p)
53 void AnimPoint::setAnimated(bool b)
58 bool AnimPoint::isAnimated()
63 void AnimPoint::animate()