Une liste dans une structure.
class Polygone
{
  int x1, y1;
  int x2, y2;
  int x3, y3;
  ...
};

main ()
{
Polygone poly;

poly.x1 = ...;
poly.y1 = ...;
etc...
}