MCPcopy Create free account
hub / github.com/ShahjalalShohag/code-library / Line

Method Line

Geometry/Rectangle Union.cpp:8–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6struct Line {
7 int x, ymin, ymax, ty ;
8 Line() {}
9 Line(int _x, int _ym, int _ymx, int _ty) { x = _x ; ymin = _ym ; ymax = _ymx ; ty = _ty ; }
10 bool operator < (const Line &e) const { return x < e.x ; }
11};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected