Skip to content

Commit 7f649ed

Browse files
authored
Merge pull request #387 from smkent/swatch-remix
Add and configure usage of GetBurning's material swatch remix
2 parents 1a7eaec + c50b0ed commit 7f649ed

12 files changed

+411
-8
lines changed

material-swatches/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,15 @@ which allows creation of swatches with arbitrary text.
1717
Material Swatches also happen to be the perfect size to [store in Gridfinity
1818
bins!][gridfinity-bins-material-swatches]
1919

20+
## Included remix by GetBurning
21+
22+
This model includes a tweaked version of [GetBurning's remix of this
23+
model][getburning-remix] as `material-swatch-getburning-remix.scad`, which
24+
supports adding three lines of arbitrary text onto the swatch instead of just
25+
using the material name.
26+
27+
This remix uses the [Obitron font][orbitron-font] ([license][ofl]).
28+
2029
## Differences of the remix compared to the original
2130

2231
This is a version of Material Swatches created from scratch in OpenSCAD
@@ -29,9 +38,12 @@ This is a remix of
2938
Both the original model and this remix are licensed under
3039
[Creative Commons CC0 1.0 Universal (Public Domain)][license].
3140

41+
[getburning-remix]: https://www.printables.com/model/764204-scad-material-swatch-with-three-lines
3242
[gridfinity-bins-material-swatches]: https://www.printables.com/model/587675
3343
[license-badge]: /_static/license-badge-cc0-1.0.svg
3444
[license]: http://creativecommons.org/publicdomain/zero/1.0/
45+
[ofl]: https://openfontlicense.org/open-font-license-official-text/
46+
[orbitron-font]: https://fonts.google.com/specimen/Orbitron
3547
[original-model-url]: https://printables.com/model/2256
3648
[printables-badge]: /_static/printables-badge.png
3749
[printables-model]: https://www.printables.com/model/623563

material-swatches/SConscript

+123-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,132 @@
1+
from collections import namedtuple
2+
from datetime import datetime
3+
14
Import("env")
25
b = ModelBuilder(env)
36

7+
Swatch = namedtuple(
8+
"Swatch",
9+
(
10+
"manufacturer",
11+
"material",
12+
"color",
13+
"string0_size",
14+
"string1_size",
15+
"string2_size",
16+
"string3_size",
17+
),
18+
defaults=("", "", "", 4, 4, 4, 4),
19+
)
20+
421
model = "material-swatch.scad"
22+
multiline_model = "material-swatch-getburning-remix.scad"
23+
dt = datetime.now().strftime("%Y.%m")
24+
25+
swatches = [
26+
Swatch("CC3D", "PETG", "blue grey"),
27+
Swatch("CC3D", "PETG", "bright green"),
28+
Swatch("CC3D", "PETG", "silver"),
29+
Swatch("Creality", "PETG", "black", 2.8),
30+
Swatch("Creality", "PETG", "blue", 2.8),
31+
Swatch("Creality", "PETG", "trans- parent", 2.8),
32+
Swatch("Flashforge", "PETG", "gray", 2.4),
33+
Swatch("Flashforge", "PETG", "green", 2.4),
34+
Swatch("Flashforge", "PETG", "purple", 2.4),
35+
Swatch("Flashforge", "PETG", "yellow", 2.4),
36+
Swatch("Geeetech", "PETG", "gray", 3),
37+
Swatch("Geeetech", "PLA", "silk bronze", 3),
38+
Swatch("Geeetech", "PLA", "silk rainbow", 3, string2_size=3.8),
39+
Swatch("HZST3D", "PETG", "blue"),
40+
Swatch("HZST3D", "PETG", "fluo yellow"),
41+
Swatch("HZST3D", "PETG", "green"),
42+
Swatch("HZST3D", "PETG", "orange"),
43+
Swatch("HZST3D", "PETG", "purple"),
44+
Swatch("HZST3D", "PETG", "red"),
45+
Swatch("Jayo", "PETG", "black"),
46+
Swatch("Jayo", "PETG", "white"),
47+
Swatch("Jayo", "PETG", "blue"),
48+
Swatch("Jayo", "PLA", "light gold"),
49+
Swatch("Jayo", "PLA", "meta black"),
50+
Swatch("Jayo", "PLA", "meta red"),
51+
Swatch("Jayo", "PLA", "meta white"),
52+
Swatch("Jayo", "PLA", "meta yellow"),
53+
Swatch("Jayo", "PLA", "red copper"),
54+
Swatch("Jayo", "PLA", "silk green"),
55+
Swatch("Jayo", "PLA", "silk blue"),
56+
Swatch("Overture", "PETG", "grass green", 2.8),
57+
Swatch("Overture", "PETG", "rock white", 2.8),
58+
Swatch("Overture", "PLA", "grass green", 2.8),
59+
Swatch("Polymaker", "PETG", "dark blue", 2.6),
60+
Swatch("R3D", "PLA", "pink"),
61+
Swatch("Sunlu", "PLA", "apple green", 3.3),
62+
Swatch("Sunlu", "PLA", "cream white", 3.3),
63+
Swatch("Sunlu", "PLA", "ice blue", 3.3),
64+
Swatch("Sunlu", "PLA", "meta blue", 3.3),
65+
Swatch("Sunlu", "PLA", "taro purple", 3.3),
66+
Swatch("TPMOINS", "PETG", "army green", 3.5),
67+
Swatch("TPMOINS", "PETG", "cyan", 3.5),
68+
Swatch("TPMOINS", "PETG", "purple", 3.5),
69+
Swatch("Voxelab", "ASA", "sky blue", 3.3),
70+
Swatch("Voxelab", "PETG", "burnt titanium", 3.3),
71+
Swatch("Voxelab", "PLA", "nebula purple", 3.3),
72+
]
73+
74+
for opts in GenerateOptions(
75+
material=(("", "blank"), "PETG", "PLA", "ABS", "HIPS", "TPU", "PC"),
76+
steps=((0, "simple"), (1, "steps")),
77+
):
78+
b.STL(
79+
(
80+
f"material-swatch-{opts.material_fn or opts.material.upper()}"
81+
f"-{opts.steps_fn}.stl"
82+
),
83+
model,
84+
{"Text": opts.material, "Steps": opts.steps},
85+
)
586

