Img2Num C++ (Internal Developer Docs) dev
API Documentation
Loading...
Searching...
No Matches
contours::Coord Struct Reference
+ Collaboration diagram for contours::Coord:

Public Member Functions

bool operator< (const Coord &other) const
 

Public Attributes

int x
 
int y
 

Detailed Description

Definition at line 304 of file contours.cpp.

Member Function Documentation

◆ operator<()

bool contours::Coord::operator< ( const Coord other) const
inline

Definition at line 306 of file contours.cpp.

306 {
307 return std::tie(x, y) < std::tie(other.x, other.y);
308 }

Member Data Documentation

◆ x

int contours::Coord::x

Definition at line 305 of file contours.cpp.

◆ y

int contours::Coord::y

Definition at line 305 of file contours.cpp.


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