mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 23:54:00 -06:00
Extend medial axis endpoints to fill the entire length. Includes fix for a minor memory leak caused by usage of old signature for Line::point_at()
This commit is contained in:
parent
52de292a48
commit
ed8a2f7330
8 changed files with 54 additions and 10 deletions
|
@ -25,7 +25,8 @@ class Line
|
|||
void reverse();
|
||||
double length() const;
|
||||
Point* midpoint() const;
|
||||
Point* point_at(double distance) const;
|
||||
void point_at(double distance, Point* point) const;
|
||||
Point point_at(double distance) const;
|
||||
bool coincides_with(const Line* line) const;
|
||||
double distance_to(const Point* point) const;
|
||||
double atan2_() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue