-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Slicing error #3941
Comments
Please, provide a 3MF. Thanks. |
Attached
Thanks for your quick response
Mr Anders Wikström
Sweden
From: lukasmatena <notifications@github.com>
Sent: 28 March, 2020 09:57
To: prusa3d/PrusaSlicer <PrusaSlicer@noreply.github.com>
Cc: AndWik <anwi@telia.com>; Author <author@noreply.github.com>
Subject: Re: [prusa3d/PrusaSlicer] Slicing error (#3941)
Please, provide a 3MF. Thanks.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <#3941 (comment)> , or unsubscribe <https://github.com/notifications/unsubscribe-auth/ADC2NJS4JCQRS6O6ICURZZTRJW3VPANCNFSM4LVPQZWQ> . <https://github.com/notifications/beacon/ADC2NJVEIEHUKSHLHFI3LATRJW3VPA5CNFSM4LVPQZW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEQK6UGY.gif>
|
Looks like model problem. Most people dont understand that slicers dont see models same way human eye does. |
I can't test the fix for this model because there is no stl file available. However, according to tests of other models, this issue should be corrected in next release. |
no response, closing. |
Version
Prusa Slicer 2.2.0
Operating system type + version
Windows 10 Pro 64-bit
3D printer brand / version + firmware version (if known)
MK3S but it doesn't matter
Behavior
Before slicing. As it should look:
After slicing:
I haven't seen this issue before. Using PrusaSlicer many times/day
Slicing in Simplify3D works perfect.
The code below is OpenScad
Project File (.3MF) where problem occurs
$fn=100;
module WallPart () {
MK = 2;
minkowski () {
translate ([0,0,80/2]) cube ([16.5-MK,3.5-MK,80-MK], center=true);
sphere (d=MK, $fn=50);
}
}
module OuterPart () {
MK = 2;
minkowski () {
translate ([0,0,130]) cube ([16.5-MK,3.5-MK,160-MK], center=true);
sphere (d=MK, $fn=50);
}
}
module Holder () {
MK = 2
;
minkowski () {
linear_extrude (height =20, center=true) {
difference () {
polygon (points=[[-2,0],[-2,45],[190,45],[190,35]]);
}
module ScrewHole () {
translate ([0,0,0])
rotate ([90,0,0])
cylinder (d=4.3, h=50);
translate ([0,-6,0])
rotate ([90,0,0])
cylinder (d=8, h=50);
translate ([0,0,0])
rotate ([-90,0,0])
cylinder (d=8.2, h=10 ,$fn=6);
}
difference () {
translate ([0,-42,3])
rotate ([0,-90,0])
Holder ();
WallPart ();
OuterPart ();
translate ([0,0,70]) ScrewHole ();
translate ([0,0,130]) ScrewHole ();
}
//Support
intersection () {
translate ([0,-30,3]) cube ([12,60,6], center=true);
union () {
translate ([-3.5,0,0.47])
rotate ([90,0,0])
scale ([1,3,1])
cylinder (d=2, h=42);
translate ([3.5,0,0.475])
rotate ([90,0,0])
scale ([1,3,1])
cylinder (d=2, h=42);
}
}
The text was updated successfully, but these errors were encountered: