Skip to content

Commit

Permalink
Merge pull request #8248 from AnalyticalGraphicsInc/fixEllipsoidGraph…
Browse files Browse the repository at this point in the history
…icsDoc

Fix duplicate documentation in EllipsoidGraphics.
  • Loading branch information
emackey authored Oct 11, 2019
2 parents 85b869c + c0e1e6a commit da3675e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Source/DataSources/EllipsoidGraphics.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,13 @@ import createPropertyDescriptor from './createPropertyDescriptor.js';
* @constructor
*
* @param {Object} [options] Object with the following properties:
* @param {Property} [options.heightReference] A Property specifying what the height from the entity position is relative to.
* @param {Property} [options.show=true] A boolean Property specifying the visibility of the ellipsoid.
* @param {Property} [options.radii] A {@link Cartesian3} Property specifying the radii of the ellipsoid.
* @param {Property} [options.innerRadii] A {@link Cartesian3} Property specifying the inner radii of the ellipsoid.
* @param {Property} [options.minimumClock=0.0] A Property specifying the minimum clock angle of the ellipsoid.
* @param {Property} [options.maximumClock=2*PI] A Property specifying the maximum clock angle of the ellipsoid.
* @param {Property} [options.minimumCone=0.0] A Property specifying the minimum cone angle of the ellipsoid.
* @param {Property} [options.maximumCone=PI] A Property specifying the maximum cone angle of the ellipsoid.
* @param {Property} [options.show=true] A boolean Property specifying the visibility of the ellipsoid.
* @param {Property} [options.radii] A {@link Cartesian3} Property specifying the radii of the ellipsoid.
* @param {Property} [options.heightReference=HeightReference.NONE] A Property specifying what the height from the entity position is relative to.
* @param {Property} [options.fill=true] A boolean Property specifying whether the ellipsoid is filled with the provided material.
* @param {MaterialProperty} [options.material=Color.WHITE] A Property specifying the material used to fill the ellipsoid.
Expand All @@ -43,10 +41,15 @@ import createPropertyDescriptor from './createPropertyDescriptor.js';
this._radii = undefined;
this._radiiSubscription = undefined;
this._innerRadii = undefined;
this._innerRadiiSubscription = undefined;
this._minimumClock = undefined;
this._minimumClockSubscription = undefined;
this._maximumClock = undefined;
this._maximumClockSubscription = undefined;
this._minimumCone = undefined;
this._minimumConeSubscription = undefined;
this._maximumCone = undefined;
this._maximumConeSubscription = undefined;
this._heightReference = undefined;
this._heightReferenceSubscription = undefined;
this._fill = undefined;
Expand Down

0 comments on commit da3675e

Please sign in to comment.