/
githubmirror
/
pixijs
Обзор
Документация
Войти
/
githubmirror
/
pixijs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
src/scene/graphics/shared/const.ts
26 строк
695 B
Zyie
chore: add standard/advanced tags to documentation (#11448)
03 июн 2025, 10:12
Не верифицирован
03 июн 2025, 10:12
7d91234
Код
Авторство
О чём код?
/** * The line cap styles for strokes. * * It can be: * - `butt`: The ends of the stroke are squared off at the endpoints. * - `round`: The ends of the stroke are rounded. * @category scene * @standard */ export type LineCap = 'butt' | 'round' | 'square'; /** * The line join styles for strokes. * * It can be: * - `round`: The corners of the stroke are rounded. * - `bevel`: The corners of the stroke are squared off. * - `miter`: The corners of the stroke are extended to meet at a point. * @category scene * @standard */ export type LineJoin = 'round' | 'bevel' | 'miter'; /** @internal */ export const closePointEps = 1e-4; /** @internal */ export const curveEps = 0.0001;