mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-19 20:57:53 -06:00
More refactoring to medial axis and gap fill, more robust
This commit is contained in:
parent
b068616366
commit
9e8022f6f6
13 changed files with 133 additions and 58 deletions
|
@ -212,6 +212,12 @@ Line::intersection(const Line& line, Point* intersection) const
|
|||
return false; // not intersecting
|
||||
}
|
||||
|
||||
double
|
||||
Line::ccw(const Point& point) const
|
||||
{
|
||||
return point.ccw(*this);
|
||||
}
|
||||
|
||||
Pointf3
|
||||
Linef3::intersect_plane(double z) const
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue