12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- // David Eberly, Geometric Tools, Redmond WA 98052
- // Copyright (c) 1998-2020
- // Distributed under the Boost Software License, Version 1.0.
- // https://www.boost.org/LICENSE_1_0.txt
- // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt
- // Version: 4.0.2019.08.13
- #pragma once
- #include <Mathematics/Hypersphere.h>
- #include <Mathematics/Vector2.h>
- #include <vector>
- namespace WwiseGTE
- {
- // Compute the smallest bounding circle whose center is the average of
- // the input points.
- template <typename Real>
- bool GetContainer(int numPoints, Vector2<Real> const* points, Circle2<Real>& circle)
- {
- circle.center = points[0];
- for (int i = 1; i < numPoints; ++i)
- {
- circle.center += points[i];
- }
- circle.center /= (Real)numPoints;
- circle.radius = (Real)0;
- for (int i = 0; i < numPoints; ++i)
- {
- Vector2<Real> diff = points[i] - circle.center;
- Real radiusSqr = Dot(diff, diff);
- if (radiusSqr > circle.radius)
- {
- circle.radius = radiusSqr;
- }
- }
- circle.radius = std::sqrt(circle.radius);
- return true;
- }
- template <typename Real>
- bool GetContainer(std::vector<Vector2<Real>> const& points, Circle2<Real>& circle)
- {
- return GetContainer(static_cast<int>(points.size()), points.data(), circle);
- }
- // Test for containment of a point inside a circle.
- template <typename Real>
- bool InContainer(Vector2<Real> const& point, Circle2<Real> const& circle)
- {
- Vector2<Real> diff = point - circle.center;
- return Length(diff) <= circle.radius;
- }
- // Compute the smallest bounding circle that contains the input circles.
- template <typename Real>
- bool MergeContainers(Circle2<Real> const& circle0, Circle2<Real> const& circle1, Circle2<Real>& merge)
- {
- Vector2<Real> cenDiff = circle1.center - circle0.center;
- Real lenSqr = Dot(cenDiff, cenDiff);
- Real rDiff = circle1.radius - circle0.radius;
- Real rDiffSqr = rDiff * rDiff;
- if (rDiffSqr >= lenSqr)
- {
- merge = (rDiff >= (Real)0 ? circle1 : circle0);
- }
- else
- {
- Real length = std::sqrt(lenSqr);
- if (length > (Real)0)
- {
- Real coeff = (length + rDiff) / (((Real)2)*length);
- merge.center = circle0.center + coeff * cenDiff;
- }
- else
- {
- merge.center = circle0.center;
- }
- merge.radius = (Real)0.5 * (length + circle0.radius + circle1.radius);
- }
- return true;
- }
- }
|