Exemplo n.º 1
0
        public bool PointIsBelowSegmentBottom_Sloped_Segment(double yPtN, double yBottomEnd, double yTopEnd)
        {
            Point ptI = new Point(10, yBottomEnd);
            Point ptJ = new Point(20, yTopEnd);

            return(ProjectionVertical.PointIsBelowSegmentBottom(yPtN, ptI, ptJ));
        }