pixi.js
Version:
<p align="center"> <a href="https://pixijs.com" target="_blank" rel="noopener noreferrer"> <img height="150" src="https://files.pixijs.download/branding/pixijs-logo-transparent-dark.svg?v=1" alt="PixiJS logo"> </a> </p> <br/> <p align="center">
26 lines (25 loc) • 712 B
TypeScript
/**
* 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 declare const closePointEps = 0.0001;
/** @internal */
export declare const curveEps = 0.0001;