CCT.NUI.Core.Shape.LineThinner.DistanceIsTooSmall C# (CSharp) 메소드

DistanceIsTooSmall() 개인적인 메소드

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