PHP 8.3.4 Released!

Draw Stroke

(UI 0.9.9)

Giriş

Holds the configuration for the Pen to perform a stroke

Sınıf Sözdizimi

class UI\Draw\Stroke {
/* Constructor */
public __construct(
    int $cap = UI\Draw\Line\Cap::Flat,
    int $join = UI\Draw\Line\Join::Miter,
    float $thickness = 1,
    float $miterLimit = 10
)
/* Yöntemler */
public getCap(): int
public getJoin(): int
public setCap(int $cap)
public setJoin(int $join)
public setMiterLimit(float $limit)
public setThickness(float $thickness)
}

İçindekiler

add a note

User Contributed Notes

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