Log in to join the conversation.
Every scrabble pieces
This file is made with openSCAD, a free and open source cad software that use a scripting language similar to c, it is available at https://openscad.org/downloads.html (the nightly build is more up to date).
It is usefull to replace a lost tile or an entire set that is begging to wear an become hard to read.
To customize the model you can play with the variables at the top of the program (see below, next to the red line)
To generate a set of tiles, choose the language of your game by changing the variable circled in orange. A set is named : "set_" followed by the two letter ISO 639 country code as found on https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes , for english, it would be : "set_en".
To generate only one or a few tiles, you can create your own custom set by following this example:
name_of_your_set = [["A", 5, 4, 0], // ["letter(s)", number to generate, value, index
["&", 2, 1, 1],
["Y", 9, 7, 2],
["9", 4, 2, 3]]
This work fairly well for all alphabet supported by utf-8 but you may need to tweek the position of some letters.
Although I have been carefull to not make any mistake, you should double check that there is the correct number of tile for your language.
You can do what you want with these file, but let me know if you make somethin cool !