Skip to content

Commit

Permalink
Fix JSDoc parameter type for ClippingPolygon equals
Browse files Browse the repository at this point in the history
  • Loading branch information
javagl committed Dec 25, 2024
1 parent 3055909 commit 92027ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/engine/Source/Scene/ClippingPolygon.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ ClippingPolygon.clone = function (polygon, result) {
* Compares the provided ClippingPolygons and returns
* <code>true</code> if they are equal, <code>false</code> otherwise.
*
* @param {Plane} left The first polygon.
* @param {Plane} right The second polygon.
* @param {ClippingPolygon} left The first polygon.
* @param {ClippingPolygon} right The second polygon.
* @returns {boolean} <code>true</code> if left and right are equal, <code>false</code> otherwise.
*/
ClippingPolygon.equals = function (left, right) {
Expand Down

0 comments on commit 92027ec

Please sign in to comment.