Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

struct Point2D {
    double x;    
    double y;    
};

Points are just set according to the coordinate system explained elsewhere.

struct Color 
{
    octet a;
    octet r;
    octet g;
    octet b;
};

...