awayjs-display
Version:
AwayJS displaylist classes
21 lines • 859 B
JavaScript
/**
* The GraphicsPathWinding class provides values for the
* <code>flash.display.GraphicsPath.winding</code> property and the
* <code>flash.display.Graphics.drawPath()</code> method to determine the
* direction to draw a path. A clockwise path is positively wound, and a
* counter-clockwise path is negatively wound:
*
* <p> When paths intersect or overlap, the winding direction determines the
* rules for filling the areas created by the intersection or overlap:</p>
*/
var GraphicsPathWinding = (function () {
function GraphicsPathWinding() {
}
GraphicsPathWinding.EVEN_ODD = "evenOdd";
GraphicsPathWinding.NON_ZERO = "nonZero";
return GraphicsPathWinding;
}());
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = GraphicsPathWinding;
//# sourceMappingURL=GraphicsPathWinding.js.map
;