| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- //
- // Copyright (c) 2008-2014 the Urho3D project.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #include "Precompiled.h"
- #include "Frustum.h"
- #include "Polyhedron.h"
- namespace Urho3D
- {
- void BoundingBox::Define(const Vector3* vertices, unsigned count)
- {
- if (!count)
- return;
-
- defined_ = false;
- Merge(vertices, count);
- }
- void BoundingBox::Define(const Frustum& frustum)
- {
- Define(frustum.vertices_, NUM_FRUSTUM_VERTICES);
- }
- void BoundingBox::Define(const Polyhedron& poly)
- {
- defined_ = false;
- Merge(poly);
- }
- void BoundingBox::Define(const Sphere& sphere)
- {
- const Vector3& center = sphere.center_;
- float radius = sphere.radius_;
-
- min_ = center + Vector3(-radius, -radius, -radius);
- max_ = center + Vector3(radius, radius, radius);
- defined_ = true;
- }
- void BoundingBox::Merge(const Vector3* vertices, unsigned count)
- {
- while (count--)
- Merge(*vertices++);
- }
- void BoundingBox::Merge(const Frustum& frustum)
- {
- Merge(frustum.vertices_, NUM_FRUSTUM_VERTICES);
- }
- void BoundingBox::Merge(const Polyhedron& poly)
- {
- for (unsigned i = 0; i < poly.faces_.Size(); ++i)
- {
- const PODVector<Vector3>& face = poly.faces_[i];
- if (!face.Empty())
- Merge(&face[0], face.Size());
- }
- }
- void BoundingBox::Merge(const Sphere& sphere)
- {
- const Vector3& center = sphere.center_;
- float radius = sphere.radius_;
-
- Merge(center + Vector3(radius, radius, radius));
- Merge(center + Vector3(-radius, -radius, -radius));
- }
- void BoundingBox::Clip(const BoundingBox& box)
- {
- if (box.min_.x_ > min_.x_)
- min_.x_ = box.min_.x_;
- if (box.max_.x_ < max_.x_)
- max_.x_ = box.max_.x_;
- if (box.min_.y_ > min_.y_)
- min_.y_ = box.min_.y_;
- if (box.max_.y_ < max_.y_)
- max_.y_ = box.max_.y_;
- if (box.min_.z_ > min_.z_)
- min_.z_ = box.min_.z_;
- if (box.max_.z_ < max_.z_)
- max_.z_ = box.max_.z_;
-
- if (min_.x_ > max_.x_)
- Swap(min_.x_, max_.x_);
- if (min_.y_ > max_.y_)
- Swap(min_.y_, max_.y_);
- if (min_.z_ > max_.z_)
- Swap(min_.z_, max_.z_);
- }
- void BoundingBox::Transform(const Matrix3& transform)
- {
- *this = Transformed(Matrix3x4(transform));
- }
- void BoundingBox::Transform(const Matrix3x4& transform)
- {
- *this = Transformed(transform);
- }
- BoundingBox BoundingBox::Transformed(const Matrix3& transform) const
- {
- return Transformed(Matrix3x4(transform));
- }
- BoundingBox BoundingBox::Transformed(const Matrix3x4& transform) const
- {
- Vector3 newCenter = transform * Center();
- Vector3 oldEdge = Size() * 0.5f;
- Vector3 newEdge = Vector3(
- Abs(transform.m00_) * oldEdge.x_ + Abs(transform.m01_) * oldEdge.y_ + Abs(transform.m02_) * oldEdge.z_,
- Abs(transform.m10_) * oldEdge.x_ + Abs(transform.m11_) * oldEdge.y_ + Abs(transform.m12_) * oldEdge.z_,
- Abs(transform.m20_) * oldEdge.x_ + Abs(transform.m21_) * oldEdge.y_ + Abs(transform.m22_) * oldEdge.z_
- );
-
- return BoundingBox(newCenter - newEdge, newCenter + newEdge);
- }
- Rect BoundingBox::Projected(const Matrix4& projection) const
- {
- Vector3 projMin = min_;
- Vector3 projMax = max_;
- if (projMin.z_ < M_MIN_NEARCLIP)
- projMin.z_ = M_MIN_NEARCLIP;
- if (projMax.z_ < M_MIN_NEARCLIP)
- projMax.z_ = M_MIN_NEARCLIP;
-
- Vector3 vertices[8];
- vertices[0] = projMin;
- vertices[1] = Vector3(projMax.x_, projMin.y_, projMin.z_);
- vertices[2] = Vector3(projMin.x_, projMax.y_, projMin.z_);
- vertices[3] = Vector3(projMax.x_, projMax.y_, projMin.z_);
- vertices[4] = Vector3(projMin.x_, projMin.y_, projMax.z_);
- vertices[5] = Vector3(projMax.x_, projMin.y_, projMax.z_);
- vertices[6] = Vector3(projMin.x_, projMax.y_, projMax.z_);
- vertices[7] = projMax;
-
- Rect rect;
- for (unsigned i = 0; i < 8; ++i)
- {
- Vector3 projected = projection * vertices[i];
- rect.Merge(Vector2(projected.x_, projected.y_));
- }
-
- return rect;
- }
- Intersection BoundingBox::IsInside(const Sphere& sphere) const
- {
- float distSquared = 0;
- float temp;
- const Vector3& center = sphere.center_;
-
- if (center.x_ < min_.x_)
- {
- temp = center.x_ - min_.x_;
- distSquared += temp * temp;
- }
- else if (center.x_ > max_.x_)
- {
- temp = center.x_ - max_.x_;
- distSquared += temp * temp;
- }
- if (center.y_ < min_.y_)
- {
- temp = center.y_ - min_.y_;
- distSquared += temp * temp;
- }
- else if (center.y_ > max_.y_)
- {
- temp = center.y_ - max_.y_;
- distSquared += temp * temp;
- }
- if (center.z_ < min_.z_)
- {
- temp = center.z_ - min_.z_;
- distSquared += temp * temp;
- }
- else if (center.z_ > max_.z_)
- {
- temp = center.z_ - max_.z_;
- distSquared += temp * temp;
- }
-
- float radius = sphere.radius_;
- if (distSquared >= radius * radius)
- return OUTSIDE;
- else if (center.x_ - radius < min_.x_ || center.x_ + radius > max_.x_ || center.y_ - radius < min_.y_ ||
- center.y_ + radius > max_.y_ || center.z_ - radius < min_.z_ || center.z_ + radius > max_.z_)
- return INTERSECTS;
- else
- return INSIDE;
- }
- Intersection BoundingBox::IsInsideFast(const Sphere& sphere) const
- {
- float distSquared = 0;
- float temp;
- const Vector3& center = sphere.center_;
-
- if (center.x_ < min_.x_)
- {
- temp = center.x_ - min_.x_;
- distSquared += temp * temp;
- }
- else if (center.x_ > max_.x_)
- {
- temp = center.x_ - max_.x_;
- distSquared += temp * temp;
- }
- if (center.y_ < min_.y_)
- {
- temp = center.y_ - min_.y_;
- distSquared += temp * temp;
- }
- else if (center.y_ > max_.y_)
- {
- temp = center.y_ - max_.y_;
- distSquared += temp * temp;
- }
- if (center.z_ < min_.z_)
- {
- temp = center.z_ - min_.z_;
- distSquared += temp * temp;
- }
- else if (center.z_ > max_.z_)
- {
- temp = center.z_ - max_.z_;
- distSquared += temp * temp;
- }
-
- float radius = sphere.radius_;
- if (distSquared >= radius * radius)
- return OUTSIDE;
- else
- return INSIDE;
- }
- String BoundingBox::ToString() const
- {
- return min_.ToString() + " - " + max_.ToString();
- }
- }
|