forked from GitHub/gf-core
13 lines
228 B
Plaintext
13 lines
228 B
Plaintext
abstract Geometry = Logic ** {
|
|
fun
|
|
Line, Point, Circle : Dom ;
|
|
Intersect, Parallel : Ind -> Ind -> Atom ;
|
|
Vertical : Ind -> Atom ;
|
|
Centre : Ind -> Ind ;
|
|
|
|
Horizontal : Pred1 ;
|
|
Diverge : Pred1 ;
|
|
|
|
Contain : Pred2 ;
|
|
}
|