examples/pl-functions/test-grid2D.cpp
author Aravindakshan Babu <akshan@stanford.edu>
Wed, 18 Aug 2010 15:35:48 -0700
branchdev
changeset 221 9ea8d4630907
parent 183 0ca59b0ebc47
permissions -rw-r--r--
Changed the first iterator of PersistenceDiagram to accept dimension as well. Modified documentation.

#include "grid2D.h"
#include <iostream>

int main()
{
	Grid2D grid(40,60);
	int i = 0;
	for (int x = 0; x < 40; ++x)
		for (int y = 0; y < 60; ++y)
		{
			grid(x,y) = i++;
		}

	std::cout << grid(20,30) << std::endl;
	std::cout << grid << std::endl;
}