Complete the code to create a loft feature between two profiles.
LoftFeature = CreateLoft([1], Profile1, Profile2)The CreateLoft function requires Sketches as input profiles to generate the loft.
Complete the code to specify the loft guide curve.
LoftFeature.SetGuideCurve([1])The guide curve for lofting must be a GuideCurve object that controls the shape between profiles.
Fix the error in the loft feature creation by selecting the correct loft type.
LoftFeature = CreateLoft(Profile1, Profile2, [1])To create a loft surface, the loft type must be set to Surface. Using Solid requires closed profiles.
Fill both blanks to set the loft start and end constraints.
LoftFeature.SetStartConstraint([1]) LoftFeature.SetEndConstraint([2])
Loft start constraint is often set to Tangent and end constraint to Curvature for smooth transitions.
Fill all three blanks to define the loft with profiles, guide curve, and loft type.
LoftFeature = CreateLoft([1], [2], [3])
The loft is created using Sketches as profiles, a GuideCurve to control shape, and the loft type set to Surface.
