# ifndef SR_POINTS_H # define SR_POINTS_H /** \file sr_points.h * manages a set of points */ # include "sr_box.h" # include "sr_vec2.h" # include "sr_color.h" # include "sr_array.h" /*! \class SrPoints sr_points.h \brief a set of points Keeps the description of points. Points are stored in array P. An optional array A with atributes (color and size) can be used. Even if P is a public member, it is the user responsability to mantain the size of P equal to the size of A, if A!=0. */ class SrPoints { public : SrArray P; //* A; //