Element Class

class QPainterPath::Element

QPainterPath::Element クラスは、サブパスの位置とタイプを指定します。詳細...

パブリック関数

bool isCurveTo() const
bool isLineTo() const
bool isMoveTo() const
QPointF operator QPointF() const
bool operator!=(const QPainterPath::Element &other) const
bool operator==(const QPainterPath::Element &other) const

パブリック変数

QPainterPath::ElementType type
qreal x
qreal y

詳細説明

QPainterPath オブジェクトが構築されると、ラインやカーブのようなサブパスをパスに追加することができます(QPainterPath::LineToElementQPainterPath::CurveToElement コンポーネントを作成します)。

線や曲線はcurrentPosition() から引数として渡された位置まで伸びる。QPainterPath オブジェクトのcurrentPosition() は常に、最後に追加されたサブパスの終了位置(または最初の開始位置)です。moveTo() 関数を使用すると、線や曲線を追加せずにcurrentPosition() を移動し、QPainterPath::MoveToElement コンポーネントを作成することができます。

QPainterPathも参照してください

メンバ関数ドキュメント

bool Element::isCurveTo() const

要素が曲線の場合はtrue を返し、そうでない場合はfalse を返します。

type およびQPainterPath::CurveToElement参照

bool Element::isLineTo() const

要素が線の場合はtrue を返し、それ以外の場合はfalse を返します。

type およびQPainterPath::LineToElement参照して ください.

bool Element::isMoveTo() const

要素が現在位置を移動している場合はtrue を返し,そうでない場合はfalse を返します.

type およびQPainterPath::MoveToElementも参照して ください。

QPointF Element::operator QPointF() const

要素の位置を返します。

x およびyも参照して ください。

bool Element::operator!=(const QPainterPath::Element &other) const

この要素がother と等しくない場合はtrue を返し、そうでない場合はfalse を返します。

operator==()も参照

bool Element::operator==(const QPainterPath::Element &other) const

この要素がother と等しい場合はtrue を返し、そうでない場合はfalse を返します。

operator!=()も参照

メンバ変数ドキュメント

QPainterPath::ElementType Element::type

この変数は要素の型を保持する。

isCurveTo(),isLineTo(),isMoveTo()も参照の こと。

qreal Element::x

この変数は要素の位置のx座標を保持する。

operator QPointF()も参照

qreal Element::y

この変数は要素の位置のy座標を保持する。

operator QPointF()参照のこと

本ドキュメントに含まれる文書の著作権は、それぞれの所有者に帰属します 本書で提供されるドキュメントは、Free Software Foundation が発行したGNU Free Documentation License version 1.3に基づいてライセンスされています。 Qtおよびそれぞれのロゴは、フィンランドおよびその他の国におけるThe Qt Company Ltd.の 商標です。その他すべての商標は、それぞれの所有者に帰属します。