mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 16:57:53 -06:00
Started work on extending EigenMesh3D to account for possible drain holes when raycasting
This commit is contained in:
parent
673549d608
commit
9dd18a8d6d
6 changed files with 149 additions and 32 deletions
|
@ -36,6 +36,12 @@ struct DrainHole
|
|||
bool operator==(const DrainHole &sp) const;
|
||||
|
||||
bool operator!=(const DrainHole &sp) const { return !(sp == (*this)); }
|
||||
|
||||
bool is_inside(const Vec3f& pt) const;
|
||||
|
||||
std::pair<float, float> get_intersections(const Vec3f& s,
|
||||
const Vec3f& dir
|
||||
) const;
|
||||
|
||||
template<class Archive> inline void serialize(Archive &ar)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue