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

public class mPoint
{
    int  x;
    int  y;
    int  dx     = 1;
    int  dy     = 1;
}

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