Skip to content

Latest commit

 

History

History

trolley_token

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

parametric_trolley_token.scad

Overview

The file parametric_trolley_token.scad can be used as an OpenSCAD library to generate trolley tokens of any currency. There are two models to choose from; one with a flat surface convenient to be printed on fused filament printers without the need of any support material and another model meant to be printed on a SLA printers.

Usage

The module trolley_token() takes up to 7 parameters:

1. coin_1_thickness, [numerical]
2. coin_2_thickness, [numerical]
3. coin_1_diameter, [numerical]
4. coin_2_diameter, [numerical]
5. coin_1_string, [string]
6. coin_2_string, [string]
7. sla_printer, [boolean]

Demo

translate([0, 15, 0])
    trolley_token(string1 = "$$", string2 = "€€");
translate([0, 45, 0])
    trolley_token(2.15, 2.35, 23.2, 27.4, "2Fr", "5Fr", true);
translate([0, -15, 0])
    trolley_token(2.14, 2.38, 22.25, 24.25, "0.2€", "0.5€", true);
translate([0, -45, 0])
    trolley_token(2.33, 2.38, 23.25, 24.25, "1€", "0.5€", false);

images/parametric_trolley_token_demo.png

Coins dimension table

CurrencyValueDiameterThickness
SEK1 kr19.5 mm1.79 mm
SEK2 kr22.5 mm1.79 mm
SEK5 kr23.75 mm1.95 mm
SEK10 kr20.5 mm2.9 mm
EUR0.2 €22.25 mm2.14 mm
EUR0.5 €24.25 mm2.38 mm
EUR1 €23.25 mm2.33 mm
EUR2 €25.75 mm2.20 mm
CHF1 Fr23.20 mm1.55 mm
CHF2 Fr27.40 mm2.15 mm
CHF5 fr31.45 mm2.35 mm
GBP1 £23.43 mm2.8 mm
GBP2 £28.4 mm2.5 mm

Note: values might be outdated