/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Copyright 2015-2017 Danny Robson */ #include "./ellipse.hpp" #include "./ops.hpp" #include "./aabb.hpp" using util::geom::ellipse; /////////////////////////////////////////////////////////////////////////////// template static bool intersects (ellipse e, util::point p) { auto mag = (p - e.origin) * (p - e.origin) / (e.radius * e.radius); return std::accumulate (mag.begin (), mag.end (), 0) <= 1; } //----------------------------------------------------------------------------- template class A, template class B> bool util::geom::intersects (A a, B b) { return ::intersects (a, b); } //----------------------------------------------------------------------------- template bool util::geom::intersects (ellipse<2,float>, util::point<2,float>); template bool util::geom::intersects (ellipse<3,float>, util::point<3,float>); /////////////////////////////////////////////////////////////////////////////// template static util::geom::aabb bounds (ellipse e) { return { e.origin - e.radius, e.origin + e.radius }; } //----------------------------------------------------------------------------- template class K> util::geom::aabb util::geom::bounds (K k) { return ::bounds (k); } //----------------------------------------------------------------------------- template util::geom::aabb<2,float> util::geom::bounds (ellipse<2,float>); template util::geom::aabb<3,float> util::geom::bounds (ellipse<3,float>);