Exemple #1
0
 public Box(double lenght, double width, double height, RGB rgb)
 {
     this.lenght = lenght;
     this.width = width;
     this.height = height;
     Color = rgb;
 }
Exemple #2
0
 public Shaft(double lenght, double width, RGB rgb)
 {
     _lenght = lenght;
     _width = width;
     Color = rgb;
 }