first commit
This commit is contained in:
commit
92420f2f65
|
@ -0,0 +1,5 @@
|
|||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. You just DO WHAT THE FUCK YOU WANT TO.
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
# ramsortware
|
||||
A RAM sorting hardware, useful to keep track of your memories while doing [trashware](https://wiki.golem.linux.it/Trashware).
|
||||
|
||||
![picture of a ramsortware](picture.png)
|
||||
|
||||
## License
|
||||
This work is released under the terms of the WTFPL license.
|
||||
|
Binary file not shown.
After Width: | Height: | Size: 1.2 MiB |
|
@ -0,0 +1,32 @@
|
|||
width = 12;
|
||||
height = 19;
|
||||
depth = 3;
|
||||
wall = 0.05;
|
||||
|
||||
cube([width, height, wall]);
|
||||
|
||||
cube([wall, height, depth]);
|
||||
cube([width, wall, depth]);
|
||||
|
||||
translate([0, height, 0]) {
|
||||
cube([width, wall, depth]);
|
||||
}
|
||||
translate([width, 0, 0]) {
|
||||
cube([wall, height, depth]);
|
||||
}
|
||||
|
||||
translate([4, 3, 0]) {
|
||||
cube([wall, 16, 3]);
|
||||
}
|
||||
|
||||
translate([8, 3, 0]) {
|
||||
cube([wall, 16, 3]);
|
||||
}
|
||||
|
||||
translate([0, 3, 0]) {
|
||||
cube([width, wall, depth]);
|
||||
}
|
||||
|
||||
translate([0, 11, 0]) {
|
||||
cube([width, wall, depth]);
|
||||
}
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue