This branch is up to date withClemensElflein/slic3r_coverage_planner:main. Folders and files Name Last commit message Last commit date Latest commit rovo89 Don't crash if all outlines are single dots (ClemensElflein#14) Aug 14, 2024
@@ -241,7 +242,7 @@ bool planPath(slic3r_coverage_planner::PlanPathRequest &req, slic3r_coverage_pla if (i == 0) { offsets = offset( last, 0 -outer_distance ); } else { offsets = offset( 1 change: 1 addition & 0 deletions 1 srv/PlanPath.srv Original file line numberDi...
add_executable(slic3r_coverage_planner src/coverage_planner.cpp src/OutlinePoly.h src/OutlinePoly.cpp ) add_dependencies(slic3r_coverage_planner ${catkin_EXPORTED_TARGETS} ${${PROJECT_NAME}_EXPORTED_TARGETS}) add_dependencies(slic3r_coverage_planner ${EP_SLIC3R}) @@ -253,4 +254,5 @@ ...
the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is ...
A coverage planner for ROS using libslic3r as core logic - added dependency · rovo89/slic3r_coverage_planner@395ddcc
The perimeter joining logic assumes the current last pose on the path is the end of the next inner poly. However if islands exist this was not true. Traverse in reverse order to ensure it is the ca...
areaLastPoint used to be a pointer to the last element of the vector returned by line.equally_spaced_points(...). However, that vector is only scoped within the for-loop, which means that at the time when the pointer is used to detect the closest obstacl