Complete the code to create a mate reference for aligning two faces.
mateRef = component.[1](face1, face2)The AddMateReference method is used to create a mate reference between two faces for quick assembly.
Complete the code to specify the mate type as coincident in the mate reference.
mateRef.Type = swMateType[1]The _coincident type sets the mate reference to align faces or edges so they touch exactly.
Fix the error in the code to properly add a mate reference to a component.
component.[1](faceA, faceB, swMateType_coincident)The correct method to add a mate reference is AddMateReference. Other method names are invalid and cause errors.
Fill both blanks to set the mate reference alignment and offset value.
mateRef.Alignment = swMateAlign[1] mateRef.Offset = [2]
The _ALIGNED alignment sets the mate faces to align in the same direction, and 0.0 offset means no gap between faces.
Fill all three blanks to create a mate reference with a specific name, type, and alignment.
mateRef = component.[1](face1, face2, swMateType[2]) mateRef.Alignment = swMateAlign[3]
Use AddMateReference to create the mate reference, set the type to _coincident for faces touching, and alignment to _ALIGNED for same direction.