6-
for material in {"", "PETG", "PLA", "ABS", "HIPS", "TPU", "PC"}:
7-
for steps in {0, 1}:
8-
fn_material = material.lower() or "blank"
9-
fn_steps = "steps" if steps == 1 else "simple"
10-
b.STL(
11-
f"material-swatch-{fn_material}-{fn_steps}.stl",
12-
model,
13-
{"Text": material, "Steps": steps},
87+
for opts in GenerateOptions(swatch=[(s,) for s in swatches]):
88+
swatch_dict = opts.swatch._asdict()
89+
manufacturer = swatch_dict.pop("manufacturer")
90+
material = swatch_dict.pop("material")
91+
color = swatch_dict.pop("color")
92+
color_words = color.split(maxsplit=1)
93+
strings = {
94+
f"string{i}": s
95+
for i, s in enumerate(
96+
[
97+
manufacturer.upper(),
98+
color_words[0].upper(),
99+
(color_words[1].upper() if len(color_words) > 1 else ""),
100+
material.upper(),
101+
]
102+
if len(color_words) > 1
103+
else [
104+
manufacturer.upper(),
105+
"",
106+
color_words[0].upper(),
107+
material.upper(),
108+
]
14109
)
110+
}
111+
b.STL(
112+
(
113+
f"my-swatch"
114+
f"-{manufacturer.lower().replace(' ', '-')}"
115+
f"-{material.lower().replace(' ', '-')}"
116+
f"-{color.lower().replace(' ', '-')}"
117+
".stl"
118+
),
119+
multiline_model,
120+
{
121+
**strings,
122+
**{
123+
"string3_origin": 1.0,
124+
"string3_size": 4,
125+
"Steps": 0,
126+
},
127+
**swatch_dict,
128+
},
129+
)
15130

16131
b.Image(
17132
"demo.gif",
+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
Copyright 2018 The Orbitron Project Authors (https://github.com/theleagueof/orbitron), with Reserved Font Name: "Orbitron"
2+
3+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
4+
This license is copied below, and is also available with a FAQ at:
5+
https://openfontlicense.org
6+
7+
8+
-----------------------------------------------------------
9+
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10+
-----------------------------------------------------------
11+
12+
PREAMBLE
13+
The goals of the Open Font License (OFL) are to stimulate worldwide
14+
development of collaborative font projects, to support the font creation
15+
efforts of academic and linguistic communities, and to provide a free and
16+
open framework in which fonts may be shared and improved in partnership
17+
with others.
18+
19+
The OFL allows the licensed fonts to be used, studied, modified and
20+
redistributed freely as long as they are not sold by themselves. The
21+
fonts, including any derivative works, can be bundled, embedded,
22+
redistributed and/or sold with any software provided that any reserved
23+
names are not used by derivative works. The fonts and derivatives,
24+
however, cannot be released under any other type of license. The
25+
requirement for fonts to remain under this license does not apply
26+
to any document created using the fonts or their derivatives.
27+
28+
DEFINITIONS
29+
"Font Software" refers to the set of files released by the Copyright
30+
Holder(s) under this license and clearly marked as such. This may
31+
include source files, build scripts and documentation.
32+
33+
"Reserved Font Name" refers to any names specified as such after the
34+
copyright statement(s).
35+
36+
"Original Version" refers to the collection of Font Software components as
37+
distributed by the Copyright Holder(s).
38+
39+
"Modified Version" refers to any derivative made by adding to, deleting,
40+
or substituting -- in part or in whole -- any of the components of the
41+
Original Version, by changing formats or by porting the Font Software to a
42+
new environment.
43+
44+
"Author" refers to any designer, engineer, programmer, technical
45+
writer or other person who contributed to the Font Software.
46+
47+
PERMISSION & CONDITIONS
48+
Permission is hereby granted, free of charge, to any person obtaining
49+
a copy of the Font Software, to use, study, copy, merge, embed, modify,
50+
redistribute, and sell modified and unmodified copies of the Font
51+
Software, subject to the following conditions:
52+
53+
1) Neither the Font Software nor any of its individual components,
54+
in Original or Modified Versions, may be sold by itself.
55+
56+
2) Original or Modified Versions of the Font Software may be bundled,
57+
redistributed and/or sold with any software, provided that each copy
58+
contains the above copyright notice and this license. These can be
59+
included either as stand-alone text files, human-readable headers or
60+
in the appropriate machine-readable metadata fields within text or
61+
binary files as long as those fields can be easily viewed by the user.
62+
63+
3) No Modified Version of the Font Software may use the Reserved Font
64+
Name(s) unless explicit written permission is granted by the corresponding
65+
Copyright Holder. This restriction only applies to the primary font name as
66+
presented to the users.
67+
68+
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69+
Software shall not be used to promote, endorse or advertise any
70+
Modified Version, except to acknowledge the contribution(s) of the
71+
Copyright Holder(s) and the Author(s) or with their explicit written
72+
permission.
73+
74+
5) The Font Software, modified or unmodified, in part or in whole,
75+
must be distributed entirely under this license, and must not be
76+
distributed under any other license. The requirement for fonts to
77+
remain under this license does not apply to any document created
78+
using the Font Software.
79+
80+
TERMINATION
81+
This license becomes null and void if any of the above conditions are
82+
not met.
83+
84+
DISCLAIMER
85+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88+
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90+
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91+
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92+
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93+
OTHER DEALINGS IN THE FONT SOFTWARE.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
Orbitron Variable Font
2+
======================
3+
4+
This download contains Orbitron as both a variable font and static fonts.
5+
6+
Orbitron is a variable font with this axis:
7+
wght
8+
9+
This means all the styles are contained in a single file:
10+
Orbitron-VariableFont_wght.ttf
11+
12+
If your app fully supports variable fonts, you can now pick intermediate styles
13+
that aren’t available as static fonts. Not all apps support variable fonts, and
14+
in those cases you can use the static font files for Orbitron:
15+
static/Orbitron-Regular.ttf
16+
static/Orbitron-Medium.ttf
17+
static/Orbitron-SemiBold.ttf
18+
static/Orbitron-Bold.ttf
19+
static/Orbitron-ExtraBold.ttf
20+
static/Orbitron-Black.ttf
21+
22+
Get started
23+
-----------
24+
25+
1. Install the font files you want to use
26+
27+
2. Use your app's font picker to view the font family and all the
28+
available styles
29+
30+
Learn more about variable fonts
31+
-------------------------------
32+
33+
https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts
34+
https://variablefonts.typenetwork.com
35+
https://medium.com/variable-fonts
36+
37+
In desktop apps
38+
39+
https://theblog.adobe.com/can-variable-fonts-illustrator-cc
40+
https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts
41+
42+
Online
43+
44+
https://developers.google.com/fonts/docs/getting_started
45+
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide
46+
https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts
47+
48+
Installing fonts
49+
50+
MacOS: https://support.apple.com/en-us/HT201749
51+
Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux
52+
Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows
53+
54+
Android Apps
55+
56+
https://developers.google.com/fonts/docs/android
57+
https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts
58+
59+
License
60+
-------
61+
Please read the full license text (OFL.txt) to understand the permissions,
62+
restrictions and requirements for usage, redistribution, and modification.
63+
64+
You can use them in your products & projects – print or digital,
65+
commercial or otherwise.
66+
67+
This isn't legal advice, please consider consulting a lawyer and see the full
68+
license for all details.

0 commit comments

Comments
 (0)