mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-23 14:44:19 -06:00
Some improvements to pruning and some additions here and there
This commit is contained in:
parent
c2ed6090d3
commit
04d80ca392
6 changed files with 33 additions and 8 deletions
|
@ -101,6 +101,12 @@ Line::direction() const
|
|||
: atan2;
|
||||
}
|
||||
|
||||
Vector
|
||||
Line::vector() const
|
||||
{
|
||||
return Vector(this->b.x - this->a.x, this->b.y - this->a.y);
|
||||
}
|
||||
|
||||
#ifdef SLIC3RXS
|
||||
void
|
||||
Line::from_SV(SV* line_sv)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue