@awayjs/graphics
Version:
AwayJS graphics classes
25 lines • 942 B
TypeScript
/**
* The CapsStyle class is an enumeration of constant values that specify the
* caps style to use in drawing lines. The constants are provided for use as
* values in the <code>caps</code> parameter of the
* <code>flash.display.Graphics.lineStyle()</code> method. You can specify the
* following three types of caps:
*/
export declare class CapsStyle {
/**
* Used to specify round caps in the <code>caps</code> parameter of the
* <code>flash.display.Graphics.lineStyle()</code> method.
*/
static ROUND: number;
/**
* Used to specify no caps in the <code>caps</code> parameter of the
* <code>flash.display.Graphics.lineStyle()</code> method.
*/
static NONE: number;
/**
* Used to specify square caps in the <code>caps</code> parameter of the
* <code>flash.display.Graphics.lineStyle()</code> method.
*/
static SQUARE: number;
}
//# sourceMappingURL=CapsStyle.d.ts.map