다각형 테스트 및 작업 중

This commit is contained in:
Jaeyoung Lee 2024-07-26 18:38:15 +09:00
parent 2159a4b64b
commit 217ce62451
3 changed files with 722 additions and 338 deletions

View File

@ -210,14 +210,15 @@ export default function Roof2() {
const octaType1 = [
{ x: 100, y: 100 },
{ x: 100, y: 600 },
{ x: 500, y: 600 },
{ x: 500, y: 400 },
{ x: 650, y: 600 },
{ x: 650, y: 400 },
{ x: 350, y: 400 },
{ x: 350, y: 100 },
]
if (canvas) {
const polygon = new QPolygon(octaType1, {
// const polygon = new QPolygon(octaType1, {
const polygon = new QPolygon(eightPoint2, {
fill: 'transparent',
stroke: 'black',
strokeWidth: 1,

File diff suppressed because it is too large Load Diff

View File

@ -241,6 +241,14 @@ export const getRoofHypotenuse = (base) => {
return Math.sqrt(base * base * 2)
}
/**
* 빗변의 길이를 입력받아 밑변의 길이를 반환
* @param base 빗변
*/
export const getAdjacent = (base) => {
return Math.round(Math.sqrt(Math.pow(line, 2) / 2))
}
/**
* 촌을 입력받아 각도를 반환
* @param chon