Пример #1
0
 private void CloneCylinder(CylinderShape sh)
 {
     this.fp1 = sh.radius;
     this.fp2 = sh.height;
 }
Пример #2
0
 private void RestoreCylinder(CylinderShape sh)
 {
     sh.radius = this.fp1;
     sh.height = this.fp2;
 }