To define a circle, give a center point and radius.
var center = new Position2D(5, 5); var radius = 3; var circle = new Circle(center, radius);