var pointA:Point = new Point(10, 14); var pointB:Point = new Point(5, 14); pointB.x += 5; trace(pointA.equals(pointB)); //true!