Difficulty: Easy
Correct Answer: use Union to join them
Explanation:
Introduction / Context:
When working with solid modeling, designers often build complex parts by combining simpler primitives (box, cylinder, wedge). After positioning these bodies, you typically need a Boolean operation to merge them into one watertight solid for mass properties, filleting across seams, and clean downstream manufacturing data.
Given Data / Assumptions:
Concept / Approach:
Solid modeling uses three core Boolean operations: Union, Subtract, and Intersect. Union combines volumes into one contiguous solid, removing internal faces at the junctions. Subtract removes one volume from another. Intersect keeps only overlapping volume. For merging, Union is the correct choice.
Step-by-Step Solution:
Verification / Alternative check:
Use MASSPROP to confirm a single volume and check that edges across former boundaries fillet or chamfer continuously—an indication of a true union.
Why Other Options Are Wrong:
Common Pitfalls:
Attempting Union on non-solids (e.g., surfaces) or touching solids that only meet at an edge may fail. Ensure bodies overlap or meet with faces for reliable results.
Final Answer:
use Union to join them
Discussion & Comments