
--
You received this message because you are subscribed to the Google Groups "3D Printing Tips and Tricks" group.
To unsubscribe from this group and stop receiving emails from it, send an email to 3d-printing-tips--...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/3d-printing-tips--tricks/cd264670-2d8b-478a-b4d8-7eac4477937cn%40googlegroups.com.



Finally - Claude & the G-code trick:
The setup is a box sliced with gyroid infill only — no top layers, no bottom layers, no perimeters/walls. Just the infill. Turn off skirt and brim too, since nothing is going to stick to anything. 4–8 layers is plenty — you get the full effect in a few minutes instead of committing hours to it.
Then the actual trick: you shift the entire print up into the air so the nozzle never touches the bed. The extrudate leaves the nozzle with nothing to land on, sags and curls on the way down, and each pass lands on the tangle below instead of a flat surface. TPU is the right material because it stays rubbery and coils instead of snapping.
The two lines to insert:
G1 Z25 F600 ; lift nozzle 25mm above the bedG92 Z0 ; call this new height Z0After G92 Z0, every Z the slicer emits is read relative to the raised position, so the whole print floats. Nothing else in the file needs editing.
Where to put them — this matters more than the lines themselves. They go at the very end of your start G-code, immediately before the first layer. Specifically:
G28 (homing resets the coordinate system and wipes your G92)G29 / M420 S1 bed mesh line;LAYER:0 / first model extrusionIn my file (and I am attaching the final GCode file to this posting response) that landed right after the G92 E0 ;Reset Extruder that follows the purge, and just before the ;LAYER:0 block. Then Ctrl-F the rest of the file for any later G28 or G29 — if your slicer emits one mid-print, the nozzle drops back onto the bed and the effect is over.
Part cooling: run the fan at 100% from the very first layer. The strands have to freeze in mid-air. Check your slicer for "disable fan for first N layers" or a reduced first-layer fan speed and override it — mine had the fan off for all of layer 1 and only ramping to full at the layer 1→2 change, which would have dumped the first pass down as goo.
Height is the tuning knob. 25mm is a good starting point. Lower (5–10mm) gives tighter, more matted tangles; higher gives longer free-fall and looser, loopier strands.
One heads-up: your G-code viewer will show a perfect gyroid lattice floating in space, because it draws where the nozzle travels and has no physics. The file and the result are supposed to look nothing alike — the chaos only exists at print time.
--
