본문 바로가기
반응형

자바스크립트3

[Useful] point in polygon algorithm (javascript) point in polygon algorithm (insidePolygon) javascript function pointInPolygon(mouseX, mouseY) { var inside = false var i,j = 0 for(i = 0,j = vertexCount - 1; i mouseY) != (vertexList[j].y > mouseY)) && (mouseX < (vertexList[j].x - vertexList[i].x) * (mouseY - vertexList[i].y) / (vertexList[j].y - vertexList[i].y) + vertexList[i].x)) { inside = !i.. 2024. 4. 14.
Free Web Paint, no installation required(무설치 무료 웹 그림판) Free Web Paint, no installation required 설치가 필요없는 무료 웹 그림판 Drawing Board with VanillaJS https://github.com/shin0343/DrawingBoard_JS 지우기, 저장 가능한 웹 그림판입니다. 아래 링크로 접속하시면 사용 가능해요. 피드백 환영입니다! (Erasable, storable web paint. You can use it by accessing the link below. Feedback is welcome!) ​ https://shin0343.github.io/DrawingBoard_JS/ PaintJS shin0343.github.io 2021. 11. 9.
To-Do List Calendar Website(To-Do List 일정 관리 웹사이트) To-Do List Calendar Website (To-Do List 일정 관리 웹사이트) ​ Vanilla JS + HTML + CSS 로 제작한 일정관리 웹사이트를 서버에 올렸습니다. 아래 링크를 타고 들어가면 웹사이트(to-do list)를 사용할 수 있습니다! https://shin0343.github.io/ToDoList/​ To Do List shin0343.github.io 입력하신 정보는 서버에 저장되지 않으니 걱정 없이 사용하셔도 됩니다. 사용자의 피드백을 받으며 업그레이드 해나갈 예정입니다. 사용 중 문의, 요구사항이 있다면 언제든지 댓글 남겨주세요~ [English](I uploaded a calendar website produced by Vanilla JS + HTML + CSS.. 2021. 11. 7.
반응형