Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clipping planes updates #6045

Merged
merged 10 commits into from
Dec 13, 2017
Merged

Clipping planes updates #6045

merged 10 commits into from
Dec 13, 2017

Conversation

ggetz
Copy link
Contributor

@ggetz ggetz commented Dec 11, 2017

Added collection methods to ClippingPlaneCollection, and general clipping planes and plane geometry fixes.

@hpinkos addresses the issues brought up in the last PR, including the bugs listed there.

@ggetz ggetz requested a review from hpinkos December 11, 2017 22:52
@cesium-concierge
Copy link

Signed CLA is on file.

@ggetz, thanks for the pull request! Maintainers, we have a signed CLA from @ggetz, so you can review this at any time.

⚠️ I noticed that CHANGES.md has not been updated. If this change updates the public API in any way, fixes a bug, or makes any non-trivial update, please add a bullet point to CHANGES.md and comment on this pull request so we know it was updated. For more info, see the Pull Request Guidelines.


I am a bot who helps you make Cesium awesome! Contributions to my configuration are welcome.

🌍 🌎 🌏

//>>includeEnd('debug');

if (!defined(result)) {
result = new Plane(Cartesian3.UNIT_X, 0.0);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just do return new Plane(plane.normal, plane.distance)

@hpinkos
Copy link
Contributor

hpinkos commented Dec 11, 2017

From a quick glace at the code, this looks great @ggetz! I'll play around with this a little bit tomorrow

@hpinkos
Copy link
Contributor

hpinkos commented Dec 12, 2017

I seem to get the same result regardless of the value of unionClippingRegions

ClippingPlaneCollection.prototype.add = function(plane) {
this._planes.push(plane);

//>>includeStart('debug', pragmas.debug);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Check for the exception before calling push; it leaves the object in a better state.

this.unionClippingRegions = defaultValue(options.unionClippingRegions, true);
}

function unionIntersectFunction (value) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Throughout, no need for a space before ( for functions.

return (value === Intersect.INSIDE);
};
/**
*
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this missing the description part of the reference doc?

};

function indexOf(planes, plane) {
for (var i = 0; i < planes.length; ++i) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if the performance matters anymore in practice, but the Cesium convention is to assign planes.length to a local instead of dereferencing each iteration of the loop.

@@ -70,6 +70,7 @@ define([
this.distance = distance;
}


Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Extra whitespace?

@ggetz
Copy link
Contributor Author

ggetz commented Dec 12, 2017

I seem to get the same result regardless of the value of unionClippingRegions

@hpinkos Updated. Tested this on models, tilesets, and the globe, and it was only happening with point clouds, and it's now resolved.

@@ -32,20 +34,19 @@ define([
* @param {Plane[]} [options.planes=[]] An array of up to 6 {@link Plane} objects used to selectively disable rendering on the outside of each plane.
* @param {Boolean} [options.enabled=true] Determines whether the clipping planes are active.
* @param {Matrix4} [options.modelMatrix=Matrix4.IDENTITY] The 4x4 transformation matrix specifying an additional transform relative to the clipping planes original coordinate system.
* @param {Boolean} [options.combineClippingRegions=true] If true, the region to be clipped must be included in all planes in this collection. Otherwise, a region will be clipped if included in any plane in the collection.
* @param {Boolean} [options.unionClippingRegions=true] If true, the region to be clipped must be included in all planes in this collection. Otherwise, a region will be clipped if included in any plane in the collection.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is backwards. If it's a UNION, the value is clipped if it lies in any clipping plane. If it's an INTERSECT, the value is clipped only if it lies in all of the planes.

image

Copy link
Contributor Author

@ggetz ggetz Dec 12, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Got it, my mistake, I'll swap the values. I think we should default to the same behavior though, so union should initially be false

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, agreed =)

@ggetz
Copy link
Contributor Author

ggetz commented Dec 12, 2017

@hpinkos Updated!

This also fixes the broken shader in IE (#6038 (comment)), but does not resolve the clipping plane behavior problem in IE. I'll open a new issue.

@hpinkos
Copy link
Contributor

hpinkos commented Dec 12, 2017

Awesome, thanks @ggetz! All of the bugs I found seem to be fixed, and the code looks great.

Does anyone else want to take a look before I merge this in?

* @see ClippingPlaneCollection#get
*/
ClippingPlaneCollection.prototype.contains = function(plane) {
return indexOf(this._planes, plane) > -1;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do !==

var planes = this._planes;
var index = indexOf(planes, plane);

if (index < 0) {
Copy link
Contributor

@hpinkos hpinkos Dec 12, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

=== -1

@ggetz
Copy link
Contributor Author

ggetz commented Dec 12, 2017

@hpinkos Fixed the edge styling issue here as well.

@hpinkos
Copy link
Contributor

hpinkos commented Dec 13, 2017

Great work @ggetz, thanks!

@hpinkos hpinkos merged commit b0939bf into CesiumGS:master Dec 13, 2017
@ggetz ggetz deleted the clipping-planes-updates branch December 13, 2017 20:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants