mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 18:12:10 +00:00
Ported same_line() to XS
This commit is contained in:
@@ -54,6 +54,12 @@ Line::point_at(double distance) const
|
||||
return p;
|
||||
}
|
||||
|
||||
bool
|
||||
Line::coincides_with(const Line* line) const
|
||||
{
|
||||
return this->a.coincides_with(&line->a) && this->b.coincides_with(&line->b);
|
||||
}
|
||||
|
||||
#ifdef SLIC3RXS
|
||||
void
|
||||
Line::from_SV(SV* line_sv)
|
||||
|
||||
Reference in New Issue
Block a user