Complete the code to create a mate that aligns two faces exactly touching each other.
mate = model.AddMate('[1]', face1, face2)
The Coincident mate aligns two faces so they touch exactly.
Complete the code to create a mate that aligns two cylindrical faces sharing the same axis.
mate = model.AddMate('[1]', cyl_face1, cyl_face2)
The Concentric mate aligns two cylindrical faces so they share the same center axis.
Fix the error in the code to create a mate that sets a specific gap between two faces.
mate = model.AddMate('Distance', face1, face2, [1]=5.0)
The correct parameter name for setting the gap distance is offset.
Fill both blanks to create a concentric mate and then set a distance mate with a 10 mm gap.
mate1 = model.AddMate('[1]', cyl_face1, cyl_face2) mate2 = model.AddMate('[2]', face1, face2, offset=10)
First, use Concentric to align cylinders, then Distance to set a 10 mm gap between faces.
Fill all three blanks to create a coincident mate, a concentric mate, and a distance mate with 15 mm offset.
mate1 = model.AddMate('[1]', faceA, faceB) mate2 = model.AddMate('[2]', cylA, cylB) mate3 = model.AddMate('[3]', faceC, faceD, offset=15)
Use Coincident for faces touching, Concentric for cylinder alignment, and Distance with offset 15 mm for spacing.
