# comment lines start with the '#' character

# first, you have to give the name of the world (a single word which
# can contain any nonwhitespace characters
#
World1

# next comes the definition of the boundary.
#
# all numbers must be whitespace separated (no comments in between)
# they might even have to be all on the same line...
#
# the first number is the number of points (an integer)
# the remaining numbers are the x and y coordinates (floating point
# numbers) of each point 
#
# for the boundary, the points must be listed in CLOCKWISE order!!!
#
4 -.50 .90 1.50 .90 1.50 -.10 -.50 -.10

# next comes any obstacle definitions
#
# each obstacle must have a name (no whitespace characters)
#
# eventually, there will be declarations of obstacle properties, but
# for now the definition of the obstacle boundary must appear next.
#
# obstacle boundaries are defined the same way as the world boundary
# except that the points must be listed in COUNTERCLOCKWISE order!
#
Quadrilateral
4 .60 .30 .90 .70 .30 .80 .20 .60

Triangle
3 .10 .20 -.10 .70 -.30 .30
