--- title : "API Documentation" author_profile: false excerpt: "Coordinates" header: overlay_color: "#5DADE2" permalink: /docs/API/coordinates.html sidebar: nav : docs --- The Grid is define on a N-dimensional set of integer coordinates. The maximum dimension is eight, and indexes in this space make use of the `Coordinate` class. The coordinate class shares a similar interface to `std::vector`, but contains all data within the object, and has a fixed maximum length (template parameter). **Example**: ```c++ const int Nd=4; Coordinate point(Nd); for(int i=0;i