Example #1
0
        //gets the room containing the point and then gets the area from that room. It will return null
        //if the point is not contained in an area.
        public Tuple <mPoint, Tuple <double, double> > GetAreaCornerAndDimentions(mPoint PointInRoomUV)
        {
            MapRoom room = BuildingMap.GetRoomFromPointInUV(PointInRoomUV);

            return(room.GetAreaCornerAndDimentions(PointInRoomUV));
        }