diff options
author | Christian Hodgden <chrhodgden@gmail.com> | 2024-07-21 16:50:25 +0000 |
---|---|---|
committer | Christian Hodgden <chrhodgden@gmail.com> | 2024-07-21 16:50:25 +0000 |
commit | b4d636a7668287070bcdb75fd4768880184afb67 (patch) | |
tree | a8d4c40dd4af3e0632464cbe4a7303e6606178c6 /chess/pawn.scad | |
parent | d2c14f67e5a71ef97f9bc2adf2b865b101aeee82 (diff) |
Started chess models
Added FIDE specs
Diffstat (limited to 'chess/pawn.scad')
-rw-r--r-- | chess/pawn.scad | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/chess/pawn.scad b/chess/pawn.scad new file mode 100644 index 0000000..b5aa39b --- /dev/null +++ b/chess/pawn.scad @@ -0,0 +1,21 @@ + +// FIDE Standards have some flexibility +// https://www.fide.com/FIDE/handbook/Standards_of_Chess_Equipment_and_tournament_venue.pdf +// FIDE Handbook C.02.2.2 Height,weight,proportions +// - King – 9.5 cm, +// - Queen – 8.5 cm, +// - Bishop – 7 cm, +// - Knight – 6 cm, +// - Rook – 5.5 cm and +// - Pawn – 5 cm. +// - The diameter of the piece's base should measure 40- 50% of its height. +// - These dimensions may differ up to 10% from the above recommendation, +// - but the order (e.g. King is higher than Queen etc.) must be kept. +// We are going to transgress C.02.2.3 +// FIDE Handbook C.02.3.2 Size of the square and the board +// - The side of the square should measure 5 to 6 cm. +// - Referring to 2.2 the side of a square should be at least twice the diameter of a pawn’s base (it means four paws on one square). + +cylinder(1, 1, 1) + + |