mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-30 16:42:43 +00:00
Bugfix: crash when rendering lines with zero length in 3D preview. #2569
This commit is contained in:
@@ -15,8 +15,7 @@
|
||||
bool make_counter_clockwise();
|
||||
Clone<Point> first_point();
|
||||
Clone<Point> last_point();
|
||||
Clone<Polygon> polygon()
|
||||
%code{% RETVAL = Polygon(*THIS); %};
|
||||
Clone<Polygon> polygon();
|
||||
void append(ExtrusionPath* path)
|
||||
%code{% THIS->paths.push_back(*path); %};
|
||||
double length();
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
%code{% THIS->split_at(*point, p1, p2); %};
|
||||
bool is_straight();
|
||||
Clone<BoundingBox> bounding_box();
|
||||
void remove_duplicate_points();
|
||||
std::string wkt();
|
||||
%{
|
||||
|
||||
|
||||
Reference in New Issue
Block a user