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