Skip to content

Commit

Permalink
Cleaned doc
Browse files Browse the repository at this point in the history
  • Loading branch information
pjcozzi committed Apr 25, 2014
1 parent 65398ce commit 5ec5ec3
Showing 1 changed file with 0 additions and 35 deletions.
35 changes: 0 additions & 35 deletions Source/Core/SphericalPolygon.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ define([
/**
* A simple polygon on the unit sphere {S2}.
*
* @alias SphericalPolygon
* @constructor
*
* @private
*/
var SphericalPolygon = function(vertices) {
Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -243,13 +226,6 @@ define([
}
};

/**
* DOC_TBA
*
* @memberof SphericalPolygon.prototype
*
* @private
*/
SphericalPolygon.prototype.computeBoundingCone2 = function() {
var convexHull = this.convexHull;
var length = convexHull.length;
Expand Down Expand Up @@ -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() {
Expand All @@ -326,8 +299,6 @@ define([
*
* @memberof SphericalPolygon.prototype
* @type {Array}
*
* @private
*/
vertices : {
get: function() {
Expand Down Expand Up @@ -387,8 +358,6 @@ define([
*
* @memberof SphericalPolygon.prototype
* @type {Array}
*
* @private
*/
convexHull : {
get: function() {
Expand All @@ -405,8 +374,6 @@ define([
*
* @memberof SphericalPolygon.prototype
* @type {Cartesian3}
*
* @private
*/
referenceAxis : {
get: function() {
Expand All @@ -423,8 +390,6 @@ define([
*
* @memberof SphericalPolygon.prototype
* @type {Number}
*
* @private
*/
referenceDistance : {
get: function() {
Expand Down

0 comments on commit 5ec5ec3

Please sign in to comment.