sketch_CS.mvc 371 B

123456789101112131415161718192021222324252627282930313233
  1. PrimitiveGroup pg1 {
  2. typeID = "Router"
  3. }
  4. Rectangle r1 {
  5. x = 0
  6. y = 0
  7. width = 80
  8. height = 50
  9. }
  10. Circle c1 {
  11. x = 10
  12. y = 10
  13. radius = 20
  14. }
  15. PrimitiveGroupPrimitive(pg1, r1) {}
  16. PrimitiveGroupPrimitive(pg1, c1) {}
  17. PrimitiveGroup pg2 {
  18. typeID = "PC"
  19. }
  20. Circle c2 {
  21. x = 0
  22. y = 0
  23. radius = 50
  24. }
  25. PrimitiveGroupPrimitive(pg2, c2) {}