Sha256: 1475e591fd87e18801df14eaba1f5414e7f4fc033082b4e2c5c5b9adc963b5dd
Contents?: true
Size: 1.14 KB
Versions: 9
Compression:
Stored size: 1.14 KB
Contents
/*global define*/ define(['Core/Enumeration'], function(Enumeration) { "use strict"; /** * This enumerated type is used in determining to what extent an object, the occludee, * is visible during horizon culling. An occluder may fully block an occludee, in which case * it has no visibility, may partially block an occludee from view, or may not block it at all, * leading to full visibility. * * @exports Visibility */ var Visibility = { /** * Represents that no part of an object is visible. * * @type {Enumeration} * @constant * @default -1 */ NONE : new Enumeration(-1, 'NONE'), /** * Represents that part, but not all, of an object is visible * * @type {Enumeration} * @constant * @default 0 */ PARTIAL : new Enumeration(0, 'PARTIAL'), /** * Represents that an object is visible in its entirety. * * @type {Enumeration} * @constant * @default 1 */ FULL : new Enumeration(1, 'FULL') }; return Visibility; });
Version data entries
9 entries across 9 versions & 1 rubygems