This commit is contained in:
hyojun.choi 2024-07-11 12:04:41 +09:00
parent 1805383ce0
commit f5fc2d29bf

View File

@ -302,8 +302,10 @@ export default class QPolygon extends fabric.Group {
if (this.lines.length === 4) { if (this.lines.length === 4) {
this.#drawHelpLineInRect(chon) this.#drawHelpLineInRect(chon)
} else if (this.lines.length === 6) { } else if (this.lines.length === 6) {
// TODO : 6각형
this.#drawHelpLineInHexagon(chon) this.#drawHelpLineInHexagon(chon)
} else if (this.lines.length === 8) { } else if (this.lines.length === 8) {
// TODO : 8각형
this.#drawHelpLineInOctagon(chon) this.#drawHelpLineInOctagon(chon)
} }
} }