public Line(Dot dotA, Dot dotB) { Name = $"Line {this.GetHashCode()}"; this.DotA = dotA; this.DotB = dotB; }
public Circle(Dot _center, float _radius) { Center = _center; Radius = _radius; }
public Line() { Name = $"Line {this.GetHashCode()}"; DotA = new Dot(); DotB = new Dot(); }
public Circle(float _radius) { Center = new Dot(); Radius = _radius; }