test_julia_scripts/11_shapes.jl

12 lines
196 B
Julia
Raw Permalink Normal View History

2020-05-07 23:54:17 +00:00
include("./11_DefiningTypes.jl")
include("./11_points.jl")
r1 = Rectangle(D,B)
2020-05-09 18:09:47 +00:00
c1 = Circle(A,2)
2020-05-07 23:54:17 +00:00
r2 = Rectangle(K,I)
2020-05-09 18:09:47 +00:00
c2 = Circle(F,1)
2020-05-07 23:54:17 +00:00
g1 = group(c1,r1)
g2 = group(c2,r2)
allgroup = group(g1,g2)