Draw Path

(UI 0.9.9)

简介

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

类摘要

class UI\Draw\Path {
/* 常量 */
const int Winding;
const int Alternate;
/* Constructor */
public function __construct(int $mode = UI\Draw\Path::Winding)
/* 方法 */
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
)
}

预定义常量

UI\Draw\Path::Winding

This is the default draw path mode

UI\Draw\Path::Alternate

This is the alternate draw path mode

目录

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top