alignPoints method
Implementation
void alignPoints(Mobject mob) {
var count1 = getNumPoints();
var count2 = mob.getNumPoints();
if (count1 < count2) {
alignPointsWithLarger(mob);
} else if (count1 > count2) {
mob.alignPointsWithLarger(this);
}
}