Skip to content

Instantly share code, notes, and snippets.

@schas002
Created October 5, 2017 11:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schas002/d40c8539aeac6a31c84ce8502ef89c1c to your computer and use it in GitHub Desktop.
Save schas002/d40c8539aeac6a31c84ce8502ef89c1c to your computer and use it in GitHub Desktop.
OpenSCAD 'hash brown' model.
FONT = "Roboto"; // or any other font
SIZE = 15; // resize to your heart's content
union() {
difference() {
cube([20, 20, 1], true);
translate([0, 0, 0.4]) {
cube([19, 19, 0.2], true);
}
}
cube([18, 18, 1], true);
translate([-(SIZE/2), -(SIZE/2), 0]) {
linear_extrude(1) {
text("#", SIZE, FONT, "center", "center");
}}
}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment