0xcf843ecf802c722f434d56 / InupiaqNumbers

Font for displaying Inupiaq Numerals
MIT License
37 stars 5 forks source link

Standardization? #1

Closed Fju closed 4 years ago

Fju commented 4 years ago

Is there any standardization that specifies how the strokes should be drawn (angle, length, position)? If not, what constraints did you choose to "draw" these numerals?

0xcf843ecf802c722f434d56 commented 4 years ago

There are no standards that I'm aware of, however if you open InupiaqNumbers.sfd in FontForge, you'll see the lines I used to draw them.

Basically I had a margin of 100 pixels for every glyph. Including the margin, every glyph is 700x1000 pixels. Each 5-mark is 100 pixels tall and as wide as the glyph. Each 1-mark divides the character evenly based on how many there are. The first 1-mark reaches from the last 5-mark (or the top of the glyph for numbers 1-4) and the however all other 1-marks' top is pushed down by 100 pixels in order to make sure it wouldn't intersect nor get to close to the 5-marks. After applying these rules, the line was extended by 100 pixels, so the glyph actually extends past the margin.

image showing rules used

For the 0-glyph, I decided to just do a basic path and extend it. I tried to make it as symmetrical as possible, but there's no constraints or rules behind its design.

Fju commented 4 years ago

Thanks for the explanation, helped me a lot!

0xcf843ecf802c722f434d56 commented 4 years ago

No problem!