Geometry.StrokeContains 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
기하 도형의 스트로크에 지정한 Point가 포함되는지 여부를 결정합니다.
오버로드
StrokeContains(Pen, Point) | |
StrokeContains(Pen, Point, Double, ToleranceType) |
지정한 오차 범위가 있는 경우 지정한 Point가 지정한 Pen을 기하 도형에 적용하여 만든 스트로크에 포함되는지 여부를 결정합니다. |
StrokeContains(Pen, Point)
public:
bool StrokeContains(System::Windows::Media::Pen ^ pen, System::Windows::Point hitPoint);
public bool StrokeContains (System.Windows.Media.Pen pen, System.Windows.Point hitPoint);
member this.StrokeContains : System.Windows.Media.Pen * System.Windows.Point -> bool
Public Function StrokeContains (pen As Pen, hitPoint As Point) As Boolean
매개 변수
- pen
- Pen
기하 도형의 스트로크 영역을 결정하는 개체입니다.
- hitPoint
- Point
포함 여부를 테스트할 점입니다.
반환
hitPoint
가 지정한 Pen을 기하 도형에 적용하여 만든 스트로크에 포함되면 true
이고, 그렇지 않으면 false
입니다.
설명
기본 허용 오차 계수(속성에 의해 StandardFlatteningTolerance 지정됨)는 지정된 점이 기하 도형의 스트로크에 있는지 여부를 결정할 때 사용됩니다. 고유한 허용 오차 요소를 지정하려면 오버로드를 StrokeContains 사용합니다.
일부 Geometry 메서드 (같은 StrokeContains) 생성 또는 기 하 도형의 다각형 근사값을 사용 합니다. 허용 계수가이 다각형 근사 점 간의 최대 거리를 지정합니다. 허용 오차 값이 작을수록 근사값이 더 높지만, 허용 오차가 큰 근사값보다 더 많은 처리가 필요합니다.
적용 대상
StrokeContains(Pen, Point, Double, ToleranceType)
public:
bool StrokeContains(System::Windows::Media::Pen ^ pen, System::Windows::Point hitPoint, double tolerance, System::Windows::Media::ToleranceType type);
public bool StrokeContains (System.Windows.Media.Pen pen, System.Windows.Point hitPoint, double tolerance, System.Windows.Media.ToleranceType type);
member this.StrokeContains : System.Windows.Media.Pen * System.Windows.Point * double * System.Windows.Media.ToleranceType -> bool
Public Function StrokeContains (pen As Pen, hitPoint As Point, tolerance As Double, type As ToleranceType) As Boolean
매개 변수
- pen
- Pen
기하 도형의 스트로크를 정의하는 개체입니다.
- hitPoint
- Point
포함 여부를 테스트할 점입니다.
- tolerance
- Double
기하 도형의 다각형 근사에서 각 점 사이의 거리에 허용되는 최대 범위입니다. 값이 작을수록 결과가 정확해지지만 실행 속도는 느려집니다. tolerance
가 .000001보다 작은 경우 .000001이 대신 사용됩니다.
- type
- ToleranceType
허용 계수가 절대 값인지 또는 이 기하 도형 영역에 대한 상대 값인지를 지정하는 ToleranceType 값 중 하나입니다.
반환
지정한 허용 계수가 있는 경우 지정한 Pen을 기하 도형에 적용하여 만든 스트로크에 지정한 점이 포함되면 true
이고, 그렇지 않으면 false
입니다.
설명
일부 Geometry 메서드 (같은 StrokeContains) 생성 또는 기 하 도형의 다각형 근사값을 사용 합니다. 허용 계수가이 다각형 근사 점 간의 최대 거리를 지정합니다. 허용 오차 값이 작을수록 근사값이 더 높지만, 허용 오차가 큰 근사값보다 더 많은 처리가 필요합니다.