Sha256: 2d74d781fc2abbea0fc43cdde6bbb39582cc9e97a81c98002441211dfe15503f
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 KB
Contents
/*global define*/ define(['./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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cesium-0.18.0 | app/assets/javascripts/Core/Visibility.js |