Difficulty: Easy
Correct Answer: union
Explanation:
Introduction / Context:
Boolean operations are central to 3D solid modeling workflows. Being able to join solids, remove volumes, or compute intersections allows designers to build complex forms from simple primitives efficiently. AutoCAD and many other CAD tools provide standard commands for these tasks.
Given Data / Assumptions:
Concept / Approach:
AutoCAD uses the commands UNION (add volumes together), SUBTRACT (remove one solid's volume from another), and INTERSECT (keep only the overlapping volume). To “combine into a single complex 3D model,” the intended Boolean is UNION, which fuses the participating solids into a single body with combined volume.
Step-by-Step Solution:
Verification / Alternative check:
AutoCAD help and command reference list UNION for combining solids and distinguish it from JOIN (primarily for 2D polylines) and ATTACH (for references or external files).
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
union
Discussion & Comments