Sha256: a862cd96df6fe8becdf33b4953463a53495bf95515eb920d2737307678744cbe
Contents?: true
Size: 808 Bytes
Versions: 1
Compression:
Stored size: 808 Bytes
Contents
/*global define*/ define(['../Core/Enumeration'], function(Enumeration) { "use strict"; /** * Specifies how to handle mouse events in columbus view mode. * * @exports CameraColumbusViewMode * @see ScreenSpaceCameraController */ var CameraColumbusViewMode = { /** * The camera is free to move about anywhere. * * @type {Enumeration} * @constant * @default 0 */ FREE : new Enumeration(0, 'FREE'), /** * The camera is locked looking at a location, but is free to rotate about that single point. * * @type {Enumeration} * @constant * @default 1 */ LOCKED : new Enumeration(1, 'LOCKED') }; return CameraColumbusViewMode; });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cesium-0.18.0 | app/assets/javascripts/Scene/CameraColumbusViewMode.js |