/*******************************************************\
In this example, all the variables are not aligned, it is
hard to see where are the variable and the use for that
variable.
\*******************************************************/

public class mPoint
{
int x,y;
int dx=1,dy=1;
Color color = Color.black;
public mPoint (int _x,int _y)
{
x=_x;
y=_y;
}