aboutsummaryrefslogtreecommitdiff
path: root/svg-flatten/include
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2023-03-25 22:05:03 +0100
committerjaseg <git@jaseg.de>2023-03-25 22:05:03 +0100
commit6b0382ab776dd8abcaefa0103c855f16372f62c3 (patch)
tree690967c6e14451ea92ef6c88e9a1ff97cec8716b /svg-flatten/include
parenta6adfe4d1d19096b45a5db144dd135b3fcf94371 (diff)
downloadgerbolyze-6b0382ab776dd8abcaefa0103c855f16372f62c3.tar.gz
gerbolyze-6b0382ab776dd8abcaefa0103c855f16372f62c3.tar.bz2
gerbolyze-6b0382ab776dd8abcaefa0103c855f16372f62c3.zip
WIP
Diffstat (limited to 'svg-flatten/include')
-rw-r--r--svg-flatten/include/geom2d.hpp43
-rw-r--r--svg-flatten/include/gerbolyze.hpp3
2 files changed, 40 insertions, 6 deletions
diff --git a/svg-flatten/include/geom2d.hpp b/svg-flatten/include/geom2d.hpp
index 4fafd80..47cf3be 100644
--- a/svg-flatten/include/geom2d.hpp
+++ b/svg-flatten/include/geom2d.hpp
@@ -104,11 +104,26 @@ namespace gerbolyze {
};
double doc2phys_dist(double dist_doc) {
- return dist_doc * sqrt(xx*xx + xy * xy);
+ return dist_doc * sqrt(xx*xx + xy*xy);
}
double phys2doc_dist(double dist_doc) {
- return dist_doc / sqrt(xx*xx + xy * xy);
+ return dist_doc / sqrt(xx*xx + xy*xy);
+ }
+
+ double doc2phys_skew(double dist_doc) {
+ /* https://math.stackexchange.com/a/3521141 */
+ /* xx yx x0
+ * xy yy y0 */
+ s_x = sqrt();
+ }
+
+ double doc2phys_min(double dist_doc) {
+ return dist_doc * fmin(sqrt(xx*xx + xy*xy), sqrt(yy*yy + yx*yx));
+ }
+
+ double doc2phys_max(double dist_doc) {
+ return dist_doc * fmax(sqrt(xx*xx + xy*xy), sqrt(yy*yy + yx*yx));
}
d2p doc2phys(const d2p p) {
@@ -141,13 +156,31 @@ namespace gerbolyze {
}
/* Transform given clipper paths */
- void transform_paths(ClipperLib::Paths &paths) {
+ void doc2phys_clipper(ClipperLib::Paths &paths) {
+ for (auto &p : paths) {
+ doc2phys_clipper(p);
+ }
+ }
+
+ void doc2phys_clipper(ClipperLib::Path &path) {
+ std::transform(path.begin(), path.end(), path.begin(),
+ [this](ClipperLib::IntPoint p) -> ClipperLib::IntPoint {
+ d2p out(this->doc2phys(d2p{p.X / clipper_scale, p.Y / clipper_scale}));
+ return {
+ (ClipperLib::cInt)round(out[0] * clipper_scale),
+ (ClipperLib::cInt)round(out[1] * clipper_scale)
+ };
+ });
+ }
+
+ /* Transform given clipper paths */
+ void phys2doc_clipper(ClipperLib::Paths &paths) {
for (auto &p : paths) {
- transform_clipper_path(p);
+ phys2doc_clipper(p);
}
}
- void transform_clipper_path(ClipperLib::Path &path) {
+ void phys2doc_clipper(ClipperLib::Path &path) {
std::transform(path.begin(), path.end(), path.begin(),
[this](ClipperLib::IntPoint p) -> ClipperLib::IntPoint {
d2p out(this->doc2phys(d2p{p.X / clipper_scale, p.Y / clipper_scale}));
diff --git a/svg-flatten/include/gerbolyze.hpp b/svg-flatten/include/gerbolyze.hpp
index 8bd948a..f90b9bf 100644
--- a/svg-flatten/include/gerbolyze.hpp
+++ b/svg-flatten/include/gerbolyze.hpp
@@ -208,7 +208,8 @@ namespace gerbolyze {
class RenderSettings {
public:
double m_minimum_feature_size_mm = 0.1;
- double curve_tolerance_mm;
+ double geometric_tolerance_mm = 0.1;
+ double stroke_width_cutoff = 0.01;
double drill_test_polsby_popper_tolerance = 0.01;
double aperture_circle_test_tolerance = 0.01;
double aperture_rect_test_tolerance = 0.01;