示例#1
0
文件: arch.cpp 项目: nfrey/qreal
Arch::Arch(Arch const &other)
    :Item()
{
    mNeedScalingRect = other.mNeedScalingRect ;
    mPen = other.mPen;
    mBrush = other.mBrush;
    mDomElementType = pictureType;
    mX1 = other.mX1;
    mX2 = other.mX2;
    mY1 = other.mY1;
    mY2 = other.mY2;
    mSpanAngle = other.mSpanAngle;
    mStartAngle = other.mStartAngle;
    mRect = other.mRect;
    mListScalePoint = other.mListScalePoint;
    setPos(other.x(), other.y());
}