Using curly braces you can create a list of several objects (e.g. points, segments, circles).
Examples:
· L = {A, B, C} gives you a list that consists of three prior defined points A, B, and C.
· L = {(0, 0), (1, 1), (2, 2)} produces a list that consists of the entered points, as well as these nameless points.
Related Topics