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