public void setCreatePointCheck(boolean createPointCheck) {
this.createPointCheck = createPointCheck;
}
public void runGeoTests(int numIterations, int numToSkipAtStart) {
Projection proj = new Mercator(new LatLonPoint(35f, -90f), 100000000, 800, 800);
double[] results = new double[7];
for (int i = 0; i < numIterations; i++) {
boolean countThisIteration = (i >= numToSkipAtStart);
long startTime = System.currentTimeMillis();
setProjection(proj.makeClone());
calculateIntersectionsWithDrawnList();
long endTime = System.currentTimeMillis();
if (countThisIteration) {
results[0] += endTime - startTime;
}