示例#1
0
 public HinhTron(DiemOxy a, double c)
 {
     this.i = new DiemOxy(a);
     this.R = c;
 }
示例#2
0
 public HinhTron(HinhTron a)
 {
     this.i = a.i;
     this.R = a.R;
 }
示例#3
0
 public HinhTron()
 {
     this.i = new DiemOxy();
     this.R = 0;
 }