Newer
Older
circle1 = new Circle(0, 0);
circle2 = new Circle(0, 0);
chain1 = new CircleChain();
chain2 = new CircleChain();
chain1.tail = chain2;
chain1.circle = circle1;
chain2.circle = circle2;
this.center = center;
this.radius = radius;
}