Exemple #1
0
 public Shape_Point incy(Shape_Point shape)
 {
     shape.y++;
     return(shape);
 }
Exemple #2
0
 public Shape_Point decy(Shape_Point shape)
 {
     shape.y--;
     return(shape);
 }
Exemple #3
0
 public Shape_Point decx(Shape_Point shape)
 {
     shape.x--;
     return(shape);
 }
Exemple #4
0
 public Shape_Point incx(Shape_Point shape)
 {
     shape.x++;
     return(shape);
 }
Exemple #5
0
 public Shape_Point(Shape_Point shape_Point)
 {
     x     = shape_Point.x;
     y     = shape_Point.y;
     color = shape_Point.color;
 }