extra tessellations

This commit is contained in:
Zeno Rogue 2020-01-07 00:05:49 +01:00
parent 0af6ef46ab
commit c08462b5a2
4 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,10 @@
## {3,5}, diamond 1F, solution 1
s2.
angleunit(2*pi/5)
# the line below lets us specify internal angles
angleofs(pi)
distunit(edge(3,5))
unittile(1,2,1,2)
# the Conway notation
conway("(0)(1)(2 3)")
sublines(1)

View File

@ -0,0 +1,10 @@
## {3,5}, tetriamond 1S, solution 1
s2.
angleunit(2*pi/5)
# the line below lets us specify internal angles
angleofs(pi)
distunit(edge(3,5))
unittile(1,2,3,1,2,3)
# the Conway notation
conway("(0 1)(2 5)(3 4)")
sublines(1)

View File

@ -0,0 +1,10 @@
## {3,5}, pentiamond 1, solution 1
s2.
angleunit(2*pi/5)
# the line below lets us specify internal angles
angleofs(pi)
distunit(edge(3,5))
unittile(1,2,3,1,3,1,4)
# the Conway notation
conway("(0 5)(1 3)(2)(4)(6)")
sublines(1)

View File

@ -0,0 +1,10 @@
## {3,5}, pentiamond 2, solution 1
s2.
angleunit(2*pi/5)
# the line below lets us specify internal angles
angleofs(pi)
distunit(edge(3,5))
unittile(1,2,2,3,1,2,4)
# the Conway notation
conway("(0)(1 6)(2 4)(3)(5)")
sublines(1)