Complete the code to create a new reference plane offset from a face.
Set myPlane = swModel.FeatureManager.[1](swRefPlaneOffset, swFace, 0.05, 0, 0, 0)
The method InsertRefPlaneOffset creates a reference plane offset from a selected face.
Complete the code to create an axis by selecting two points.
Set myAxis = swModel.FeatureManager.[1](swRefAxisTwoPoints, swPoint1, swPoint2)The method InsertRefAxis creates a reference axis by specifying the type and references.
Fix the error in the code to create a reference point at the intersection of two edges.
Set myPoint = swModel.FeatureManager.[1](swRefPointIntersection, swEdge1, swEdge2)The correct method to create a reference point is InsertRefPoint, specifying the type and references.
Fill both blanks to create a reference plane through three points.
Set myPlane = swModel.FeatureManager.[1](swRefPlaneThreePoints, [2], swPoint2, swPoint3)
The method InsertRefPlane creates a plane by specifying the type and three points. The first point is swPoint1.
Fill all three blanks to create a reference axis by selecting a cylindrical face and an edge.
Set myAxis = swModel.FeatureManager.[1](swRefAxisCylinder, [2], [3])
The method InsertRefAxis creates an axis by specifying the type, a cylindrical face, and an edge.
