discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

Hollow or solid model?

S
sukrit_gupta
Wed, Oct 21, 2015 9:32 AM

I made the following polyhedron:

p1 = [10,10,0];
p2 = [10,-10,0];
p3 = [-10,-10,0];
p4 = [-10,10,0];
p5 = [0,0,15];
polyhedron(points = [ p1, p2, p3, p4, p5], faces = [ [0,1,4], [1,2,4],
[2,3,4], [3,0,4], [0,1,2,3] ]);

Is there a way that we can know if the above object when printed, will be
hollow or filled?
If it is hollow, how to fill it?

Is cube(10) hollow or solid?

Thanks

--
View this message in context: http://forum.openscad.org/Hollow-or-solid-model-tp14175.html
Sent from the OpenSCAD mailing list archive at Nabble.com.

I made the following polyhedron: p1 = [10,10,0]; p2 = [10,-10,0]; p3 = [-10,-10,0]; p4 = [-10,10,0]; p5 = [0,0,15]; polyhedron(points = [ p1, p2, p3, p4, p5], faces = [ [0,1,4], [1,2,4], [2,3,4], [3,0,4], [0,1,2,3] ]); Is there a way that we can know if the above object when printed, will be hollow or filled? If it is hollow, how to fill it? Is cube(10) hollow or solid? Thanks -- View this message in context: http://forum.openscad.org/Hollow-or-solid-model-tp14175.html Sent from the OpenSCAD mailing list archive at Nabble.com.
TP
Torsten Paul
Wed, Oct 21, 2015 9:44 AM

Von: sukrit_gupta sukritgg@gmail.com

Is there a way that we can know if the above object when printed, will be
hollow or filled? If it is hollow, how to fill it?

Is cube(10) hollow or solid?

From the model perspective it's solid. How it's actually printed will be up

to the CAM software (e.g. cura or slic3r for 3D printing).

ciao,
Torsten.

Von: sukrit_gupta <sukritgg@gmail.com> > Is there a way that we can know if the above object when printed, will be > hollow or filled? If it is hollow, how to fill it? > > Is cube(10) hollow or solid? > >From the model perspective it's solid. How it's actually printed will be up to the CAM software (e.g. cura or slic3r for 3D printing). ciao, Torsten.
JD
Jerry Davis
Wed, Oct 21, 2015 12:56 PM

like Paul Torsten said, the model is solid.

We have a MakerBot at the library, where I print stuff.
There is a parameter called infill that has a percentage number. The higher
the number the denser the object will be.

--
Extra Ham Operator: K7AZJ
Registered Linux User: 275424
Raspberry Pi and Arduino developer

The most exciting phrase to hear in science - the one that heralds new
discoveries - is not "Eureka!" but "That's funny...".
- Isaac. Asimov

I
*f you give someone a program, you will frustrate them for a day; if you
teach them how to program, you will frustrate them for a lifetime. *-
Anonymous

If writing good code requires very little comments, then writing really
excellent code requires no comments at all!
- Ken Thompson

On Wed, Oct 21, 2015 at 2:44 AM, Torsten Paul Torsten.Paul@gmx.de wrote:

Von: sukrit_gupta sukritgg@gmail.com

Is there a way that we can know if the above object when printed, will be
hollow or filled? If it is hollow, how to fill it?

Is cube(10) hollow or solid?

From the model perspective it's solid. How it's actually printed will be up
to the CAM software (e.g. cura or slic3r for 3D printing).

ciao,
Torsten.


OpenSCAD mailing list
Discuss@lists.openscad.org
http://lists.openscad.org/mailman/listinfo/discuss_lists.openscad.org

like Paul Torsten said, the model is solid. We have a MakerBot at the library, where I print stuff. There is a parameter called infill that has a percentage number. The higher the number the denser the object will be. -- Extra Ham Operator: K7AZJ Registered Linux User: 275424 Raspberry Pi and Arduino developer *The most exciting phrase to hear in science - the one that heralds new discoveries - is not "Eureka!" but "That's funny...".*- Isaac. Asimov *I* *f you give someone a program, you will frustrate them for a day; if you teach them how to program, you will frustrate them for a lifetime. *- Anonymous *If writing good code requires very little comments, then writing really excellent code requires no comments at all!*- Ken Thompson On Wed, Oct 21, 2015 at 2:44 AM, Torsten Paul <Torsten.Paul@gmx.de> wrote: > Von: sukrit_gupta <sukritgg@gmail.com> > > Is there a way that we can know if the above object when printed, will be > > hollow or filled? If it is hollow, how to fill it? > > > > Is cube(10) hollow or solid? > > > From the model perspective it's solid. How it's actually printed will be up > to the CAM software (e.g. cura or slic3r for 3D printing). > > ciao, > Torsten. > > _______________________________________________ > OpenSCAD mailing list > Discuss@lists.openscad.org > http://lists.openscad.org/mailman/listinfo/discuss_lists.openscad.org >
DM
doug moen
Wed, Oct 21, 2015 2:34 PM

To quote from OpenSCAD.org, "OpenSCAD is a software for creating solid 3D
CAD objects. "

Polyhedron and cube create solid objects.

On Wednesday, 21 October 2015, sukrit_gupta sukritgg@gmail.com wrote:

I made the following polyhedron:

p1 = [10,10,0];
p2 = [10,-10,0];
p3 = [-10,-10,0];
p4 = [-10,10,0];
p5 = [0,0,15];
polyhedron(points = [ p1, p2, p3, p4, p5], faces = [ [0,1,4], [1,2,4],
[2,3,4], [3,0,4], [0,1,2,3] ]);

Is there a way that we can know if the above object when printed, will be
hollow or filled?
If it is hollow, how to fill it?

Is cube(10) hollow or solid?

Thanks

--
View this message in context:
http://forum.openscad.org/Hollow-or-solid-model-tp14175.html
Sent from the OpenSCAD mailing list archive at Nabble.com.


OpenSCAD mailing list
Discuss@lists.openscad.org javascript:;
http://lists.openscad.org/mailman/listinfo/discuss_lists.openscad.org

To quote from OpenSCAD.org, "OpenSCAD is a software for creating solid 3D CAD objects. " Polyhedron and cube create solid objects. On Wednesday, 21 October 2015, sukrit_gupta <sukritgg@gmail.com> wrote: > I made the following polyhedron: > > p1 = [10,10,0]; > p2 = [10,-10,0]; > p3 = [-10,-10,0]; > p4 = [-10,10,0]; > p5 = [0,0,15]; > polyhedron(points = [ p1, p2, p3, p4, p5], faces = [ [0,1,4], [1,2,4], > [2,3,4], [3,0,4], [0,1,2,3] ]); > > Is there a way that we can know if the above object when printed, will be > hollow or filled? > If it is hollow, how to fill it? > > Is cube(10) hollow or solid? > > Thanks > > > > > -- > View this message in context: > http://forum.openscad.org/Hollow-or-solid-model-tp14175.html > Sent from the OpenSCAD mailing list archive at Nabble.com. > > _______________________________________________ > OpenSCAD mailing list > Discuss@lists.openscad.org <javascript:;> > http://lists.openscad.org/mailman/listinfo/discuss_lists.openscad.org > > >