Source: shapes/SurfacePolygon.js

  1. /*
  2. * Copyright 2003-2006, 2009, 2017, United States Government, as represented by the Administrator of the
  3. * National Aeronautics and Space Administration. All rights reserved.
  4. *
  5. * The NASAWorldWind/WebWorldWind platform is licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. /**
  18. * @exports SurfacePolygon
  19. */
  20. define([
  21. '../error/ArgumentError',
  22. '../util/Logger',
  23. '../shapes/ShapeAttributes',
  24. '../shapes/SurfaceShape'
  25. ],
  26. function (ArgumentError,
  27. Logger,
  28. ShapeAttributes,
  29. SurfaceShape) {
  30. "use strict";
  31. /**
  32. * Constructs a surface polygon.
  33. * @alias SurfacePolygon
  34. * @constructor
  35. * @augments SurfaceShape
  36. * @classdesc Represents a polygon draped over the terrain surface. The polygon may have multiple boundaries in
  37. * order to define holes or empty regions.
  38. * <p>
  39. * SurfacePolygon uses the following attributes from its associated shape attributes bundle:
  40. * <ul>
  41. * <li>Draw interior</li>
  42. * <li>Draw outline</li>
  43. * <li>Interior color</li>
  44. * <li>Outline color</li>
  45. * <li>Outline width</li>
  46. * <li>Outline stipple factor</li>
  47. * <li>Outline stipple pattern</li>
  48. * </ul>
  49. * @param {Array} boundaries The polygons boundary locations. If this argument is an array of
  50. * [Locations]{@link Location} they define this polygon's outer boundary. If it is an array of arrays of
  51. * Locations then each array entry defines one of this polygon's boundaries.
  52. * @param {ShapeAttributes} attributes The attributes to apply to this shape. May be null, in which case
  53. * attributes must be set directly before the shape is drawn.
  54. *
  55. * @throws {ArgumentError} If the specified boundaries are null or undefined.
  56. */
  57. var SurfacePolygon = function (boundaries, attributes) {
  58. if (!Array.isArray(boundaries)) {
  59. throw new ArgumentError(
  60. Logger.logMessage(Logger.LEVEL_SEVERE, "SurfacePolygon", "constructor",
  61. "The specified boundary is not an array."));
  62. }
  63. SurfaceShape.call(this, attributes);
  64. this._boundaries = boundaries;
  65. this._stateId = SurfacePolygon.stateId++;
  66. };
  67. SurfacePolygon.prototype = Object.create(SurfaceShape.prototype);
  68. Object.defineProperties(SurfacePolygon.prototype, {
  69. /**
  70. * This polygon's boundaries. The polygons boundary locations. If this argument is an array of
  71. * [Locations]{@link Location} they define this polygon's outer boundary. If it is an array of arrays of
  72. * Locations then each array entry defines one of this polygon's boundaries.
  73. * @type {Location[][] | Location[]}
  74. * @memberof SurfacePolygon.prototype
  75. */
  76. boundaries: {
  77. get: function () {
  78. return this._boundaries;
  79. },
  80. set: function (boundaries) {
  81. if (!Array.isArray(boundaries)) {
  82. throw new ArgumentError(
  83. Logger.logMessage(Logger.LEVEL_SEVERE, "SurfacePolygon", "set boundaries",
  84. "The specified value is not an array."));
  85. }
  86. this.resetBoundaries();
  87. this._boundaries = boundaries;
  88. this._stateId = SurfacePolygon.stateId++;
  89. this.stateKeyInvalid = true;
  90. }
  91. }
  92. });
  93. // Internal use only. Intentionally not documented.
  94. SurfacePolygon.stateId = Number.MIN_SAFE_INTEGER;
  95. // Internal use only. Intentionally not documented.
  96. SurfacePolygon.staticStateKey = function (shape) {
  97. var shapeStateKey = SurfaceShape.staticStateKey(shape);
  98. return shapeStateKey +
  99. " pg " + shape._stateId;
  100. };
  101. // Internal use only. Intentionally not documented.
  102. SurfacePolygon.prototype.computeStateKey = function () {
  103. return SurfacePolygon.staticStateKey(this);
  104. };
  105. // Internal. Polygon doesn't generate its own boundaries. See SurfaceShape.prototype.computeBoundaries.
  106. SurfacePolygon.prototype.computeBoundaries = function(dc) {
  107. };
  108. // Internal use only. Intentionally not documented.
  109. SurfacePolygon.prototype.getReferencePosition = function () {
  110. // Assign the first position as the reference position.
  111. if (this.boundaries.length > 0 && this.boundaries[0].length > 2) {
  112. return this.boundaries[0][0];
  113. } else if (this.boundaries.length > 2) {
  114. return this.boundaries[0];
  115. } else {
  116. return null;
  117. }
  118. };
  119. // Internal use only. Intentionally not documented.
  120. SurfacePolygon.prototype.moveTo = function (globe, position) {
  121. if (this.boundaries.length > 0 && this.boundaries[0].length > 2) {
  122. var boundaries = [];
  123. for (var i = 0, len = this._boundaries.length; i < len; i++) {
  124. var locations = this.computeShiftedLocations(globe, this.getReferencePosition(), position,
  125. this._boundaries[i]);
  126. boundaries.push(locations);
  127. }
  128. this.boundaries = boundaries;
  129. } else if (this.boundaries.length > 2) {
  130. this.boundaries = this.computeShiftedLocations(globe, this.getReferencePosition(), position,
  131. this._boundaries);
  132. }
  133. };
  134. return SurfacePolygon;
  135. });