|
|
|
|
@ -368,11 +368,12 @@ export const drawGabledRoof = (roofId, canvas) => {
|
|
|
|
|
// 마루를 그린다.
|
|
|
|
|
if (points) {
|
|
|
|
|
const ridge = new QLine(points, {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 1,
|
|
|
|
|
name: LINE_TYPE.SUBLINE.RIDGE,
|
|
|
|
|
attributes: { roofId: roof.id, currentRoof: [currentRoof.id] },
|
|
|
|
|
attributes: { roofId: roof.id, currentRoofId: [currentRoof.id] },
|
|
|
|
|
visible: false,
|
|
|
|
|
})
|
|
|
|
|
const duplicateRidge = ridges.find(
|
|
|
|
|
@ -380,7 +381,7 @@ export const drawGabledRoof = (roofId, canvas) => {
|
|
|
|
|
)
|
|
|
|
|
// 중복된 마루는 제외한다.
|
|
|
|
|
if (duplicateRidge) {
|
|
|
|
|
duplicateRidge.attributes.currentRoof.push(currentRoof.id)
|
|
|
|
|
duplicateRidge.attributes.currentRoofId.push(currentRoof.id)
|
|
|
|
|
} else {
|
|
|
|
|
canvas.add(ridge)
|
|
|
|
|
canvas.renderAll()
|
|
|
|
|
@ -394,7 +395,7 @@ export const drawGabledRoof = (roofId, canvas) => {
|
|
|
|
|
const index = eave.index,
|
|
|
|
|
currentRoof = eave.roof
|
|
|
|
|
const currentWall = wallLines[index]
|
|
|
|
|
const currentRidges = ridges.filter((ridge) => ridge.attributes.currentRoof.includes(eave.roof.id))
|
|
|
|
|
const currentRidges = ridges.filter((ridge) => ridge.attributes.currentRoofId.includes(eave.roof.id))
|
|
|
|
|
let points = []
|
|
|
|
|
const signX = Math.sign(currentRoof.x1 - currentRoof.x2)
|
|
|
|
|
let currentX1 = currentRoof.x1,
|
|
|
|
|
@ -536,6 +537,7 @@ export const drawGabledRoof = (roofId, canvas) => {
|
|
|
|
|
|
|
|
|
|
if (sortedPoints.length > 0) {
|
|
|
|
|
const roofPolygon = new QPolygon(sortedPoints, {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fill: 'transparent',
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
@ -544,7 +546,7 @@ export const drawGabledRoof = (roofId, canvas) => {
|
|
|
|
|
name: 'roofPolygon',
|
|
|
|
|
attributes: {
|
|
|
|
|
roofId: roof.id,
|
|
|
|
|
currentRoof: currentRoof.id,
|
|
|
|
|
currentRoofId: currentRoof.id,
|
|
|
|
|
pitch: currentRoof.attributes.pitch,
|
|
|
|
|
degree: currentRoof.attributes.degree,
|
|
|
|
|
direction: currentRoof.direction,
|
|
|
|
|
@ -577,7 +579,7 @@ export const drawGabledRoof = (roofId, canvas) => {
|
|
|
|
|
|
|
|
|
|
eaves.forEach((eave) => {
|
|
|
|
|
const currentRoof = eave.roof
|
|
|
|
|
let currentRidges = ridges.filter((ridge) => ridge.attributes.currentRoof.includes(currentRoof.id))
|
|
|
|
|
let currentRidges = ridges.filter((ridge) => ridge.attributes.currentRoofId.includes(currentRoof.id))
|
|
|
|
|
if (Math.sign(currentRoof.x1 - currentRoof.x2) === 0) {
|
|
|
|
|
currentRidges = currentRidges.reduce((farthest, ridge) => {
|
|
|
|
|
const currentDistance = Math.abs(ridge.x1 - currentRoof.x1)
|
|
|
|
|
@ -597,7 +599,8 @@ export const drawGabledRoof = (roofId, canvas) => {
|
|
|
|
|
const x2 = Math.sign(currentRidges.x1 - currentRidges.x2) === 0 ? currentRoof.x1 : ridgeMidX
|
|
|
|
|
const y2 = Math.sign(currentRidges.x1 - currentRidges.x2) === 0 ? ridgeMidY : currentRoof.y1
|
|
|
|
|
|
|
|
|
|
const centerLine = new QLine([ridgeMidX, ridgeMidY, x2, y2], {
|
|
|
|
|
const pitchSizeLine = new QLine([ridgeMidX, ridgeMidY, x2, y2], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
stroke: '#000000',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
strokeDashArray: [5, 5],
|
|
|
|
|
@ -608,16 +611,17 @@ export const drawGabledRoof = (roofId, canvas) => {
|
|
|
|
|
type: 'pitchSizeLine',
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
canvas.add(pitchSizeLine)
|
|
|
|
|
canvas.renderAll()
|
|
|
|
|
|
|
|
|
|
const adjust = Math.sqrt(
|
|
|
|
|
Math.pow(Math.round(Math.abs(centerLine.x1 - centerLine.x2) * 10), 2) + Math.pow(Math.round(Math.abs(centerLine.y1 - centerLine.y2) * 10), 2),
|
|
|
|
|
Math.pow(Math.round(Math.abs(pitchSizeLine.x1 - pitchSizeLine.x2) * 10), 2) +
|
|
|
|
|
Math.pow(Math.round(Math.abs(pitchSizeLine.y1 - pitchSizeLine.y2) * 10), 2),
|
|
|
|
|
)
|
|
|
|
|
const currentDegree = currentRoof.attributes.pitch > 0 ? getDegreeByChon(currentRoof.attributes.pitch) : currentRoof.attributes.degree
|
|
|
|
|
const height = Math.tan(currentDegree * (Math.PI / 180)) * adjust
|
|
|
|
|
const lengthText = Math.round(Math.sqrt(Math.pow(adjust, 2) + Math.pow(height, 2)))
|
|
|
|
|
canvas.add(centerLine)
|
|
|
|
|
canvas.renderAll()
|
|
|
|
|
centerLine.setLengthText(lengthText)
|
|
|
|
|
roof.innerLines.push(centerLine)
|
|
|
|
|
pitchSizeLine.setLengthText(lengthText)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
@ -684,6 +688,7 @@ export const drawShedRoof = (roofId, canvas) => {
|
|
|
|
|
}
|
|
|
|
|
points.sort((a, b) => a - b)
|
|
|
|
|
const line = new QLine([x1, y1, x2, y2], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
stroke: '#000000',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
strokeDashArray: [5, 5],
|
|
|
|
|
@ -721,7 +726,7 @@ export const drawRidgeRoof = (roofId, canvas) => {
|
|
|
|
|
drawHips(roof, canvas)
|
|
|
|
|
connectLinePoint(roof, canvas)
|
|
|
|
|
modifyRidge(roof, canvas)
|
|
|
|
|
drawCenterLine(roof, canvas)
|
|
|
|
|
// drawCenterLine(roof, canvas)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@ -753,6 +758,7 @@ const drawRidge = (roof, canvas) => {
|
|
|
|
|
|
|
|
|
|
// 지붕의 길이가 짧은 순으로 정렬
|
|
|
|
|
ridgeRoof.sort((a, b) => a.length - b.length)
|
|
|
|
|
console.log('마루 순서 : ', ridgeRoof.map((item) => item.length).join(','))
|
|
|
|
|
|
|
|
|
|
ridgeRoof.forEach((item) => {
|
|
|
|
|
if (getMaxRidge(roofLines.length) > roof.ridges.length) {
|
|
|
|
|
@ -864,11 +870,12 @@ const drawRidge = (roof, canvas) => {
|
|
|
|
|
const checkEndYPoint = Math.round(startYPoint + Math.sign(beta) * -1 * (ridgeMaxLength + ridgeBaseLength))
|
|
|
|
|
|
|
|
|
|
const checkLine = new QLine([startXPoint, startYPoint, checkEndXPoint, checkEndYPoint], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: 'red',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
name: LINE_TYPE.SUBLINE.HIP,
|
|
|
|
|
attributes: { roofId: roof.id, currentRoof: currentRoof.id, actualSize: 0 },
|
|
|
|
|
attributes: { roofId: roof.id, currentRoofId: currentRoof.id, actualSize: 0 },
|
|
|
|
|
})
|
|
|
|
|
const intersectLines = []
|
|
|
|
|
roofLines.forEach((line) => {
|
|
|
|
|
@ -917,6 +924,7 @@ const drawRidge = (roof, canvas) => {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const ridge = new QLine([startXPoint, startYPoint, endXPoint, endYPoint], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
@ -956,6 +964,7 @@ const drawRidge = (roof, canvas) => {
|
|
|
|
|
let y1 = Math.min(ridge.y1, ridge2.y1, ridge.y2, ridge2.y2)
|
|
|
|
|
let y2 = Math.max(ridge.y1, ridge2.y1, ridge.y2, ridge2.y2)
|
|
|
|
|
const newRidge = new QLine([x1, y1, x2, y2], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
@ -1046,11 +1055,12 @@ const drawHips = (roof, canvas) => {
|
|
|
|
|
const angle1 = Math.atan2(vectorY1, vectorX1) * (180 / Math.PI)
|
|
|
|
|
if (Math.abs(Math.round(angle1)) % 45 === 0) {
|
|
|
|
|
const hip1 = new QLine([currentRoof.x1, currentRoof.y1, ridgeCoordinate.x1, ridgeCoordinate.y1], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
name: LINE_TYPE.SUBLINE.HIP,
|
|
|
|
|
attributes: { roofId: roof.id, currentRoof: currentRoof.id, actualSize: 0 },
|
|
|
|
|
attributes: { roofId: roof.id, currentRoofId: currentRoof.id, actualSize: 0 },
|
|
|
|
|
})
|
|
|
|
|
canvas.add(hip1)
|
|
|
|
|
const hip1Base = ((Math.abs(hip1.x1 - hip1.x2) + Math.abs(hip1.y1 - hip1.y2)) / 2) * 10
|
|
|
|
|
@ -1068,11 +1078,12 @@ const drawHips = (roof, canvas) => {
|
|
|
|
|
const angle2 = Math.atan2(vectorY2, vectorX2) * (180 / Math.PI)
|
|
|
|
|
if (Math.abs(Math.round(angle2)) % 45 === 0) {
|
|
|
|
|
const hip2 = new QLine([currentRoof.x2, currentRoof.y2, ridgeCoordinate.x1, ridgeCoordinate.y1], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
name: LINE_TYPE.SUBLINE.HIP,
|
|
|
|
|
attributes: { roofId: roof.id, currentRoof: currentRoof.id, actualSize: 0 },
|
|
|
|
|
attributes: { roofId: roof.id, currentRoofId: currentRoof.id, actualSize: 0 },
|
|
|
|
|
})
|
|
|
|
|
canvas.add(hip2)
|
|
|
|
|
const hip2Base = ((Math.abs(hip2.x1 - hip2.x2) + Math.abs(hip2.y1 - hip2.y2)) / 2) * 10
|
|
|
|
|
@ -1140,11 +1151,12 @@ const drawHips = (roof, canvas) => {
|
|
|
|
|
|
|
|
|
|
if (ridgePoints !== undefined) {
|
|
|
|
|
const hip = new QLine([currentRoof.x1, currentRoof.y1, ridgePoints.x, ridgePoints.y], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
name: LINE_TYPE.SUBLINE.HIP,
|
|
|
|
|
attributes: { roofId: roof.id, currentRoof: currentRoof.id, actualSize: 0 },
|
|
|
|
|
attributes: { roofId: roof.id, currentRoofId: currentRoof.id, actualSize: 0 },
|
|
|
|
|
})
|
|
|
|
|
canvas.add(hip)
|
|
|
|
|
const hipBase = ((Math.abs(hip.x1 - hip.x2) + Math.abs(hip.y1 - hip.y2)) / 2) * 10
|
|
|
|
|
@ -1246,6 +1258,7 @@ const connectLinePoint = (polygon) => {
|
|
|
|
|
|
|
|
|
|
missedLine.forEach((p) => {
|
|
|
|
|
const line = new QLine([p.x1, p.y1, p.x2, p.y2], {
|
|
|
|
|
parentId: polygon.id,
|
|
|
|
|
attributes: { roofId: polygon.id },
|
|
|
|
|
fontSize: polygon.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
@ -1522,7 +1535,7 @@ const changeEavesRoof = (currentRoof, canvas) => {
|
|
|
|
|
.filter(
|
|
|
|
|
(object) =>
|
|
|
|
|
object.attributes?.roofId === roofId &&
|
|
|
|
|
object.attributes?.currentRoof === currentRoof.id &&
|
|
|
|
|
object.attributes?.currentRoofId === currentRoof.id &&
|
|
|
|
|
object.x1 !== undefined &&
|
|
|
|
|
object.x2 !== undefined,
|
|
|
|
|
)
|
|
|
|
|
@ -1625,6 +1638,7 @@ const changeEavesRoof = (currentRoof, canvas) => {
|
|
|
|
|
const nextDegree = nextRoof.attributes.pitch > 0 ? getDegreeByChon(nextRoof.attributes.pitch) : nextRoof.attributes.degree
|
|
|
|
|
|
|
|
|
|
const hip1 = new QLine([currentRoof.x1, currentRoof.y1, hipX2, hipY2], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
@ -1644,6 +1658,7 @@ const changeEavesRoof = (currentRoof, canvas) => {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const hip2 = new QLine([currentRoof.x2, currentRoof.y2, hipX2, hipY2], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
@ -1674,6 +1689,7 @@ const changeEavesRoof = (currentRoof, canvas) => {
|
|
|
|
|
const changeGableRoof = (currentRoof, canvas) => {
|
|
|
|
|
if (currentRoof.attributes.type === LINE_TYPE.WALLLINE.GABLE) {
|
|
|
|
|
const roofId = currentRoof.attributes.roofId
|
|
|
|
|
console.log('roofId', roofId)
|
|
|
|
|
const roof = canvas?.getObjects().find((object) => object.name === POLYGON_TYPE.ROOF && object.id === roofId)
|
|
|
|
|
let hipLines = canvas?.getObjects().filter((object) => object.name === LINE_TYPE.SUBLINE.HIP && object.attributes.roofId === roofId)
|
|
|
|
|
let ridgeLines = canvas?.getObjects().filter((object) => object.name === LINE_TYPE.SUBLINE.RIDGE && object.attributes.roofId === roofId)
|
|
|
|
|
@ -1686,7 +1702,7 @@ const changeGableRoof = (currentRoof, canvas) => {
|
|
|
|
|
.filter(
|
|
|
|
|
(object) =>
|
|
|
|
|
object.attributes?.roofId === roofId &&
|
|
|
|
|
object.attributes?.currentRoof === currentRoof.id &&
|
|
|
|
|
object.attributes?.currentRoofId === currentRoof.id &&
|
|
|
|
|
object.x1 !== undefined &&
|
|
|
|
|
object.x2 !== undefined,
|
|
|
|
|
)
|
|
|
|
|
@ -1713,6 +1729,7 @@ const changeGableRoof = (currentRoof, canvas) => {
|
|
|
|
|
roof.innerLines = roof.innerLines.filter((l) => l.id !== line.id)
|
|
|
|
|
canvas?.remove(line)
|
|
|
|
|
})
|
|
|
|
|
canvas.renderAll()
|
|
|
|
|
|
|
|
|
|
ridgeLines = ridgeLines.filter(
|
|
|
|
|
(ridge) =>
|
|
|
|
|
@ -1722,6 +1739,8 @@ const changeGableRoof = (currentRoof, canvas) => {
|
|
|
|
|
hipLines = hipLines.filter(
|
|
|
|
|
(hip) => (hip.x1 === currentRoof.x1 && hip.y1 === currentRoof.y1) || (hip.x1 === currentRoof.x2 && hip.y1 === currentRoof.y2),
|
|
|
|
|
)
|
|
|
|
|
console.log('ridgeLines : ', ridgeLines)
|
|
|
|
|
console.log('hipLines : ', hipLines)
|
|
|
|
|
|
|
|
|
|
if (hipLines === undefined || hipLines.length === 0) {
|
|
|
|
|
hipLines = innerLines.filter(
|
|
|
|
|
@ -1794,6 +1813,7 @@ const changeGableRoof = (currentRoof, canvas) => {
|
|
|
|
|
ridge.attributes.actualSize = Math.round(Math.sqrt(Math.pow(ridge.x1 - ridge.x2, 2) + Math.pow(ridge.y1 - ridge.y2, 2)) * 10)
|
|
|
|
|
|
|
|
|
|
let hip1 = new QLine([currentRoof.x1, currentRoof.y1, midX, midY], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
@ -1808,8 +1828,10 @@ const changeGableRoof = (currentRoof, canvas) => {
|
|
|
|
|
const hip1Height = Math.round(hip1Base / Math.tan(((90 - prevDegree) * Math.PI) / 180))
|
|
|
|
|
hip1.attributes.planeSize = Math.round(Math.sqrt(Math.pow(hip1.x1 - hip1.x2, 2) + Math.pow(hip1.y1 - hip1.y2, 2))) * 10
|
|
|
|
|
hip1.attributes.actualSize = Math.round(Math.sqrt(Math.pow(hip1.attributes.planeSize, 2) + Math.pow(hip1Height, 2)))
|
|
|
|
|
roof.innerLines.push(hip1)
|
|
|
|
|
|
|
|
|
|
let hip2 = new QLine([currentRoof.x2, currentRoof.y2, midX, midY], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
@ -1826,10 +1848,7 @@ const changeGableRoof = (currentRoof, canvas) => {
|
|
|
|
|
const hip2Height = Math.round(hip2Base / Math.tan(((90 - nextDegree) * Math.PI) / 180))
|
|
|
|
|
hip2.attributes.planeSize = Math.round(Math.sqrt(Math.pow(hip2.x1 - hip2.x2, 2) + Math.pow(hip2.y1 - hip2.y2, 2))) * 10
|
|
|
|
|
hip2.attributes.actualSize = Math.round(Math.sqrt(Math.pow(hip2.attributes.planeSize, 2) + Math.pow(hip2Height, 2)))
|
|
|
|
|
hip1.set({ visible: false })
|
|
|
|
|
hip1.setViewLengthText(false)
|
|
|
|
|
hip2.set({ visible: false })
|
|
|
|
|
hip2.setViewLengthText(false)
|
|
|
|
|
roof.innerLines.push(hip2)
|
|
|
|
|
canvas?.renderAll()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@ -1882,7 +1901,7 @@ const changeHipAndGableRoof = (currentRoof, canvas) => {
|
|
|
|
|
.filter(
|
|
|
|
|
(object) =>
|
|
|
|
|
object.attributes?.roofId === roofId &&
|
|
|
|
|
object.attributes?.currentRoof === currentRoof.id &&
|
|
|
|
|
object.attributes?.currentRoofId === currentRoof.id &&
|
|
|
|
|
object.x1 !== undefined &&
|
|
|
|
|
object.x2 !== undefined,
|
|
|
|
|
)
|
|
|
|
|
@ -1985,13 +2004,14 @@ const changeHipAndGableRoof = (currentRoof, canvas) => {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const hip1 = new QLine([currentRoof.x1, currentRoof.y1, midX + hipX2, midY + hipY2], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
name: LINE_TYPE.SUBLINE.HIP,
|
|
|
|
|
attributes: {
|
|
|
|
|
roofId: roof.id,
|
|
|
|
|
currentRoof: currentRoof.id,
|
|
|
|
|
currentRoofId: currentRoof.id,
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
const prevDegree = prevRoof.attributes.pitch > 0 ? getDegreeByChon(prevRoof.attributes.pitch) : prevRoof.attributes.degree
|
|
|
|
|
@ -2005,13 +2025,14 @@ const changeHipAndGableRoof = (currentRoof, canvas) => {
|
|
|
|
|
roof.innerLines.push(hip1)
|
|
|
|
|
|
|
|
|
|
const hip2 = new QLine([currentRoof.x2, currentRoof.y2, midX + hipX2, midY + hipY2], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
name: LINE_TYPE.SUBLINE.HIP,
|
|
|
|
|
attributes: {
|
|
|
|
|
roofId: roof.id,
|
|
|
|
|
currentRoof: currentRoof.id,
|
|
|
|
|
currentRoofId: currentRoof.id,
|
|
|
|
|
planeSize: currentRoof.length,
|
|
|
|
|
actualSize: currentRoof.length,
|
|
|
|
|
},
|
|
|
|
|
@ -2040,13 +2061,14 @@ const changeHipAndGableRoof = (currentRoof, canvas) => {
|
|
|
|
|
|
|
|
|
|
hipLines.forEach((hip, i) => {
|
|
|
|
|
const gableLine = new QLine([hip.x2, hip.y2, currentRoof.attributes.ridgeCoordinate.x1, currentRoof.attributes.ridgeCoordinate.y1], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
name: LINE_TYPE.SUBLINE.GABLE,
|
|
|
|
|
attributes: {
|
|
|
|
|
roofId: roof.id,
|
|
|
|
|
currentRoof: currentRoof.id,
|
|
|
|
|
currentRoofId: currentRoof.id,
|
|
|
|
|
actualSize: 0,
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
@ -2120,7 +2142,7 @@ const changeJerkInHeadRoof = (currentRoof, canvas) => {
|
|
|
|
|
(object) =>
|
|
|
|
|
object.attributes !== undefined &&
|
|
|
|
|
object.attributes.roofId === roofId &&
|
|
|
|
|
object.attributes.currentRoof === currentRoof.id &&
|
|
|
|
|
object.attributes.currentRoofId === currentRoof.id &&
|
|
|
|
|
object.x1 !== undefined &&
|
|
|
|
|
object.x2 !== undefined,
|
|
|
|
|
)
|
|
|
|
|
@ -2231,6 +2253,7 @@ const changeJerkInHeadRoof = (currentRoof, canvas) => {
|
|
|
|
|
let hipY1 = (Math.sign(currentRoof.y1 - midY) * currentRoof.attributes.width) / 2
|
|
|
|
|
|
|
|
|
|
const gable1 = new QLine([midX + hipX1, midY + hipY1, hipX2, hipY2], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
@ -2253,6 +2276,7 @@ const changeJerkInHeadRoof = (currentRoof, canvas) => {
|
|
|
|
|
hipY1 = (Math.sign(currentRoof.y2 - midY) * currentRoof.attributes.width) / 2
|
|
|
|
|
|
|
|
|
|
const gable2 = new QLine([midX + hipX1, midY + hipY1, hipX2, hipY2], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
@ -2271,6 +2295,7 @@ const changeJerkInHeadRoof = (currentRoof, canvas) => {
|
|
|
|
|
roof.innerLines.push(gable2)
|
|
|
|
|
|
|
|
|
|
const gable3 = new QLine([gable1.x1, gable1.y1, gable2.x1, gable2.y1], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
@ -2287,10 +2312,11 @@ const changeJerkInHeadRoof = (currentRoof, canvas) => {
|
|
|
|
|
// roof.innerLines.push(gable3)
|
|
|
|
|
|
|
|
|
|
const hip1 = new QLine([currentRoof.x1, currentRoof.y1, gable1.x1, gable1.y1], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
name: LINE_TYPE.SUBLINE.GABLE,
|
|
|
|
|
name: LINE_TYPE.SUBLINE.HIP,
|
|
|
|
|
attributes: {
|
|
|
|
|
roofId: roof.id,
|
|
|
|
|
currentRoofId: currentRoof.id,
|
|
|
|
|
@ -2305,6 +2331,7 @@ const changeJerkInHeadRoof = (currentRoof, canvas) => {
|
|
|
|
|
// roof.innerLines.push(hip1)
|
|
|
|
|
|
|
|
|
|
const hip2 = new QLine([currentRoof.x2, currentRoof.y2, gable2.x1, gable2.y1], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
@ -2321,6 +2348,8 @@ const changeJerkInHeadRoof = (currentRoof, canvas) => {
|
|
|
|
|
hip2.attributes.actualSize = Math.round(Math.sqrt(Math.pow(hip2.attributes.planeSize, 2) + Math.pow(hip2Height, 2)))
|
|
|
|
|
canvas?.add(hip2)
|
|
|
|
|
|
|
|
|
|
console.log('currentRoof.id : ', currentRoof.id)
|
|
|
|
|
|
|
|
|
|
hip1.set({ visible: false })
|
|
|
|
|
hip1.setViewLengthText(false)
|
|
|
|
|
gable3.set({ visible: false })
|
|
|
|
|
@ -2401,7 +2430,7 @@ const changeWallRoof = (currentRoof, canvas) => {
|
|
|
|
|
.filter(
|
|
|
|
|
(object) =>
|
|
|
|
|
object.attributes?.roofId === roofId &&
|
|
|
|
|
object.attributes?.currentRoof === currentRoof.id &&
|
|
|
|
|
object.attributes?.currentRoofId === currentRoof.id &&
|
|
|
|
|
object.x1 !== undefined &&
|
|
|
|
|
object.x2 !== undefined,
|
|
|
|
|
)
|
|
|
|
|
@ -2460,6 +2489,7 @@ const changeWallRoof = (currentRoof, canvas) => {
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const addPrevWallLine1 = new QLine([prevX2, prevY2, wallLine.x1 - prevWidthX, wallLine.y1 - prevWidthY], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
@ -2470,6 +2500,7 @@ const changeWallRoof = (currentRoof, canvas) => {
|
|
|
|
|
const addPrevWallLine2 = new QLine(
|
|
|
|
|
[addPrevWallLine1.x2, addPrevWallLine1.y2, addPrevWallLine1.x2 + prevWidthX, addPrevWallLine1.y2 + prevWidthY],
|
|
|
|
|
{
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
@ -2479,6 +2510,7 @@ const changeWallRoof = (currentRoof, canvas) => {
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
const addNextWallLine1 = new QLine([wallLine.x2, wallLine.y2, wallLine.x2 + nextWidthX, wallLine.y2 + nextWidthY], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
@ -2487,6 +2519,7 @@ const changeWallRoof = (currentRoof, canvas) => {
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const addNextWallLine2 = new QLine([addNextWallLine1.x2, addNextWallLine1.y2, nextX1, nextY1], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
@ -2532,6 +2565,7 @@ const changeWallRoof = (currentRoof, canvas) => {
|
|
|
|
|
ridge.attributes.actualSize = Math.round(Math.sqrt(Math.pow(ridge.x1 - ridge.x2, 2) + Math.pow(ridge.y1 - ridge.y2, 2)) * 10)
|
|
|
|
|
|
|
|
|
|
let hip1 = new QLine([currentRoof.x1, currentRoof.y1, wallMidX, wallMidY], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
@ -2548,6 +2582,7 @@ const changeWallRoof = (currentRoof, canvas) => {
|
|
|
|
|
hip1.attributes.actualSize = Math.round(Math.sqrt(Math.pow(hip1.attributes.planeSize, 2) + Math.pow(hip1Height, 2)))
|
|
|
|
|
|
|
|
|
|
let hip2 = new QLine([currentRoof.x2, currentRoof.y2, wallMidX, wallMidY], {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
fontSize: roof.fontSize,
|
|
|
|
|
stroke: '#1083E3',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
@ -2647,7 +2682,7 @@ export const changeCurrentRoof = (currentRoof, canvas) => {
|
|
|
|
|
|
|
|
|
|
wall.lines.forEach((line, index) => {
|
|
|
|
|
line.attributes.roofId = newRoof.id
|
|
|
|
|
line.attributes.currentRoof = newRoof.lines[index].id
|
|
|
|
|
line.attributes.currentRoofId = newRoof.lines[index].id
|
|
|
|
|
})
|
|
|
|
|
canvas?.add(newRoof)
|
|
|
|
|
canvas?.renderAll()
|
|
|
|
|
@ -2709,11 +2744,20 @@ const reDrawPolygon = (polygon, canvas) => {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const drawCenterLine = (roof, canvas) => {
|
|
|
|
|
//현재 지붕의 centerLine을 다 지운다.
|
|
|
|
|
canvas
|
|
|
|
|
.getObjects()
|
|
|
|
|
.filter((object) => object.attributes?.roofId === roof.id)
|
|
|
|
|
.filter((line) => line.attributes?.type === 'pitchSizeLine')
|
|
|
|
|
.forEach((line) => canvas.remove(line))
|
|
|
|
|
|
|
|
|
|
const roofLines = roof.lines
|
|
|
|
|
roofLines.forEach((currentRoof) => {
|
|
|
|
|
const hips = roof.innerLines.filter(
|
|
|
|
|
(line) => (currentRoof.x1 === line.x1 && currentRoof.y1 === line.y1) || (currentRoof.x2 === line.x1 && currentRoof.y2 === line.y1),
|
|
|
|
|
)
|
|
|
|
|
// console.log('hips : ', hips)
|
|
|
|
|
|
|
|
|
|
const ridge = roof.innerLines
|
|
|
|
|
.filter((line) => line.name === LINE_TYPE.SUBLINE.RIDGE)
|
|
|
|
|
.filter((line) => {
|
|
|
|
|
@ -2738,17 +2782,38 @@ const drawCenterLine = (roof, canvas) => {
|
|
|
|
|
}
|
|
|
|
|
return prevDistance < currentDistance ? prev : current
|
|
|
|
|
}, null)
|
|
|
|
|
/*console.log('currentRoof : ', currentRoof.attributes.planeSize, currentRoof)
|
|
|
|
|
console.log(
|
|
|
|
|
roof.innerLines
|
|
|
|
|
.filter((line) => line.name === LINE_TYPE.SUBLINE.RIDGE)
|
|
|
|
|
.filter((line) => {
|
|
|
|
|
if (currentRoof.x1 === currentRoof.x2) {
|
|
|
|
|
console.log('currentRoof.x1 === currentRoof.x2', line.x1 === line.x2, line)
|
|
|
|
|
if (line.x1 === line.x2) {
|
|
|
|
|
return line
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
console.log('currentRoof.x1 !== currentRoof.x2', line.y1 === line.y2, line)
|
|
|
|
|
if (line.y1 === line.y2) {
|
|
|
|
|
return line
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}),
|
|
|
|
|
)
|
|
|
|
|
console.log('currentRoof.x1 === currentRoof.x2 : ', currentRoof.x1 === currentRoof.x2)
|
|
|
|
|
console.log('ridge : ', ridge)
|
|
|
|
|
console.log('hips : ', hips)*/
|
|
|
|
|
let points = []
|
|
|
|
|
if (hips.length === 2 && Math.abs(hips[0].x2 - hips[1].x2) < 1 && Math.abs(hips[0].y2 - hips[1].y2) < 1) {
|
|
|
|
|
// console.log('삼각')
|
|
|
|
|
const x1 = (currentRoof.x1 + currentRoof.x2) / 2
|
|
|
|
|
const y1 = (currentRoof.y1 + currentRoof.y2) / 2
|
|
|
|
|
points.push(x1, y1, hips[0].x2, hips[0].y2)
|
|
|
|
|
} else {
|
|
|
|
|
} else if (hips.length > 1) {
|
|
|
|
|
// console.log('삼각 아님')
|
|
|
|
|
if (
|
|
|
|
|
((ridge.x1 === hips[0].x2 && ridge.y1 === hips[0].y2) || (ridge.x2 === hips[0].x2 && ridge.y2 === hips[0].y2)) &&
|
|
|
|
|
((ridge.x1 === hips[1].x2 && ridge.y1 === hips[1].y2) || (ridge.x2 === hips[1].x2 && ridge.y2 === hips[1].y2))
|
|
|
|
|
((ridge?.x1 === hips[0].x2 && ridge?.y1 === hips[0].y2) || (ridge?.x2 === hips[0].x2 && ridge?.y2 === hips[0].y2)) &&
|
|
|
|
|
((ridge?.x1 === hips[1].x2 && ridge?.y1 === hips[1].y2) || (ridge?.x2 === hips[1].x2 && ridge?.y2 === hips[1].y2))
|
|
|
|
|
) {
|
|
|
|
|
//사각이면 마루와 현재 라인 사이에 길이를 구한다
|
|
|
|
|
// console.log('사각')
|
|
|
|
|
@ -2776,7 +2841,7 @@ const drawCenterLine = (roof, canvas) => {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
//사각 아님
|
|
|
|
|
// console.log('사각 아님')
|
|
|
|
|
if (Math.sign(currentRoof.x1 - currentRoof.x2) === 0) {
|
|
|
|
|
let xPoints = []
|
|
|
|
|
xPoints.push(ridge?.x1, ridge?.x2)
|
|
|
|
|
@ -2843,8 +2908,8 @@ const drawCenterLine = (roof, canvas) => {
|
|
|
|
|
}
|
|
|
|
|
points.push(oppositeLine.x2, currentRoof.y1, oppositeLine.x2, oppositeLine.y2)
|
|
|
|
|
} else if (yPoints.length > 1) {
|
|
|
|
|
let boolY1 = yPoints.some((y) => y === ridge.y1)
|
|
|
|
|
let boolY2 = yPoints.some((y) => y === ridge.y2)
|
|
|
|
|
let boolY1 = yPoints.some((y) => y === ridge?.y1)
|
|
|
|
|
let boolY2 = yPoints.some((y) => y === ridge?.y2)
|
|
|
|
|
if (boolY1 && boolY2) {
|
|
|
|
|
oppositeLine = ridge
|
|
|
|
|
}
|
|
|
|
|
@ -2861,9 +2926,46 @@ const drawCenterLine = (roof, canvas) => {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// console.log('else : ')
|
|
|
|
|
if (currentRoof.attributes.type === LINE_TYPE.WALLLINE.JERKINHEAD) {
|
|
|
|
|
const gables = canvas
|
|
|
|
|
.getObjects()
|
|
|
|
|
.filter((object) => object.attributes?.currentRoofId === currentRoof.id && object.name === LINE_TYPE.SUBLINE.GABLE)
|
|
|
|
|
|
|
|
|
|
let x1, y1, x2, y2
|
|
|
|
|
x1 = (currentRoof.x1 + currentRoof.x2) / 2
|
|
|
|
|
y1 = (currentRoof.y1 + currentRoof.y2) / 2
|
|
|
|
|
|
|
|
|
|
if (currentRoof.x1 === currentRoof.x2) {
|
|
|
|
|
const xPoints = []
|
|
|
|
|
gables.forEach((gable) => {
|
|
|
|
|
if (gable.x1 !== x1) {
|
|
|
|
|
xPoints.push(gable.x1)
|
|
|
|
|
} else if (gable.x2 !== x1) {
|
|
|
|
|
xPoints.push(gable.x2)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
x2 = xPoints.reduce((sum, current) => sum + current, 0) / xPoints.length
|
|
|
|
|
y2 = y1
|
|
|
|
|
} else {
|
|
|
|
|
const yPoints = []
|
|
|
|
|
gables.forEach((gable) => {
|
|
|
|
|
if (gable.y1 !== y1) {
|
|
|
|
|
yPoints.push(gable.y1)
|
|
|
|
|
} else if (gable.y2 !== y1) {
|
|
|
|
|
yPoints.push(gable.y2)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
x2 = x1
|
|
|
|
|
y2 = yPoints.reduce((sum, current) => sum + current, 0) / yPoints.length
|
|
|
|
|
}
|
|
|
|
|
points.push(x1, y1, x2, y2)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (points !== null) {
|
|
|
|
|
const pitchSizeLine = new QLine(points, {
|
|
|
|
|
parentId: roof.id,
|
|
|
|
|
stroke: '#000000',
|
|
|
|
|
strokeWidth: 2,
|
|
|
|
|
strokeDashArray: [5, 5],
|
|
|
|
|
|