examples/grid/test-grid2D.cpp
author Dmitriy Morozov <morozov@cs.duke.edu>
Wed, 24 Jan 2007 17:50:45 -0500
changeset 14 d68c28a18f37
parent 5 ee9052408c40
permissions -rw-r--r--
Added computation of PDBDistanceGrid for all atoms of the backbone (not just alpha-carbons)

#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;
}