Complete the code to create a 3D solid from a 2D sketch using the correct feature.
feature = model.[1](sketch)The Extrude feature transforms a 2D sketch into a 3D solid by extending it along a direction.
Complete the code to specify the direction for the extrusion feature.
feature.setDirection([1])The extrusion direction is set normalToSketch to extend the sketch into 3D space.
Fix the error in the feature creation by selecting the correct method to add thickness.
feature = model.[1](sketch).setThickness(10)
The Extrude feature is used to add thickness and create a 3D solid from a sketch.
Fill both blanks to create a revolved 3D solid from a sketch around an axis.
feature = model.[1](sketch).setAxis([2])
The Revolve feature creates a 3D solid by rotating the sketch around an axisLine.
Fill all three blanks to create a lofted solid between two sketches with a guide curve.
feature = model.[1]([sketch1, sketch2]).setGuideCurve([2]).setStartCondition([3])
The Loft feature creates a solid between sketches using a guideCurve1 and a tangent start condition for smooth transition.