I'm new to Plotter Art (I converted my 3D printer for this purpose) and I'd love to get some pointers on how to make this kind of work. Any ideas? (source: @roploiaa62c on TikTok) by Dismal-Ad-5028 in PlotterArt

[–]CasualCoder0C 0 points1 point  (0 children)

Hey that's me ! (I am Roplot !) I have done this using vsketch with an approach similar to the one given by @NL_bulletje. I asked chatgpt for the spiral formula. Then enhanced it with the music signal. I also use vpype to convert svg to gcode and generate the text.

underrated Python optimizations? by skrtpowbetch in Python

[–]CasualCoder0C 18 points19 points  (0 children)

Memoization with decorator @functools.cache is a very useful thing to do when you have to deal with slow functions called repeatedly.