コード例 #1
0
ファイル: Voronoi.cs プロジェクト: VB6Hobbyst7/Delaunay-2
 /**
  *
  * @param proximityMap a BitmapData whose regions are filled with the site index values; see PlanePointFsCanvas::fillRegions()
  * @param x
  * @param y
  * @return coordinates of nearest Site to (x, y)
  *
  */
 public PointF NearestSitePointF(BitmapData proximityMap, float x, float y)
 {
     return(_sites.NearestSitePointF(proximityMap, x, y));
 }