728x90 반응형 projection1 [Python] 특정 점에서 직선에 수선의 발 구하기. 특정 pnt에서 두 점 segment_s(s), segment_e(e)로 정의된 line segment를 포함하는 line으로 수선의 발(foot of perpendicular line)를 내리는 경우는 다음과 같음. 위 그림에서 x가 바로 foot of perpendicular line임. 다음은 foot of perpendicular line (intersection)과 line-segment 중에서 pnt와 가장 가까운 점 (closet_pnt)을 반환하는 function을 구현한 예제임. def find_intersection_pnt( segment_s, segment_e, pnt): # Calculate the direction vector of the line segment defined by.. 2023. 7. 11. 이전 1 다음 728x90 반응형