Beispiel #1
0
void UIShape::AddEllipse(qreal Left, qreal Top, qreal Width, qreal Height)
{
    AddEllipse(QRectF(Left, Top, Width, Height));
}
 //AddEllipse----------------------------------------------------------------
 Status GraphicsPath::AddEllipse( const RectF& rect )
 {
     return AddEllipse( rect.X, rect.Y, rect.Width, rect.Height );
 }