Exemplo n.º 1
0
        public bool PointIsWithinSegmentWidth_Sloped(double xPtN, double xLeftEnd, double xRightEnd)
        {
            Point ptI = new Point(xLeftEnd, 1);
            Point ptJ = new Point(xRightEnd, 15);

            return(ProjectionVertical.PointIsWithinSegmentWidth(xPtN, ptI, ptJ));
        }