|
|
Hi,
I have a small request. I can work well with POV-Ray and its numeric
coordinate system, but I find it difficult to work with WYSIWYG editors
and thus with other render software.
I am in need of a plastic part for my meat grinder (a part that allows
me to create my own sausages). I can easily create this part in POV-Ray,
but not in any other software. But I need it as a 3DS or even better as
a STL file format, in order to have someone 3D printing it for me.
My idea is that I would create that part in POV-Ray (it is a very simple
shape), and in the correct dimensions, and someone here hopefully would
be able to re-create that part in an other renderer.
Is that okay? Is here anyone who could do me this favor?
The shape is a combination of a ring (hollow), an hollow cone, and an
hollow cylinder. In my next posting here I am adding the source code. It
would be nice, if anyone could assist me. Thanks.
Post a reply to this message
|
|
|
|
Here are the exact measures of the item. If you can 3D print it (white
ABS plastic, otherwise silver), too, please let me know. I would use
PayPal to compensate you for your expenses (material and shipping to
Jamaica, inside a regular envelope with protective bubble foil or foam).
Item dimensions:
total length: 7 cm
total diameter: 6 cm (bottom ring)
angle of torus: 90°
upper ring surface exceeding torus: 0.3 cm (3 mm)
important - upper cylinder edge is rounded (torus)
torus total height: 1 cm
torus total height above ring: 0.6 cm (6 mm)
ring height: 0.4 cm (4 mm)
-----------------------------------------------
#version 3.7;
// All measures in centimeters, not meters!
// If you do the 3D printing, please print in white ABS plastic
(otherwise silver). Thanks.
difference // the ring - widest and bottom part of the item
{
cylinder { < 0.0, 0.0, 0.00 > < 0.0, 0.0, 0.40 > 3.00 } // outer
diameter: 6 cm, thickness (height): 4 mm (0.4 cm)
cylinder { < 0.0, 0.0, -0.01 > < 0.0, 0.0, 0.41 > 2.45 } // inner hole
diameter: 4.9 cm
pigment { rgbf < 1.0, 1.0, 1.0, 0.8 > }
}
difference // the cone - middle part of the item
{
cone { < 0.0, 0.0, 0.00 > 2.85, < 0.0, 0.0, 1.00 > 1.85 pigment { rgbf
< 0.0, 1.0, 0.0, 0.5 > } } // angle of the cone: 45°, wall thickness:
3.5 mm, lower outer diameter on ring bottom: 5.7 cm, upper outer
diameter: 3.7 cm
cone { < 0.0, 0.0, -0.01 > 2.49, < 0.0, 0.0, 1.01 > 1.51 pigment { rgbf
< 1.0, 0.0, 0.0, 0.5 > } } // angle of the cone: 45°, wall thickness:
3.5 mm, lower inner diameter on ring bottom: 5.0 cm, upper inner
diameter: 3.0 cm
}
difference // the cylinder - longest and uppest part of the item
{
cylinder { < 0.0, 0.0, 1.00 > < 0.0, 0.0, 6.85 > 1.85 } // outer
diameter: 3.7 cm, wall thickness: 3 mm (0.3 cm)
cylinder { < 0.0, 0.0, 1.09 > < 0.0, 0.0, 6.86 > 1.55 } // inner hole
diameter: 3.1 cm
pigment { rgbf < 1.0, 1.0, 1.0, 0.5 > }
}
torus
{
1.7, 0.15
rotate < 90.0, 0.0, 0.0 >
translate < 0.0, 0.0, 6.85 >
pigment { rgbf < 0.0, 0.0, 1.0, 0.5 > }
}
// --------------------------------------------------------------
camera
{
location < 10.0, 10.0, -05.0 >
look_at < 0.0, 0.0, 0.0 >
right 1.77*x
}
light_source
{
< 1.0, 1.0, 1.0 >
rgb < 1.98039, 1.94902, 1.89804 >
}
Post a reply to this message
Attachments:
Download 'sl - parts - meat grinder - sausage casing part.png' (34 KB)
Preview of image 'sl - parts - meat grinder - sausage casing part.png'
|
|