~jan-zarsky/tree/trunk

« back to all changes in this revision

Viewing changes to TreeGenerator/Circle.cs

  • Committer: janzarsky
  • Date: 2012-09-22 19:53:45 UTC
  • Revision ID: git-v1:bf99843f54303679ab8f43b53d7ef721fe2fcb33
Created interface IComposite<T>.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
using System.Collections.Generic;
23
23
 
24
24
namespace TreeGenerator {
25
 
        class Circle {
 
25
        class Circle : IComposite<Circle> {
26
26
                List<Point> points = new List<Point>();
27
27
                List<Circle> children = new List<Circle>();
28
28