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>
|
|
|
|
*/
|
|
|
|
|
2021-04-14 15:35:49 +10:00
|
|
|
#pragma once
|
2015-10-14 15:32:53 +11:00
|
|
|
|
|
|
|
#include "../point.hpp"
|
|
|
|
|
2017-01-05 15:06:49 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-08-05 14:42:02 +10:00
|
|
|
namespace cruft::geom {
|
2015-10-14 15:32:53 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
struct cylinder {
|
2018-08-05 14:42:02 +10:00
|
|
|
cruft::point<S,T> p0, p1;
|
2015-10-14 15:32:53 +11:00
|
|
|
T radius;
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
float distance (cruft::point<S,T>) const;
|
|
|
|
bool includes (cruft::point<S,T>) const;
|
2015-10-14 15:32:53 +11:00
|
|
|
};
|
|
|
|
|
2018-04-11 15:10:16 +10:00
|
|
|
using cylinder3f = cylinder<3,float>;
|
2017-01-05 15:06:49 +11:00
|
|
|
}
|