Fix phys2doc/doc2phys for image export

This commit is contained in:
jaseg 2021-05-24 20:50:53 +02:00
parent ca6e6abfdc
commit 79e8da1f46

View file

@ -99,11 +99,11 @@ namespace gerbolyze {
};
double doc2phys_dist(double dist_doc) {
return xx * dist_doc;
return dist_doc * sqrt(xx*xx + xy * xy);
}
double phys2doc_dist(double dist_doc) {
return xx * dist_doc;
return dist_doc / sqrt(xx*xx + xy * xy);
}
d2p doc2phys(const d2p p) {