Ejemplo n.º 1
0
 public Circle(Fdata fd)
 {
     this.fd      = fd;
     this.fd.b    = this.fd.a;
     this.fd.type = Figures.Circle;
 }
Ejemplo n.º 2
0
 public Rect(Fdata fd)
 {
     this.fd      = fd;
     this.fd.type = Figures.Rect;
 }
Ejemplo n.º 3
0
 public RightTriangle(Fdata fd)
 {
     this.fd      = fd;
     this.fd.type = Figures.RightTriangle;
 }