Plane-fa30fc46.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. /**
  2. * Cesium - https://github.com/CesiumGS/cesium
  3. *
  4. * Copyright 2011-2020 Cesium Contributors
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. *
  18. * Columbus View (Pat. Pend.)
  19. *
  20. * Portions licensed separately.
  21. * See https://github.com/CesiumGS/cesium/blob/master/LICENSE.md for full licensing details.
  22. */
  23. define(['exports', './when-54c2dc71', './Check-6c0211bc', './Math-1124a290', './Cartesian2-33d2657c', './Transforms-8be64844'], function (exports, when, Check, _Math, Cartesian2, Transforms) { 'use strict';
  24. /**
  25. * A plane in Hessian Normal Form defined by
  26. * <pre>
  27. * ax + by + cz + d = 0
  28. * </pre>
  29. * where (a, b, c) is the plane's <code>normal</code>, d is the signed
  30. * <code>distance</code> to the plane, and (x, y, z) is any point on
  31. * the plane.
  32. *
  33. * @alias Plane
  34. * @constructor
  35. *
  36. * @param {Cartesian3} normal The plane's normal (normalized).
  37. * @param {Number} distance The shortest distance from the origin to the plane. The sign of
  38. * <code>distance</code> determines which side of the plane the origin
  39. * is on. If <code>distance</code> is positive, the origin is in the half-space
  40. * in the direction of the normal; if negative, the origin is in the half-space
  41. * opposite to the normal; if zero, the plane passes through the origin.
  42. *
  43. * @example
  44. * // The plane x=0
  45. * var plane = new Cesium.Plane(Cesium.Cartesian3.UNIT_X, 0.0);
  46. *
  47. * @exception {DeveloperError} Normal must be normalized
  48. */
  49. function Plane(normal, distance) {
  50. //>>includeStart('debug', pragmas.debug);
  51. Check.Check.typeOf.object("normal", normal);
  52. if (
  53. !_Math.CesiumMath.equalsEpsilon(
  54. Cartesian2.Cartesian3.magnitude(normal),
  55. 1.0,
  56. _Math.CesiumMath.EPSILON6
  57. )
  58. ) {
  59. throw new Check.DeveloperError("normal must be normalized.");
  60. }
  61. Check.Check.typeOf.number("distance", distance);
  62. //>>includeEnd('debug');
  63. /**
  64. * The plane's normal.
  65. *
  66. * @type {Cartesian3}
  67. */
  68. this.normal = Cartesian2.Cartesian3.clone(normal);
  69. /**
  70. * The shortest distance from the origin to the plane. The sign of
  71. * <code>distance</code> determines which side of the plane the origin
  72. * is on. If <code>distance</code> is positive, the origin is in the half-space
  73. * in the direction of the normal; if negative, the origin is in the half-space
  74. * opposite to the normal; if zero, the plane passes through the origin.
  75. *
  76. * @type {Number}
  77. */
  78. this.distance = distance;
  79. }
  80. /**
  81. * Creates a plane from a normal and a point on the plane.
  82. *
  83. * @param {Cartesian3} point The point on the plane.
  84. * @param {Cartesian3} normal The plane's normal (normalized).
  85. * @param {Plane} [result] The object onto which to store the result.
  86. * @returns {Plane} A new plane instance or the modified result parameter.
  87. *
  88. * @example
  89. * var point = Cesium.Cartesian3.fromDegrees(-72.0, 40.0);
  90. * var normal = ellipsoid.geodeticSurfaceNormal(point);
  91. * var tangentPlane = Cesium.Plane.fromPointNormal(point, normal);
  92. *
  93. * @exception {DeveloperError} Normal must be normalized
  94. */
  95. Plane.fromPointNormal = function (point, normal, result) {
  96. //>>includeStart('debug', pragmas.debug);
  97. Check.Check.typeOf.object("point", point);
  98. Check.Check.typeOf.object("normal", normal);
  99. if (
  100. !_Math.CesiumMath.equalsEpsilon(
  101. Cartesian2.Cartesian3.magnitude(normal),
  102. 1.0,
  103. _Math.CesiumMath.EPSILON6
  104. )
  105. ) {
  106. throw new Check.DeveloperError("normal must be normalized.");
  107. }
  108. //>>includeEnd('debug');
  109. var distance = -Cartesian2.Cartesian3.dot(normal, point);
  110. if (!when.defined(result)) {
  111. return new Plane(normal, distance);
  112. }
  113. Cartesian2.Cartesian3.clone(normal, result.normal);
  114. result.distance = distance;
  115. return result;
  116. };
  117. var scratchNormal = new Cartesian2.Cartesian3();
  118. /**
  119. * Creates a plane from the general equation
  120. *
  121. * @param {Cartesian4} coefficients The plane's normal (normalized).
  122. * @param {Plane} [result] The object onto which to store the result.
  123. * @returns {Plane} A new plane instance or the modified result parameter.
  124. *
  125. * @exception {DeveloperError} Normal must be normalized
  126. */
  127. Plane.fromCartesian4 = function (coefficients, result) {
  128. //>>includeStart('debug', pragmas.debug);
  129. Check.Check.typeOf.object("coefficients", coefficients);
  130. //>>includeEnd('debug');
  131. var normal = Cartesian2.Cartesian3.fromCartesian4(coefficients, scratchNormal);
  132. var distance = coefficients.w;
  133. //>>includeStart('debug', pragmas.debug);
  134. if (
  135. !_Math.CesiumMath.equalsEpsilon(
  136. Cartesian2.Cartesian3.magnitude(normal),
  137. 1.0,
  138. _Math.CesiumMath.EPSILON6
  139. )
  140. ) {
  141. throw new Check.DeveloperError("normal must be normalized.");
  142. }
  143. //>>includeEnd('debug');
  144. if (!when.defined(result)) {
  145. return new Plane(normal, distance);
  146. }
  147. Cartesian2.Cartesian3.clone(normal, result.normal);
  148. result.distance = distance;
  149. return result;
  150. };
  151. /**
  152. * Computes the signed shortest distance of a point to a plane.
  153. * The sign of the distance determines which side of the plane the point
  154. * is on. If the distance is positive, the point is in the half-space
  155. * in the direction of the normal; if negative, the point is in the half-space
  156. * opposite to the normal; if zero, the plane passes through the point.
  157. *
  158. * @param {Plane} plane The plane.
  159. * @param {Cartesian3} point The point.
  160. * @returns {Number} The signed shortest distance of the point to the plane.
  161. */
  162. Plane.getPointDistance = function (plane, point) {
  163. //>>includeStart('debug', pragmas.debug);
  164. Check.Check.typeOf.object("plane", plane);
  165. Check.Check.typeOf.object("point", point);
  166. //>>includeEnd('debug');
  167. return Cartesian2.Cartesian3.dot(plane.normal, point) + plane.distance;
  168. };
  169. var scratchCartesian = new Cartesian2.Cartesian3();
  170. /**
  171. * Projects a point onto the plane.
  172. * @param {Plane} plane The plane to project the point onto
  173. * @param {Cartesian3} point The point to project onto the plane
  174. * @param {Cartesian3} [result] The result point. If undefined, a new Cartesian3 will be created.
  175. * @returns {Cartesian3} The modified result parameter or a new Cartesian3 instance if one was not provided.
  176. */
  177. Plane.projectPointOntoPlane = function (plane, point, result) {
  178. //>>includeStart('debug', pragmas.debug);
  179. Check.Check.typeOf.object("plane", plane);
  180. Check.Check.typeOf.object("point", point);
  181. //>>includeEnd('debug');
  182. if (!when.defined(result)) {
  183. result = new Cartesian2.Cartesian3();
  184. }
  185. // projectedPoint = point - (normal.point + scale) * normal
  186. var pointDistance = Plane.getPointDistance(plane, point);
  187. var scaledNormal = Cartesian2.Cartesian3.multiplyByScalar(
  188. plane.normal,
  189. pointDistance,
  190. scratchCartesian
  191. );
  192. return Cartesian2.Cartesian3.subtract(point, scaledNormal, result);
  193. };
  194. var scratchPosition = new Cartesian2.Cartesian3();
  195. /**
  196. * Transforms the plane by the given transformation matrix.
  197. *
  198. * @param {Plane} plane The plane.
  199. * @param {Matrix4} transform The transformation matrix.
  200. * @param {Plane} [result] The object into which to store the result.
  201. * @returns {Plane} The plane transformed by the given transformation matrix.
  202. */
  203. Plane.transform = function (plane, transform, result) {
  204. //>>includeStart('debug', pragmas.debug);
  205. Check.Check.typeOf.object("plane", plane);
  206. Check.Check.typeOf.object("transform", transform);
  207. //>>includeEnd('debug');
  208. Transforms.Matrix4.multiplyByPointAsVector(transform, plane.normal, scratchNormal);
  209. Cartesian2.Cartesian3.normalize(scratchNormal, scratchNormal);
  210. Cartesian2.Cartesian3.multiplyByScalar(plane.normal, -plane.distance, scratchPosition);
  211. Transforms.Matrix4.multiplyByPoint(transform, scratchPosition, scratchPosition);
  212. return Plane.fromPointNormal(scratchPosition, scratchNormal, result);
  213. };
  214. /**
  215. * Duplicates a Plane instance.
  216. *
  217. * @param {Plane} plane The plane to duplicate.
  218. * @param {Plane} [result] The object onto which to store the result.
  219. * @returns {Plane} The modified result parameter or a new Plane instance if one was not provided.
  220. */
  221. Plane.clone = function (plane, result) {
  222. //>>includeStart('debug', pragmas.debug);
  223. Check.Check.typeOf.object("plane", plane);
  224. //>>includeEnd('debug');
  225. if (!when.defined(result)) {
  226. return new Plane(plane.normal, plane.distance);
  227. }
  228. Cartesian2.Cartesian3.clone(plane.normal, result.normal);
  229. result.distance = plane.distance;
  230. return result;
  231. };
  232. /**
  233. * Compares the provided Planes by normal and distance and returns
  234. * <code>true</code> if they are equal, <code>false</code> otherwise.
  235. *
  236. * @param {Plane} left The first plane.
  237. * @param {Plane} right The second plane.
  238. * @returns {Boolean} <code>true</code> if left and right are equal, <code>false</code> otherwise.
  239. */
  240. Plane.equals = function (left, right) {
  241. //>>includeStart('debug', pragmas.debug);
  242. Check.Check.typeOf.object("left", left);
  243. Check.Check.typeOf.object("right", right);
  244. //>>includeEnd('debug');
  245. return (
  246. left.distance === right.distance &&
  247. Cartesian2.Cartesian3.equals(left.normal, right.normal)
  248. );
  249. };
  250. /**
  251. * A constant initialized to the XY plane passing through the origin, with normal in positive Z.
  252. *
  253. * @type {Plane}
  254. * @constant
  255. */
  256. Plane.ORIGIN_XY_PLANE = Object.freeze(new Plane(Cartesian2.Cartesian3.UNIT_Z, 0.0));
  257. /**
  258. * A constant initialized to the YZ plane passing through the origin, with normal in positive X.
  259. *
  260. * @type {Plane}
  261. * @constant
  262. */
  263. Plane.ORIGIN_YZ_PLANE = Object.freeze(new Plane(Cartesian2.Cartesian3.UNIT_X, 0.0));
  264. /**
  265. * A constant initialized to the ZX plane passing through the origin, with normal in positive Y.
  266. *
  267. * @type {Plane}
  268. * @constant
  269. */
  270. Plane.ORIGIN_ZX_PLANE = Object.freeze(new Plane(Cartesian2.Cartesian3.UNIT_Y, 0.0));
  271. exports.Plane = Plane;
  272. });
  273. //# sourceMappingURL=Plane-fa30fc46.js.map