singwina / opencamlib

Automatically exported from code.google.com/p/opencamlib
GNU General Public License v3.0
0 stars 1 forks source link

AdaptiveWaterline bug #34

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
   I tested waterline algorithm, it works well, but when I use AdaptiveWaterline, lost some small contour, test code  is below:
    Waterline awl ;
    awl.setSTL(model);
    awl.setCutter(&cutter);
    awl.setZ(zh);
    double sampling=0.1;
    awl.setSampling(sampling);
    awl.run();

//bug
    AdaptiveWaterlineawl ;
    awl.setSTL(model);
    awl.setCutter(&cutter);
    awl.setZ(zh);
    double sampling=0.1;
    awl.setSampling(sampling);
    awl.setMinSampling(0.01);
    awl.setCosLimit(0.9999);
    awl.run();

Original issue reported on code.google.com by jjq...@gmail.com on 19 Apr 2012 at 1:02

GoogleCodeExporter commented 9 years ago
please could you confirm you are using the latest opencamlib from github 
https://github.com/aewallin/opencamlib
or the one for Ubuntu from the PPA ?

a screenshot would maybe help here.
Does it happen for any Cutter, or just some?
Does it happen for any STL file, or just some?

Original comment by anders.e...@gmail.com on 19 Apr 2012 at 5:30