huc::Grid< CellInfo >::Point Struct Reference

Point struct is a convenient struct use to represent a 2D point for a grid (index position). More...

#include <grid.hxx>

Public Member Functions

 Point (uint32_t x=0, uint32_t y=0)
 

Public Attributes

uint32_t x
 
uint32_t y
 

Detailed Description

template<typename CellInfo = CellInfoBase>
struct huc::Grid< CellInfo >::Point

Point struct is a convenient struct use to represent a 2D point for a grid (index position).

Definition at line 56 of file grid.hxx.

Constructor & Destructor Documentation

template<typename CellInfo = CellInfoBase>
huc::Grid< CellInfo >::Point::Point ( uint32_t  x = 0,
uint32_t  y = 0 
)
inline

Definition at line 58 of file grid.hxx.

58 : x(x), y(y) {}
uint32_t x
Definition: grid.hxx:59
uint32_t y
Definition: grid.hxx:60

Member Data Documentation

template<typename CellInfo = CellInfoBase>
uint32_t huc::Grid< CellInfo >::Point::x

Definition at line 59 of file grid.hxx.

template<typename CellInfo = CellInfoBase>
uint32_t huc::Grid< CellInfo >::Point::y

Definition at line 60 of file grid.hxx.


The documentation for this struct was generated from the following file: