Compile Time Changes

Removed class MhCantileverFrameChildAdjustToBehavior

The class MhCantileverFrameChildAdjustToBehavior has been deleted as well as the global singleton mhCantileverFrameChildAdjustToBehavior. The logic within this class has been incorporated into parent class MhChildAdjustToBehavior.

Removed:
public class MhCantileverFrameChildAdjustToBehavior extends MhChildAdjustToBehavior {

    /**
     * Child intersect pos.
     * Position used to find closest snap alternative.
     */
    public point childIntersectPos(MhSnapper owner, MhSnapper child, Object env=null) {
        if (isArm(child)) { // Maintain z-pos of arm regardless of its bound.
            box bound = child.localBound;
            point center = bound.center.transformed(mhTransform(child.pos, child.rot));
            return (center.x, center.y, child.pos.z);
        }

        return super(..);
    }
}