#include <CGAL/Simple_cartesian.h>
#include <cassert>
#include <vector>
#include <algorithm>
#include <CGAL/point_generators_2.h>
#include <CGAL/algorithm.h>
typedef K::Point_2                    Point;
int main() {
    
    std::vector<Point> points;
    points.reserve(400);
    
    
    
    
    assert( points[0].x() == -255);
    assert( points[0].y() == -255);
    
    assert( points[249].x() == 255 - 6 * 34);
    assert( points[249].y() == 255);
    
    
    assert( points.size() == 500);
    return 0;
}