discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

Would anyone mind taking a look at my mould maker SCAD to see why it won't work with the MakerBot Customizer?

R
RyanMellor
Thu, Dec 10, 2015 2:26 PM

Here's the thing:
http://www.thingiverse.com/thing:1184847

I've made models for the customizer app before, they've all worked and I
can't figure out why this one isn't. Any help is appreciated.

--
View this message in context: http://forum.openscad.org/Would-anyone-mind-taking-a-look-at-my-mould-maker-SCAD-to-see-why-it-won-t-work-with-the-MakerBot-Cu-tp15087.html
Sent from the OpenSCAD mailing list archive at Nabble.com.

Here's the thing: http://www.thingiverse.com/thing:1184847 I've made models for the customizer app before, they've all worked and I can't figure out why this one isn't. Any help is appreciated. -- View this message in context: http://forum.openscad.org/Would-anyone-mind-taking-a-look-at-my-mould-maker-SCAD-to-see-why-it-won-t-work-with-the-MakerBot-Cu-tp15087.html Sent from the OpenSCAD mailing list archive at Nabble.com.
MK
Marius Kintel
Thu, Dec 10, 2015 5:02 PM

On Dec 10, 2015, at 09:26 AM, RyanMellor ryan.mellor.1993@gmail.com wrote:

I've made models for the customizer app before, they've all worked and I
can't figure out why this one isn't. Any help is appreciated.

This looks like a question for MakerBot support. I cannot reproduce this error on my end, so I suspect this is related to some of the processing done in MakerBot Cusomizer’s proprietary server code.

-Marius

> On Dec 10, 2015, at 09:26 AM, RyanMellor <ryan.mellor.1993@gmail.com> wrote: > > I've made models for the customizer app before, they've all worked and I > can't figure out why this one isn't. Any help is appreciated. > This looks like a question for MakerBot support. I cannot reproduce this error on my end, so I suspect this is related to some of the processing done in MakerBot Cusomizer’s proprietary server code. -Marius
N
Neon22
Sat, Dec 12, 2015 1:08 AM

Its possibly the association list in the options.
/* [Show/Hide] */
show_axis = "yes"; //["yes":Yes, "no":No]
show_master = "no"; //["yes":Yes, "no":No]
show_sprue = "no"; //["yes":Yes, "no":No]
show_riser = "no"; //["yes":Yes, "no":No]
show_mould_bottom = "yes"; //["yes":Yes, "no":No]
show_mould_top = "yes"; //["yes":Yes, "no":No]

Try using this instead:
show_axis = "yes"; //[yes,no]

--
View this message in context: http://forum.openscad.org/Would-anyone-mind-taking-a-look-at-my-mould-maker-SCAD-to-see-why-it-won-t-work-with-the-MakerBot-Cu-tp15087p15120.html
Sent from the OpenSCAD mailing list archive at Nabble.com.

Its possibly the association list in the options. /* [Show/Hide] */ show_axis = "yes"; //["yes":Yes, "no":No] show_master = "no"; //["yes":Yes, "no":No] show_sprue = "no"; //["yes":Yes, "no":No] show_riser = "no"; //["yes":Yes, "no":No] show_mould_bottom = "yes"; //["yes":Yes, "no":No] show_mould_top = "yes"; //["yes":Yes, "no":No] Try using this instead: show_axis = "yes"; //[yes,no] -- View this message in context: http://forum.openscad.org/Would-anyone-mind-taking-a-look-at-my-mould-maker-SCAD-to-see-why-it-won-t-work-with-the-MakerBot-Cu-tp15087p15120.html Sent from the OpenSCAD mailing list archive at Nabble.com.