123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- /*global define*/
- define([
- '../Core/defaultValue',
- '../Core/defined',
- '../Core/defineProperties',
- '../Core/DeveloperError',
- '../Core/Event',
- './createPropertyDescriptor'
- ], function(
- defaultValue,
- defined,
- defineProperties,
- DeveloperError,
- Event,
- createPropertyDescriptor) {
- "use strict";
- /**
- * An optionally time-dynamic ellipse.
- *
- * @alias EllipseGraphics
- * @constructor
- */
- var EllipseGraphics = function() {
- this._semiMajorAxis = undefined;
- this._semiMajorAxisSubscription = undefined;
- this._semiMinorAxis = undefined;
- this._semiMinorAxisSubscription = undefined;
- this._rotation = undefined;
- this._rotationSubscription = undefined;
- this._show = undefined;
- this._showSubscription = undefined;
- this._material = undefined;
- this._materialSubscription = undefined;
- this._height = undefined;
- this._heightSubscription = undefined;
- this._extrudedHeight = undefined;
- this._extrudedHeightSubscription = undefined;
- this._granularity = undefined;
- this._granularitySubscription = undefined;
- this._stRotation = undefined;
- this._stRotationSubscription = undefined;
- this._outline = undefined;
- this._outlineSubscription = undefined;
- this._outlineColor = undefined;
- this._outlineColorSubscription = undefined;
- this._outlineWidth = undefined;
- this._outlineWidthSubscription = undefined;
- this._numberOfVerticalLines = undefined;
- this._numberOfVerticalLinesSubscription = undefined;
- this._definitionChanged = new Event();
- };
- defineProperties(EllipseGraphics.prototype, {
- /**
- * Gets the event that is raised whenever a new property is assigned.
- * @memberof EllipseGraphics.prototype
- *
- * @type {Event}
- * @readonly
- */
- definitionChanged : {
- get : function() {
- return this._definitionChanged;
- }
- },
- /**
- * Gets or sets the numeric {@link Property} specifying the ellipse's semi-major-axis.
- * @memberof EllipseGraphics.prototype
- * @type {Property}
- */
- semiMajorAxis : createPropertyDescriptor('semiMajorAxis'),
- /**
- * Gets or sets the numeric {@link Property} specifying the ellipse's semi-minor-axis.
- * @memberof EllipseGraphics.prototype
- * @type {Property}
- */
- semiMinorAxis : createPropertyDescriptor('semiMinorAxis'),
- /**
- * Gets or sets the numeric {@link Property} specifying the ellipse's rotation.
- * @memberof EllipseGraphics.prototype
- * @type {Property}
- */
- rotation : createPropertyDescriptor('rotation'),
- /**
- * Gets or sets the boolean {@link Property} specifying the polygon's visibility.
- * @memberof EllipseGraphics.prototype
- * @type {Property}
- */
- show : createPropertyDescriptor('show'),
- /**
- * Gets or sets the {@link MaterialProperty} specifying the appearance of the polygon.
- * @memberof EllipseGraphics.prototype
- * @type {MaterialProperty}
- */
- material : createPropertyDescriptor('material'),
- /**
- * Gets or sets the Number {@link Property} specifying the height of the polygon.
- * If undefined, the polygon will be on the surface.
- * @memberof EllipseGraphics.prototype
- * @type {Property}
- */
- height : createPropertyDescriptor('height'),
- /**
- * Gets or sets the Number {@link Property} specifying the extruded height of the polygon.
- * Setting this property creates a polygon shaped volume starting at height and ending
- * at the extruded height.
- * @memberof EllipseGraphics.prototype
- * @type {Property}
- */
- extrudedHeight : createPropertyDescriptor('extrudedHeight'),
- /**
- * Gets or sets the Number {@link Property} specifying the sampling distance, in radians,
- * between each latitude and longitude point.
- * @memberof EllipseGraphics.prototype
- * @type {Property}
- */
- granularity : createPropertyDescriptor('granularity'),
- /**
- * Gets or sets the Number {@link Property} specifying the rotation of the texture coordinates,
- * in radians. A positive rotation is counter-clockwise.
- * @memberof EllipseGraphics.prototype
- * @type {Property}
- */
- stRotation : createPropertyDescriptor('stRotation'),
- /**
- * Gets or sets the Boolean {@link Property} specifying whether the ellipse should be filled.
- * @memberof EllipseGraphics.prototype
- * @type {Property}
- */
- fill : createPropertyDescriptor('fill'),
- /**
- * Gets or sets the Boolean {@link Property} specifying whether the ellipse should be outlined.
- * @memberof EllipseGraphics.prototype
- * @type {Property}
- */
- outline : createPropertyDescriptor('outline'),
- /**
- * Gets or sets the Color {@link Property} specifying the color of the outline.
- * @memberof EllipseGraphics.prototype
- * @type {Property}
- */
- outlineColor : createPropertyDescriptor('outlineColor'),
- /**
- * Gets or sets the Number {@link Property} specifying the width of the outline.
- * @memberof EllipseGraphics.prototype
- * @type {Property}
- */
- outlineWidth : createPropertyDescriptor('outlineWidth'),
- /**
- * Gets or sets the Number {@link Property} specifying the number of vertical lines
- * to use when outlining the ellipse.
- * @memberof EllipseGraphics.prototype
- * @type {Property}
- */
- numberOfVerticalLines : createPropertyDescriptor('numberOfVerticalLines')
- });
- /**
- * Duplicates a EllipseGraphics instance.
- *
- * @param {EllipseGraphics} [result] The object onto which to store the result.
- * @returns {EllipseGraphics} The modified result parameter or a new instance if one was not provided.
- */
- EllipseGraphics.prototype.clone = function(result) {
- if (!defined(result)) {
- result = new EllipseGraphics();
- }
- result.rotation = this.rotation;
- result.semiMajorAxis = this.semiMajorAxis;
- result.semiMinorAxis = this.semiMinorAxis;
- result.show = this.show;
- result.material = this.material;
- result.height = this.height;
- result.extrudedHeight = this.extrudedHeight;
- result.granularity = this.granularity;
- result.stRotation = this.stRotation;
- result.fill = this.fill;
- result.outline = this.outline;
- result.outlineColor = this.outlineColor;
- result.outlineWidth = this.outlineWidth;
- result.numberOfVerticalLines = this.numberOfVerticalLines;
- return result;
- };
- /**
- * Assigns each unassigned property on this object to the value
- * of the same property on the provided source object.
- *
- * @param {EllipseGraphics} source The object to be merged into this object.
- */
- EllipseGraphics.prototype.merge = function(source) {
- //>>includeStart('debug', pragmas.debug);
- if (!defined(source)) {
- throw new DeveloperError('source is required.');
- }
- //>>includeEnd('debug');
- this.rotation = defaultValue(this.rotation, source.rotation);
- this.semiMajorAxis = defaultValue(this.semiMajorAxis, source.semiMajorAxis);
- this.semiMinorAxis = defaultValue(this.semiMinorAxis, source.semiMinorAxis);
- this.show = defaultValue(this.show, source.show);
- this.material = defaultValue(this.material, source.material);
- this.height = defaultValue(this.height, source.height);
- this.extrudedHeight = defaultValue(this.extrudedHeight, source.extrudedHeight);
- this.granularity = defaultValue(this.granularity, source.granularity);
- this.stRotation = defaultValue(this.stRotation, source.stRotation);
- this.fill = defaultValue(this.fill, source.fill);
- this.outline = defaultValue(this.outline, source.outline);
- this.outlineColor = defaultValue(this.outlineColor, source.outlineColor);
- this.outlineWidth = defaultValue(this.outlineWidth, source.outlineWidth);
- this.numberOfVerticalLines = defaultValue(this.numberOfVerticalLines, source.numberOfVerticalLines);
- };
- return EllipseGraphics;
- });
|