2015-10-14 15:32:53 +11:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2015-10-14 15:32:53 +11:00
|
|
|
*
|
|
|
|
* Copyright 2015 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cylinder.hpp"
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
using cruft::geom::cylinder;
|
2015-10-14 15:32:53 +11:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
template <size_t S, typename T>
|
|
|
|
bool
|
2018-08-05 14:42:02 +10:00
|
|
|
cylinder<S,T>::includes (cruft::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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-08-05 14:42:02 +10:00
|
|
|
template struct cruft::geom::cylinder<2,float>;
|
|
|
|
template struct cruft::geom::cylinder<3,float>;
|