Ed Nisley's Blog: Shop notes, electronics, firmware, machinery, 3D printing, laser cuttery, and curiosities. Contents: 100% human thinking, 0% AI slop.
Run the program ten times to generate ten SVG images:
for i in {00..09} ; do python Layers\ -\ 24x18.py --layernum=$i --colors=9 > Test_$i.svg ; done
The LightBurn layout dwarfs the machine platform:
Layered Paper – circular colors – 24x18in – LightBurn layout
Fire The Laser ten times and you get a wall hanging:
Layered Paper – 24×18 – trial alignment
That’s a trial alignment atop a cardboard box on the Basement Shop floor, because gluing those 24×18 inch sheets of paper requires time on the Sewing Table, which is currently occupied by a much higher priority project. The brown innermost circle in the design is entirely separate from the brown Amazon cardboard box underneath everything.
Fairly obviously, you’d want something other than brown at the focal point of that design, but following the EIA color code gives me some confidence the result matches the intention. Feel free to tart it up with your own colors.
I laid a 29×23 inch sheet of sketch paper on the honeycomb, distributed neodymium bar magnets around the perimeter, and cut a 24×18 rectangle out of the middle:
Layered Paper – 24×18 – brown squares
Those squares are the cutouts from the brown sheet, minus what you see in the lead picture.
The black rectangle on the left of the LightBurn layout above is the 24×18 inch cut for the fixture. Centering that rectangle on the LightBurn layout (click-select, Ctrl-D to duplicate, then hit P to move it to the center) means aligning each of the ten patterns requires nothing more than the same click-select / dupe / P, with no delicate fiddling.
Then just lay each colored sheet into the hole and it’s properly aligned. Because the machine homes to the same physical location every time it’s turned on and the fixture is mmm fixed to the platform, cutting all ten sheets over the course of two days proceeded smoothly.
Cutting 2537 holes in the black mask takes a little under an hour:
Layered Paper – 24×18 – cutting black
The other sheets have fewer holes and go progressively faster:
Layered Paper – 24×18 – cutting yellow
The white sheet on the bottom has four alignment holes and four layer ID holes, so the cuts take a few seconds.
Thresholding the distance from a randomly chosen point creates circular rainbows:
CenterPoint = (choice(range(args.width)),choice(range(args.height)))
CellMatrix = [[math.hypot(x - CenterPoint[X],y - CenterPoint[Y])
for y in range(args.height)]
for x in range(args.width)]
dmax = max(list(chain.from_iterable(CellMatrix)))
LayerThreshold = (ThisLayer/Layers)*dmax
The Python program generates one SVG image file representing a single layer, as determined by the Bash one-liner invoking it:
for i in {00..16} ; do python Layers\ -\ 200mm.py > Test_$i.svg ; done
In real life you’d also use a different random seed for each set of layers, but that’s just another command line optIon.
Import those 17 SVG images into LightBurn, arrange neatly, snap each one to the middle of the workspace grid (and thus the aligned template), then Fire The Laser:
Feeding paper into the laser in rainbow (actually, heavily augmented / infilled EIA color code) order, plus the black mask, produces the aforementioned pleasing result:
Layered Paper – rainbow oblique view
Glue the sheets in the assembly fixture:
Layered Paper – gluing fixture side view
The white layer is uncut, other than the four alignment holes (with a rivnut poking up) and its binary layer number (16, backwards because upside-down), and appears in only the farthest corners of the rainbow.
Protip: doing the stack upside-down means you smear glue stick on the hidden side of each sheet. If you avoid slobbering glue into the cut square holes, nothing can go wrong.
Making these things produces the happiest chip tray ever:
Layered Paper – rainbow chip tray
I swept half a dozen pictures worth of squares into a small box and gave it away to someone with a larger small-child cross-section than mine, whereupon a slight finger fumble turned the contents into a glitter bomb. Sorry ’bout that.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cut layer ID holes except on mask layer
if ThisLayer > 0:
c = ((1,1))
h = f'{ThisLayer:0{Layers.bit_length()}b}'
for i in range(Layers.bit_length()):
SheetEls.append(
svg.Circle(
cx=as_mm(SheetCenter[X] + c[X]*AlignOC[X]/2 - (i + 2)*AlignOD),
cy=as_mm(SheetCenter[Y] + c[Y]*AlignOC[Y]/2),
r=AlignOD/4 if h[-(i + 1)] == '1' else AlignOD/8,
stroke=SheetCut,
stroke_width=DefStroke,
fill="none",
)
)
Filling the matrix of blocks with random numbers turned out to be a one-liner:
CellMatrix = [[randint(1,args.colors) for _ in range(args.height)] for _ in range(args.width)]
That matrix is a constant for all the layers, which is why you must feed the program the same random number seed to generate the layers.
Given the layer number and that matrix, deciding what to do for each hole is a walk through the cells:
MatrixEls = [] # accumulates matrix cuts
for i in range(args.width):
x =i*CellOC[X]
for j in range(args.height):
y = j*CellOC[Y]
if ThisLayer == 0: # black mask
s = HeavyCellCut
elif ThisLayer < CellMatrix[i][j]: # rest of sheets above color layer
s = CellCut
else:
s = Tooling # at or below color layer
MatrixEls.append(
svg.Rect(
x=as_mm(SheetCenter[X] - MatrixOA[X]/2 + x),
y=as_mm(SheetCenter[Y] - MatrixOA[Y]/2 + y),
width=as_mm(CellSize[X]),
height=as_mm(CellSize[Y]),
stroke=s,
stroke_width=DefStroke,
fill="none",
)
)
After accumulating all the other elements in similar lists, this creates and emits the entire SVG file to stdout:
The whole program has a bit more going on, but those are the high points.
Invoke the program with a Bash one-liner:
for i in {00..08} ; do python Layers.py --layernum=$i > Test_$i.svg ; done
That produces nine SVG image files that you import into LightBurn and arrange in a tidy array:
Layered Paper – Random Blocks – MVP – LightBurn import
I discovered that holding down the Shift key while importing the SVG files stacks them at the workspace origin (the upper-right corner for my machine) in the order of the file names, so clicking on the stack selects successive layers in the right order; just drop each one wherever you need it, then tidy the lineup.
The Python program sets the vector stroke colors using LightBurn palette values, so that LightBurn automagically assigns them to the appropriate layers. It turns out the black paper I used for the mask requires different speed / power values than the other colored paper.
I put the alignment features on a different layer than the matrix holes to make them more visible, even though they have the same speed / power values.
Align the template so the middle of the layer pattern is in the middle of the grid, then use LightBurn’s Print and Cut to align the template with the fixture on the laser platform:
Layered Paper – Random Blocks – MVP – template
Then the process requires just a few clicks per layer:
Drop a sheet of paper into the fixture
Click to select a layer layout
Ctrl-D to duplicate it
P to snap it to the middle of the grid
Alt-S to Fire The Laser
Del to delete that layer (which is why it’s a duplicate!)
Iterate until done!
Which looks pretty much like you’d expect:
Layered Paper – Random Blocks – cutting
Take the stack of paper to the workbench, use an Xacto knife to cut the tabs holding the square into the Letter page, apply glue stick, stack in the fixture, and iterate to create a solid sheet with lots of holes:
Layered Paper – Random Blocks – MVP
More refinement is in order, but that’s the overview …
Got it done the day after the old hose split, glued it on the hose with E6000+, installed it the next morning, whereupon the weather delivered three inches of rain. It’ll get screwed onto the faucet in a few days …
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
So they’re all set up with 25 g of fresh silica gel, although the boxes no long have the same humidity meters they started with. This likely makes little difference, as I have no way to calibrate them.
However, the desiccant packets for the most recent pair of boxes (intended to simplify changing the desiccant in the collection feeding the MMU3 atop the Prusa MK4 3D printer) produced this:
Polydryer – as-received desiccant
The silica gel in the left cup looks OK-ish, maybe a little dark, but the fresh-from-the-bag beads in the right cup are crying out for regeneration after having adsorbed about all the water vapor they can.
If you were using that silica gel in its original DO NOT EAT bag, where you can’t see what it’s telling you, you might wonder why it wasn’t doing such a great job of drying the box + filament. The same could happen with a bag of non-indicating gel, along the lines of what I was using a decade ago.
So I dumped both in the Needs Rgeneration bottle and filled both meters with 25 g of fresh silica gel.