Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2011.01.02;
Скачать: CL | DM;

Вниз

Находится ли точка в полигоне 2D?   Найти похожие ветки 

 
Moroz4   (2008-04-22 15:16) [0]

как узнать находится ли точка в полигоне 2D?


 
DVM ©   (2008-04-22 15:27) [1]

PtInRegion + CreatePolygonRgn


 
MBo ©   (2008-04-22 15:38) [2]

http://local.wasp.uwa.edu.au/~pbourke/geometry/insidepoly/
http://tog.acm.org/editors/erich/ptinpoly/
http://en.wikipedia.org/wiki/Point_in_polygon


 
DVM ©   (2008-04-22 15:42) [3]

function PtInPolygon(const Points: TPoints; P: TPoint): Boolean;
var
 Cnt, I, J: Integer;
begin
 Result := False;
 Cnt := Length(Points);
 J := Cnt - 1;
 for I := 0 to Cnt - 1 do
 begin
   if ((Points[I].y <= P.y) and (P.y < Points[J].y)) or
     ((Points[J].y <= P.y) and (P.y < Points[I].y)) then
   begin
     if (P.x < (Points[J].x - Points[I].x) * (P.y - Points[I].y) /
       (Points[J].y - Points[I].y) + Points[I].x) then
       Result := not Result;
   end;
   J := I;
 end;
end;



Страницы: 1 вся ветка

Текущий архив: 2011.01.02;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.006 c
3-1240511348
OtherSie
2009-04-23 22:29
2011.01.02
Как составить запрос к базе


8-1208862988
Moroz4
2008-04-22 15:16
2011.01.02
Находится ли точка в полигоне 2D?


2-1286634893
Первокурсница
2010-10-09 18:34
2011.01.02
RvProject1: сделать все page отчёта на одной page


2-1286348534
Иван
2010-10-06 11:02
2011.01.02
запись в Record из memo


15-1285014564
Юрий
2010-09-21 00:29
2011.01.02
С днем рождения ! 21 сентября 2010 вторник