Ejemplo n.º 1
0
        //************************************* Test Methods *************************************

        //runs a check to see if the given Vector is intersecting
        //this object
        public bool DoesLineCross(mPoint startPt, mPoint endPt, int buffer = 0)
        {
            //check to see if the vector intersects the shape with the
            //addition of the bufferZone
            return(ObjShape.DoesLineCross(startPt, endPt, buffer));
        }