libcruft-util/geom/cylinder.cpp

37 lines
934 B
C++
Raw Normal View History

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"
using cruft::geom::cylinder;
2015-10-14 15:32:53 +11:00
///////////////////////////////////////////////////////////////////////////////
template <size_t S, typename T>
bool
cylinder<S,T>::includes (cruft::point<S,T> p_) const
2015-10-14 15:32:53 +11:00
{
auto p10 = p1 - p0;
auto p_0 = p_ - p0;
2015-10-14 15:32:53 +11:00
auto l = dot (p10, p_0);
if (l < 0 || l > norm2 (p10))
2015-10-14 15:32:53 +11:00
return false;
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 cruft::geom::cylinder<2,float>;
template struct cruft::geom::cylinder<3,float>;