diff --git a/Source/Core/SphericalPolygon.js b/Source/Core/SphericalPolygon.js index 1175339e4e3..f15ae2875f1 100644 --- a/Source/Core/SphericalPolygon.js +++ b/Source/Core/SphericalPolygon.js @@ -24,9 +24,6 @@ define([ /** * A simple polygon on the unit sphere {S2}. * - * @alias SphericalPolygon - * @constructor - * * @private */ var SphericalPolygon = function(vertices) { @@ -114,13 +111,6 @@ define([ var nextNormal = new Cartesian3(); var crossProduct = new Cartesian3(); - /** - * DOC_TBA - * - * @memberof SphericalPolygon - * - * @private - */ SphericalPolygon.findConvexHull = function(floats, stride, directionsOffset, sign, initialIndex, finalIndex, hull) { var numberOfVertices = floats.length / stride; @@ -205,13 +195,6 @@ define([ var other = new Cartesian3(); var tempAxis = new Cartesian3(); - /** - * DOC_TBA - * - * @memberof SphericalPolygon.prototype - * - * @private - */ SphericalPolygon.prototype.computeBoundingCone = function(convexHull) { var length = convexHull.length; @@ -243,13 +226,6 @@ define([ } }; - /** - * DOC_TBA - * - * @memberof SphericalPolygon.prototype - * - * @private - */ SphericalPolygon.prototype.computeBoundingCone2 = function() { var convexHull = this.convexHull; var length = convexHull.length; @@ -302,14 +278,11 @@ define([ var finalDirection = new Cartesian3(); defineProperties(SphericalPolygon.prototype, { - /** * Gets a value indicating whether the spherical polygon is convex. * * @memberof SphericalPolygon.prototype * @type {Boolean} - * - * @private */ isConvex : { get: function() { @@ -326,8 +299,6 @@ define([ * * @memberof SphericalPolygon.prototype * @type {Array} - * - * @private */ vertices : { get: function() { @@ -387,8 +358,6 @@ define([ * * @memberof SphericalPolygon.prototype * @type {Array} - * - * @private */ convexHull : { get: function() { @@ -405,8 +374,6 @@ define([ * * @memberof SphericalPolygon.prototype * @type {Cartesian3} - * - * @private */ referenceAxis : { get: function() { @@ -423,8 +390,6 @@ define([ * * @memberof SphericalPolygon.prototype * @type {Number} - * - * @private */ referenceDistance : { get: function() {