Initial commit

This commit is contained in:
Folkert Kevelam 2025-08-24 18:01:57 +02:00
parent 8f6eabc30c
commit b3470dce7b
2 changed files with 20 additions and 0 deletions

3
data/penrose/set.domain Normal file
View File

@ -0,0 +1,3 @@
type Set
predicate SubSet(Set s1, Set s2)

17
data/penrose/set.style Normal file
View File

@ -0,0 +1,17 @@
canvas {
width = 100
height = 100
}
forall Set A; Set B
where SubSet(A, B) {
ensure contains(A.icon, B.icon, 5.0)
A.icon above B.icon
}
forall Set x {
x.icon = Circle {
strokeWidth : 0.0
}
ensure x.icon.r > 25
}