Skip to content

Commit

Permalink
fix stl export
Browse files Browse the repository at this point in the history
  • Loading branch information
scottbez1 committed Jan 14, 2024
1 parent 9147a37 commit d31944b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions 3d/flap.scad
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ use<splitflap.scad>;

character_list = get_character_list();
color_list = [
["p", "#7a28cb"],
["r", "#e63946"],
["y", "#ffd639"],
["g", "#66d7d1"],
["w", "#ffffff"],
["p", [122, 40, 203] / 255], // #7a28cb
["r", [230, 57, 70] / 255], // "#e63946
["y", [255, 214, 57] / 255], // "#ffd639
["g", [102, 215, 209] / 255], // "#66d7d1
["w", [255, 255, 255] / 255], // "#ffffff
];


Expand Down
8 changes: 4 additions & 4 deletions 3d/flap_fonts.scad
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ include<flap_dimensions.scad>;
use<fonts/roboto/RobotoCondensed-Regular.ttf>;
use<fonts/Epilogue/Epilogue-VariableFont_wght.ttf>;

// To try other experimental fonts, download fonts from Google Fonts to these locations and uncomment
// use<fonts/PoiretOne/PoiretOne-Regular.ttf>;
// use<fonts/Voltaire/Voltaire-Regular.otf>;
// use<fonts/PTSansNarrow/PTSansNarrow-Regular.ttf>;
// To try other experimental fonts, download fonts from Google Fonts to these locations and add `use` statements
// fonts/PoiretOne/PoiretOne-Regular.ttf
// fonts/Voltaire/Voltaire-Regular.otf
// fonts/PTSansNarrow/PTSansNarrow-Regular.ttf

// -----------------------
// Configurable parameters
Expand Down

0 comments on commit d31944b

Please sign in to comment.