Sha256: 92759163272cfbcdeb9dd98d2c61451b5b86e4dd0412ab42e19f785ba8474ad8
Contents?: true
Size: 1.77 KB
Versions: 4
Compression:
Stored size: 1.77 KB
Contents
o: ActiveSupport::Cache::Entry :@compressedF:@expires_in0:@created_atf1380709790.936929:@value"�{I" class:ETI"BundledAsset;FI"logical_path;TI"Core/Intersect.js;TI" pathname;TI"O/Users/bogumil/www/engines/cesium/app/assets/javascripts/Core/Intersect.js;FI"content_type;TI"application/javascript;TI" mtime;TI"2013-10-02T12:16:28+02:00;TI"length;Ti�I"digest;TI"%ac2fa7d4b9699e024c2cd05af74b42d0;FI"source;TI"�/*global define*/ define(['Core/Enumeration'], function(Enumeration) { "use strict"; /** * This enumerated type is used in determining where, relative to the frustum, an * object is located. The object can either be fully contained within the frustum (INSIDE), * partially inside the frustum and partially outside (INTERSECTING), or somwhere entirely * outside of the frustum's 6 planes (OUTSIDE). * * @exports Intersect */ var Intersect = { /** * Represents that an object is not contained within the frustum. * * @type {Enumeration} * @constant * @default -1 */ OUTSIDE : new Enumeration(-1, 'OUTSIDE'), /** * Represents that an object intersects one of the frustum's planes. * * @type {Enumeration} * @constant * @default 0 */ INTERSECTING : new Enumeration(0, 'INTERSECTING'), /** * Represents that an object is fully within the frustum. * * @type {Enumeration} * @constant * @default 1 */ INSIDE : new Enumeration(1, 'INSIDE') }; return Intersect; }); ;TI"required_assets_digest;TI"%da4e7e5d56576c20905f8012958417c1;FI" _version;TI"%6776f581a4329e299531e1d52aa59832;F
Version data entries
4 entries across 4 versions & 1 rubygems