CCT.NUI.Core.Shape.LineThinner.DistanceIsTooSmall C# (CSharp) Method

DistanceIsTooSmall() private method

private DistanceIsTooSmall ( System.Point sourcePoint, System.Point destPoint ) : bool
sourcePoint System.Point
destPoint System.Point
return bool
        private bool DistanceIsTooSmall(Point sourcePoint, Point destPoint)
        {
            return Point.Distance(sourcePoint, destPoint) < this.mindDistBetweenPoints;
        }
    }