CCT.NUI.Core.Shape.LineThinner.DistanceIsTooSmall C# (CSharp) Méthode

DistanceIsTooSmall() private méthode

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