charmaur / PolyDiceGenerator

A customizable Polyhedral Dice Generator for OpenSCAD.
https://github.com/charmaur/PolyDiceGenerator
Other
91 stars 19 forks source link

Request: Support pips on D12 #17

Open peaceful-octopus opened 2 years ago

peaceful-octopus commented 2 years ago

Since 12 is divisible by 3, 4, and 6 while also being a nice shape for rolling, some people (like DoubleSix dice here like to use the dodecahedron shape for lower-order dice. It would be great if we could generate these.

charmaur commented 2 years ago

All you need to do is change the text values.

For example, change d12 text from: ["1", "4", "2", "6", "8", "10", "3", "5", "11", "7", "12", "9"] to: ["1", "4", "2", "6", "2", "4", "3", "5", "5", "1", "6", "3"]

peaceful-octopus commented 2 years ago

Sorry, should've added more detail - usually when making a 12-sided non-d12 you use pips instead of numbers so you don't confuse the die with your other d12s.

charmaur commented 2 years ago

Noted. The functionality already exists in the d6 pip code, but I don't expect it's something I'll dedicate time to anytime soon.