Exemplo n.º 1
0
        public void unionWith(MBR mbr)
        {
            if (haspoint && mbr.haspoint)
            {
                unionWith(mbr.minPoint());
                unionWith(mbr.maxPoint());
            }

            if (haspoint == false && mbr.haspoint == true)
            {
                this.become(mbr);
            }
        }