PHP 日本大会 2024

绘图路径

(UI 0.9.9)

简介

绘图路径引导绘图笔,告诉笔在哪里在区域上绘图。

类概要

class UI\Draw\Path {
/* 常量 */
const int Winding;
const int Alternate;
/* 构造函数 */
public __construct(int $mode = UI\Draw\Path::Winding)
/* 方法 */
public addRectangle(UI\Point $point, UI\Size $size)
public arcTo(
    UI\Point $point,
    float $radius,
    float $angle,
    float $sweep,
    float $negative
)
public bezierTo(
    UI\Point $point,
    float $radius,
    float $angle,
    float $sweep,
    float $negative
)
public closeFigure()
public end()
public lineTo(
    UI\Point $point,
    float $radius,
    float $angle,
    float $sweep,
    float $negative
)
public newFigure(UI\Point $point)
public newFigureWithArc(
    UI\Point $point,
    float $radius,
    float $angle,
    float $sweep,
    float $negative
)
}

预定义常量

UI\Draw\Path::Winding

这是默认的绘图路径模式

UI\Draw\Path::Alternate

这是备选的绘图路径模式

目录

添加笔记

用户贡献笔记

此页面没有用户贡献的笔记。
To Top