You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm creating a custom CAM program for CNC machines. The program loads an image, and then iterates over the pixels of the image to generate the GCode.
But it needs to iterate in a specific order to generate optimal GCode. The default order (left-to-right, top-to-bottom) creates suboptimal GCode, which slows down the CNC machine by ~50%.
With DoubleEndedIterator it can iterate in the perfect order.
The
EnumeratePixels
andEnumerateRows
iterators should implementDoubleEndedIterator
.This will make it possible to iterate in reverse order (for example right-to-left instead of left-to-right).
The
Pixels
andRows
iterators already implementDoubleEndedIterator
.The text was updated successfully, but these errors were encountered: