We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It worth finalizing consistency withing those three classes, so here is list of things to do:
BoundingBox
intersects
intersectsBoundingBox
intersectsOrientedBox
center
halfExtents
BoundingSphere
radius
OrientedBox
worldTransform
The text was updated successfully, but these errors were encountered:
Is there any special process for deprecating a function @Maksims ? Is it just adding @deprecated in the comment block above it?
@deprecated
Sorry, something went wrong.
This is a good example.
BoundingBox, BoundingSphere, OrientedBox extra methods. (playcanvas#858)
29ec0dd
BoundingBox -Deprecated intersects() and added intersectsBoundingBox() method -Added intersectsOrientedBox() method -Added center and halfExtents properties BoundingSphere -Added intersectsBoundingBox() method -Added intersectsOrientedBox() method -Added center and radius properties OrientedBox -Added intersectsBoundingBox() method -Added intersectsOrientedBox() method -Added halfExtents property and updated worldTransform property
Successfully merging a pull request may close this issue.
It worth finalizing consistency withing those three classes, so here is list of things to do:
BoundingBox
intersects
and add another methodintersectsBoundingBox
which will have same functionalityintersectsOrientedBox
methodcenter
andhalfExtents
property referenceBoundingSphere
intersectsBoundingBox
method (calls box.intersectsBoundingSphere internally)intersectsOrientedBox
methodcenter
andradius
property referenceOrientedBox
intersectsBoundingBox
method (calls box.intersectsOrientedBox internally)intersectsOrientedBox
methodhalfExtents
property referenceworldTransform
has wrong referenceThe text was updated successfully, but these errors were encountered: