Sha256: 30ada2489361b9face1b3d2ec4222dc4703ae7d3932d98d7e15169151348ce2c
Contents?: true
Size: 941 Bytes
Versions: 7
Compression:
Stored size: 941 Bytes
Contents
/*global define*/ define(['Core/Enumeration'], function(Enumeration) { "use strict"; /** * @exports CornerType */ var CornerType = { /** * ___ * ( ___ * | | * * Corner is circular. * @type {Enumeration} * @constant * @default 0 */ ROUNDED : new Enumeration(0, 'ROUNDED'), /** * ______ * | ___ * | | * * Corner point is the intersection of adjacent edges. * @type {Enumeration} * @constant * @default 1 */ MITERED : new Enumeration(1, 'MITERED'), /** * ___ * / ___ * | | * * Corner is clipped. * @type {Enumeration} * @constant * @default 2 */ BEVELED : new Enumeration(2, 'BEVELED') }; return CornerType; });
Version data entries
7 entries across 7 versions & 1 rubygems