#include <Point.hxx>
|
constexpr | Point () |
|
constexpr | Point (int x, int y) |
|
constexpr | Point (int x, int y, int z) |
|
constexpr | Point (int x, int y, int z, int height) |
|
constexpr | Point (int x, int y, int z, int height, double rawHeight) |
|
bool | operator== (const Point &p) const |
|
bool | operator!= (const Point &p) const |
|
bool | isWithinMapBoundaries () const |
|
bool | isNeighborOf (Point coordinate) const |
| Checks if a given point is a neighbor of this point. More...
|
|
bool | isDirectNeighborOf (Point coordinate) const |
| Check if a given point is a direct neighbor (cardinal direction) of this point. More...
|
|
int | manhattanDistanceTo (Point target) const |
| Calculate the manhattan distance between this point and a given point. More...
|
|
int | distanceTo (Point target) const |
| Calculate the direct distance between this point and a given point. More...
|
|
int | toIndex () const |
| calculates the index (stride) that can be used to access in Map to access mapNodes vector. More...
|
|
Definition at line 7 of file Point.hxx.
◆ Point() [1/5]
constexpr Point::Point |
( |
| ) |
|
|
inlineconstexpr |
◆ Point() [2/5]
constexpr Point::Point |
( |
int |
x, |
|
|
int |
y |
|
) |
| |
|
inlineconstexpr |
◆ Point() [3/5]
constexpr Point::Point |
( |
int |
x, |
|
|
int |
y, |
|
|
int |
z |
|
) |
| |
|
inlineconstexpr |
◆ Point() [4/5]
◆ Point() [5/5]
constexpr Point::Point |
( |
int |
x, |
|
|
int |
y, |
|
|
int |
z, |
|
|
int |
height, |
|
|
double |
rawHeight |
|
) |
| |
|
inlineconstexpr |
◆ distanceTo()
int Point::distanceTo |
( |
Point |
target | ) |
const |
|
inline |
Calculate the direct distance between this point and a given point.
- Parameters
-
target | the point to calculate the direct distance to |
- Returns
- number of nodes between this point and the target
Definition at line 75 of file Point.hxx.
75 {
return sqrt((
x - target.
x) * (
x - target.
x) + (
y - target.
y) * (
y - target.
y)); }
◆ INVALID()
static constexpr Point Point::INVALID |
( |
| ) |
|
|
inlinestaticconstexpr |
Definition at line 35 of file Point.hxx.
35 {
return {-1, -1, -1, -1}; }
◆ isDirectNeighborOf()
bool Point::isDirectNeighborOf |
( |
Point |
coordinate | ) |
const |
|
inline |
Check if a given point is a direct neighbor (cardinal direction) of this point.
- Parameters
-
coordinate | Point to check if it is a direct neighbor |
- Returns
- if point is a direct neighbor in a cardinal direction (top, bottom, left, right)
Definition at line 57 of file Point.hxx.
59 return ((
x == coordinate.
x) && (std::abs(
y - coordinate.
y) <= 1)) ||
60 ((
y == coordinate.
y) && (std::abs(
x - coordinate.
x) <= 1));
◆ isNeighborOf()
bool Point::isNeighborOf |
( |
Point |
coordinate | ) |
const |
|
inline |
Checks if a given point is a neighbor of this point.
- Parameters
-
coordinate | Point to check if it's adjacent |
- Returns
- if the two points are neighbors
Definition at line 47 of file Point.hxx.
◆ isWithinMapBoundaries()
bool Point::isWithinMapBoundaries |
( |
| ) |
const |
|
inline |
◆ manhattanDistanceTo()
int Point::manhattanDistanceTo |
( |
Point |
target | ) |
const |
|
inline |
Calculate the manhattan distance between this point and a given point.
- Parameters
-
target | the point to calculate the manhattan distance to |
- Returns
- number of nodes between this point and the target
Definition at line 68 of file Point.hxx.
68 {
return abs(
x - target.
x) + abs(
y - target.
y); }
◆ operator!=()
bool Point::operator!= |
( |
const Point & |
p | ) |
const |
|
inline |
Definition at line 33 of file Point.hxx.
33 {
return !(*
this == p); }
◆ operator==()
bool Point::operator== |
( |
const Point & |
p | ) |
const |
|
inline |
Definition at line 32 of file Point.hxx.
32 {
return x == p.
x &&
y == p.
y ; }
◆ toIndex()
int Point::toIndex |
( |
| ) |
const |
|
inline |
calculates the index (stride) that can be used to access in Map to access mapNodes vector.
Definition at line 80 of file Point.hxx.
◆ height
The height level.
Definition at line 26 of file Point.hxx.
◆ rawHeight
The raw height.
Definition at line 29 of file Point.hxx.
The x coordinate.
Definition at line 14 of file Point.hxx.
The y coordinate.
Definition at line 20 of file Point.hxx.
The z coordinate.
Definition at line 23 of file Point.hxx.
The documentation for this class was generated from the following file: