Skip to content

Commit f35b743

Browse files
authored
Merge pull request #8955 from CesiumGS/wall-order
Draw walls with positions in order given
2 parents e59a8a9 + 3dc59e8 commit f35b743

File tree

2 files changed

+4
-21
lines changed

2 files changed

+4
-21
lines changed

CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
### 1.71 - 2020-07-01
44

5+
##### Breaking Changes :mega:
6+
7+
- Updated `WallGeometry` to respect the order of positions passed in, instead of making the positions respect a counter clockwise winding order. This will only effect the look of walls with an image material. If this changed the way your wall is drawing, reverse the order of the positions.
8+
59
##### Fixes :wrench:
610

711
- Fixed error with `WallGeoemtry` when there were adjacent positions with very close values [#8952](https://github.com/CesiumGS/cesium/pull/8952)

Source/Core/WallGeometryLibrary.js

-21
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,8 @@ import arrayRemoveDuplicates from "./arrayRemoveDuplicates.js";
22
import Cartesian3 from "./Cartesian3.js";
33
import Cartographic from "./Cartographic.js";
44
import defined from "./defined.js";
5-
import EllipsoidTangentPlane from "./EllipsoidTangentPlane.js";
65
import CesiumMath from "./Math.js";
7-
import PolygonPipeline from "./PolygonPipeline.js";
86
import PolylinePipeline from "./PolylinePipeline.js";
9-
import WindingOrder from "./WindingOrder.js";
107

118
/**
129
* @private
@@ -132,24 +129,6 @@ WallGeometryLibrary.computePositions = function (
132129
maximumHeights = o.topHeights;
133130
minimumHeights = o.bottomHeights;
134131

135-
if (wallPositions.length >= 3) {
136-
// Order positions counter-clockwise
137-
var tangentPlane = EllipsoidTangentPlane.fromPoints(
138-
wallPositions,
139-
ellipsoid
140-
);
141-
var positions2D = tangentPlane.projectPointsOntoPlane(wallPositions);
142-
143-
if (
144-
PolygonPipeline.computeWindingOrder2D(positions2D) ===
145-
WindingOrder.CLOCKWISE
146-
) {
147-
wallPositions.reverse();
148-
maximumHeights.reverse();
149-
minimumHeights.reverse();
150-
}
151-
}
152-
153132
var length = wallPositions.length;
154133
var numCorners = length - 2;
155134
var topPositions;

0 commit comments

Comments
 (0)