-
-
Notifications
You must be signed in to change notification settings - Fork 395
fix(AbstractMapper): Cleanup mapper classes #2186
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
fix(AbstractMapper): Cleanup mapper classes #2186
Conversation
LGTM |
@@ -42,7 +42,7 @@ export interface vtkAbstractMapper extends vtkAbstractMapperBase { | |||
* Remove clipping plane at index i. | |||
* @param {Number} i |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you also fix the comment and the params?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks good catch. Fixed.
2306726
to
aaeac17
Compare
@DrewLazzeriKitware your AbstractMapper changes should be the desired one in resolving the conflict. |
Added missing class hierarchy for AbstractMapper. Removed extra extend calls from VolumeMapper. BREAKING CHANGE: Changed removeClippingPlane to use instance instead of index.
aaeac17
to
c6be4b0
Compare
@floryst The merge conflict is resolved |
LGTM |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The typescript part is good for me.
@floryst since it is a BREAKING_CHANGE, I let you merge it when you see fit. |
🎉 This PR is included in version 22.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
These changes fix problems with Mapper classes found during #2113.
Specifically:
macro.obj
andmacro.algo
(once through parent)BREAKING CHANGE:
Changed removeClippingPlane to use instance instead of index.