mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-21 08:00:25 +00:00
export hr_polygon_error
This commit is contained in:
parent
66b2b3277a
commit
0739a7c16e
@ -75,6 +75,7 @@ EX arbi_tiling& current_or_slided() {
|
|||||||
|
|
||||||
EX short& id_of(heptagon *h) { return h->zebraval; }
|
EX short& id_of(heptagon *h) { return h->zebraval; }
|
||||||
|
|
||||||
|
#if HDR
|
||||||
struct hr_polygon_error : hr_exception {
|
struct hr_polygon_error : hr_exception {
|
||||||
vector<transmatrix> v;
|
vector<transmatrix> v;
|
||||||
eGeometryClass c;
|
eGeometryClass c;
|
||||||
@ -83,17 +84,20 @@ struct hr_polygon_error : hr_exception {
|
|||||||
map<string, cld> params;
|
map<string, cld> params;
|
||||||
hr_polygon_error(const vector<transmatrix>& _v, int _id, transmatrix _e) : v(_v), c(cgclass), id(_id), end(_e) {}
|
hr_polygon_error(const vector<transmatrix>& _v, int _id, transmatrix _e) : v(_v), c(cgclass), id(_id), end(_e) {}
|
||||||
~hr_polygon_error() noexcept(true) {}
|
~hr_polygon_error() noexcept(true) {}
|
||||||
string generate_error() {
|
string generate_error();
|
||||||
cld dist = (hdist0(tC0(end)) / params["distunit"]);
|
|
||||||
bool angle = abs(dist) < 1e-9;
|
|
||||||
if(angle) dist = (atan2(end * xpush0(1)) / params["angleunit"]);
|
|
||||||
return
|
|
||||||
XLAT("Polygon number %1 did not close correctly (%2 %3). Here is the picture to help you understand the issue.\n\n", its(id),
|
|
||||||
angle ? "angle" : "distance",
|
|
||||||
lalign(0, dist)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
string hr_polygon_error::generate_error() {
|
||||||
|
cld dist = (hdist0(tC0(end)) / params["distunit"]);
|
||||||
|
bool angle = abs(dist) < 1e-9;
|
||||||
|
if(angle) dist = (atan2(end * xpush0(1)) / params["angleunit"]);
|
||||||
|
return
|
||||||
|
XLAT("Polygon number %1 did not close correctly (%2 %3). Here is the picture to help you understand the issue.\n\n", its(id),
|
||||||
|
angle ? "angle" : "distance",
|
||||||
|
lalign(0, dist)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
struct connection_debug_request : hr_exception {
|
struct connection_debug_request : hr_exception {
|
||||||
int id;
|
int id;
|
||||||
|
Loading…
Reference in New Issue
Block a user