UNPKG

awayjs-display

Version:
31 lines 1.12 kB
"use strict"; /** * 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: */ var CapsStyle = (function () { function CapsStyle() { } /** * Used to specify round caps in the <code>caps</code> parameter of the * <code>flash.display.Graphics.lineStyle()</code> method. */ CapsStyle.ROUND = "round"; /** * Used to specify no caps in the <code>caps</code> parameter of the * <code>flash.display.Graphics.lineStyle()</code> method. */ CapsStyle.NONE = "none"; /** * Used to specify square caps in the <code>caps</code> parameter of the * <code>flash.display.Graphics.lineStyle()</code> method. */ CapsStyle.SQUARE = "square"; return CapsStyle; }()); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = CapsStyle; //# sourceMappingURL=CapsStyle.js.map