Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Koin
- google play
- Observable
- Kotlin
- 테스트 자동화
- GCP
- node
- junit
- android13
- list
- rx
- Android
- mvvm
- SWIFTUI
- Animation
- php
- databinding
- node.js
- Android 13
- MediaSession
- paging
- Reactive
- RxKotlin
- MotionLayout
- SwiftUI Tutorial
- mysql
- 인앱결제
- MediaPlayer
- 동영상
- PagingLib
Archives
- Today
- Total
목록2025/01/10 (1)
봄날은 갔다. 이제 그 정신으로 공부하자
[php] 다각형 영역내에 포인트가 포함되어 있는지 체크하는 함수
GPS 관련 처리를 하다보면 사용자가 선택한 포인트가 영역내에 포함되어 있는지 체크해 별도의 처리를 해주어야 하는 경우가 있는데 이를 지원해주는 함수는 아래와 같습니다. function ptInPolygon($polygon, $point) { $p0 = end($polygon); $ctr = 0; foreach ( $polygon as $p1 ) { // there is a bug with this algorithm, when a point in "on" a vertex // in that case just add an epsilon if ($point[1] == $p0[1]) $point[1]+=0.0000000001; #epsilon ..
카테고리 없음
2025. 1. 10. 10:10