 |
CLIP Score: 21.84
openscad
// Wine Glass Dimensions
base_radius = 15;
stem_radius = 3;
bowl_radius = 20;
bowl_height = 50;
stem_height = 70;
base_height = 5;
// Wine Glass Components
module base() {
cylinder(h = base_height, r = base_radius, $fn = 100);
}
module stem() {
cylinder(h = stem_height, r = stem_radius, $fn = 100);
}
module bowl() {
translate([0, 0, stem_height])
difference() {
cylinder(h = bowl_height, r1 = 5, r2 = bowl_radius, $fn = 100);
translate([0, 0, 1])
cylinder(h = bowl_height, r1 = 4.5, r2 = bowl_radius - 0.5, $fn = 100);
}
}
// Assemble Wine Glass
module wine_glass() {
union() {
translate([0, 0, 0]) base();
translate([0, 0, base_height]) stem();
translate([0, 0, base_height]) bowl();
}
}
// Render the Wine Glass
wine_glass();
|
Please generate a 2D CAD file in OpenSCAD for fancy wine glass
Creating a fancy wine glass in OpenSCAD involves using various geometric shapes and transformations. Below is a script to generate a simple yet elegant wine glass. You can copy and paste this code into OpenSCAD and render the model.
```openscad
// Wine Glass Dimensions
base_radius = 15;
stem_radius = 3;
bowl_radius = 20;
bowl_height = 50;
stem_height = 70;
base_height = 5;
// Wine Glass Components
module base() {
cylinder(h = base_height, r = base_radius, $fn = 100);
}
module stem() {
cylinder(h = stem_height, r = stem_radius, $fn = 100);
}
module bowl() {
translate([0, 0, stem_height])
difference() {
cylinder(h = bowl_height, r1 = 5, r2 = bowl_radius, $fn = 100);
translate([0, 0, 1])
cylinder(h = bowl_height, r1 = 4.5, r2 = bowl_radius - 0.5, $fn = 100);
}
}
// Assemble Wine Glass
module wine_glass() {
union() {
translate([0, 0, 0]) base();
translate([0, 0, base_height]) stem();
translate([0, 0, base_height]) bowl();
}
}
// Render the Wine Glass
wine_glass();
```
Explanation:
- `base()`: Defines the base of the wine glass using a cylinder.
- `stem()`: Defines the stem of the wine glass using another cylinder.
- `bowl()`: Defines the bowl of the wine glass by creating a conical shape and then subtracting a smaller conical shape to hollow it out.
- `wine_glass()`: Assembles the base, stem, and bowl into a complete wine glass.
- `wine_glass();` at the end renders the wine glass model.
You can customize the dimensions by changing the values of the variables at the top of the script.
|