2015-10-14 15:32:53 +11:00
|
|
|
/*
|
|
|
|
* 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 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cylinder.hpp"
|
|
|
|
|
|
|
|
using util::geom::cylinder;
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
template <size_t S, typename T>
|
|
|
|
bool
|
2015-10-15 00:38:54 +11:00
|
|
|
cylinder<S,T>::includes (util::point<S,T> p_) const
|
2015-10-14 15:32:53 +11:00
|
|
|
{
|
2015-10-15 00:38:54 +11:00
|
|
|
auto p10 = p1 - p0;
|
|
|
|
auto p_0 = p_ - p0;
|
2015-10-14 15:32:53 +11:00
|
|
|
|
2015-10-15 00:38:54 +11:00
|
|
|
auto l = dot (p10, p_0);
|
2016-08-11 14:58:46 +10:00
|
|
|
if (l < 0 || l > norm2 (p10))
|
2015-10-14 15:32:53 +11:00
|
|
|
return false;
|
|
|
|
|
2016-08-11 14:58:46 +10:00
|
|
|
auto d = dot (p10, p10) - l * l * norm2 (p10);
|
2015-10-14 15:32:53 +11:00
|
|
|
if (d > radius * radius)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true; // d
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
template struct util::geom::cylinder<2,float>;
|
|
|
|
template struct util::geom::cylinder<3,float>;
|