Draw Path

(UI 0.9.9)

Giriş

A Draw Path guides a Draw Pen, telling the Pen where to draw on an Area.

Sınıf Sözdizimi

class UI\Draw\Path {
/* Sabitler */
const int Winding;
const int Alternate;
/* Constructor */
public function __construct(int $mode = UI\Draw\Path::Winding)
/* Yöntemler */
public function addRectangle(UI\Point $point, UI\Size $size)
public function arcTo(
    UI\Point $point,
    float $radius,
    float $angle,
    float $sweep,
    float $negative
)
public function bezierTo(
    UI\Point $point,
    float $radius,
    float $angle,
    float $sweep,
    float $negative
)
public function closeFigure()
public function end()
public function lineTo(
    UI\Point $point,
    float $radius,
    float $angle,
    float $sweep,
    float $negative
)
public function newFigure(UI\Point $point)
public function newFigureWithArc(
    UI\Point $point,
    float $radius,
    float $angle,
    float $sweep,
    float $negative
)
}

Öntanımlı Sabitler

UI\Draw\Path::Winding

This is the default draw path mode

UI\Draw\Path::Alternate

This is the alternate draw path mode

İçindekiler

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top