本文整理汇总了C#中Stroke.NearestPoint方法的典型用法代码示例。如果您正苦于以下问题:C# Stroke.NearestPoint方法的具体用法?C# Stroke.NearestPoint怎么用?C# Stroke.NearestPoint使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Stroke
的用法示例。
在下文中一共展示了Stroke.NearestPoint方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: HitEdgeTest
/* Checks if the stroke drawn is within the range of a
* edge from Graph g. The range of an edge is roughly
* around its center.
*/
public static Edge HitEdgeTest(Stroke s, Graph g)
{
if(StrokeManager.StrokeLength(s) > HIT_TEST_THRESHOLD) return null;
float distance = 1300;
Edge hitedge = null;
for(int i=0; i<g.Edges.Length(); i++)
{
float tmp;
Edge e = g.Edges[i];
Rectangle rect = e.Stroke.GetBoundingBox();
Point p = new Point(rect.X+rect.Width/2, rect.Y+rect.Height/2);
s.NearestPoint(p, out tmp);
if(tmp < distance)
{
distance = tmp;
hitedge = e;
}
}
return hitedge;
}