Add the Steinie bottles
This commit is contained in:
parent
bbb63737cc
commit
f492bdd2cd
1 changed files with 11 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ LOGO_FILE = ""; // empty string is catear model
|
||||||
FONT = ""; // empty string is for Orbitron font
|
FONT = ""; // empty string is for Orbitron font
|
||||||
|
|
||||||
// Format of the bottle clip you want to create.
|
// Format of the bottle clip you want to create.
|
||||||
FORMAT = 0; // [0=Club Mate 50cL, 1=Long Neck as 25cL Club Mate or Fritz-kola, 2=Euroform 2]
|
FORMAT = 3; // [0=Club Mate 50cL, 1=Long Neck as 25cL Club Mate or Fritz-kola, 2=Euroform 2, 3=Steinie bottles]
|
||||||
|
|
||||||
|
|
||||||
/* [Render] */
|
/* [Render] */
|
||||||
|
|
@ -142,6 +142,16 @@ module bottle_clip_format(name="", font="", logo="", format=0) {
|
||||||
rl=22.5,
|
rl=22.5,
|
||||||
ht=26,
|
ht=26,
|
||||||
width=2.5);
|
width=2.5);
|
||||||
|
} else if (format == 3) {
|
||||||
|
// Steinie bottle
|
||||||
|
bottle_clip(
|
||||||
|
name=name,
|
||||||
|
font=font,
|
||||||
|
logo=logo,
|
||||||
|
ru=13,
|
||||||
|
rl=17.5,
|
||||||
|
ht=13,
|
||||||
|
width=2.5);
|
||||||
} else {
|
} else {
|
||||||
assert(false, str("Unknown format ", format, "."));
|
assert(false, str("Unknown format ", format, "."));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue