This is the documentation for Enlighten.

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

struct Geo::GeoPoint2D

Integer 2 dimensional point class.

Functions

Name Description
GeoPoint2D()

Constructors.

GeoPoint2D(Geo::s32, Geo::s32)

Constructors.

operator<(const GeoPoint2D &)

Comparison operator, required to use this class as a key in an STL-style container.

operator==(const GeoPoint2D &)

Equality operator.

Variables

Name Description
Geo::s32 X

X coordinate.

Geo::s32 Y

Y coordinate.


Geo::GeoPoint2D::GeoPoint2D


public: GeoPoint2D()


Constructors.


Geo::GeoPoint2D::GeoPoint2D


public: GeoPoint2D
(
    Geo::s32 x,
    Geo::s32 y
)


Constructors.


bool Geo::GeoPoint2D::operator<


public: bool operator<
(
    const GeoPoint2D & rhs
) const


Comparison operator, required to use this class as a key in an STL-style container.


bool Geo::GeoPoint2D::operator==


public: bool operator==
(
    const GeoPoint2D & rhs
) const


Equality operator.

  • No labels