Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finer Gap Filling until Medial Axis is used. #1057

Closed
wants to merge 3 commits into from
Closed

Finer Gap Filling until Medial Axis is used. #1057

wants to merge 3 commits into from

Conversation

cakeller98
Copy link
Contributor

These gap filling settings almost completely fill even the finest gaps.

tested in printing and they work well.

my @widths = (1.5 * $w, $w, 0.5 * $w); # worth trying 0.2 too?

image

I know you said 1.5 is worth using, but I can not find a test case where it actually gets used. And why would it? anything 1.0 and larger gets filled with a single perimeter.

here is what I was using which works better
commit: f18f278
my @widths = (0.6 * $w, 0.3 * $w, 0.1 * $w); # worth trying 0.2 too?

image

And here are the settings that I find to be the best at not leaving little holes between sizes (though you could probably leave off the 0.004 as that ends up being more a "stitching" action than an actuall filling:

commit: 768d410
my @widths = (0.4 * $w, 0.04 * $w);

image

@alranel
Copy link
Member

alranel commented Mar 19, 2013

0.04 scares me because it will create lots of vibrations. >= 1.0 is needed because we're handling areas where we can't built a perimeter (thus two traces wide). I'll lower 0.5 to 0.4 as per your suggestion. :)

alranel added a commit that referenced this pull request Mar 19, 2013
@alranel
Copy link
Member

alranel commented Mar 19, 2013

Done in 6b31d83

@alranel alranel closed this Mar 19, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants