123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import SGraphyItem from '../../node-templete/SGraphy/SGraphyItem'
- import SRect from '../../node-templete/SGraphy/types/SRect';
- export default class SGraphyLineItem extends SGraphyItem {
-
- constructor(startX, startY, endX, endY, color, width, isVirtual, canMove, parent = null) {
- super(parent)
- this.startX = startX
- this.startY = startY
- this.endX = endX
- this.endY = endY
- this.color = color
- this.width = width
- this.isVirtual = isVirtual
- this.minX = Math.min(this.startX, this.endX)
- this.minY = Math.min(this.startY, this.endY)
- this.maxX = Math.max(this.startX, this.endX)
- this.maxY = Math.max(this.startY, this.endY)
- this.type = 4
-
- }
-
- boundingRect() {
- return new SRect(this.minX, this.minY, (this.maxX - this.minX), (this.maxY - this.minY))
- }
-
- onDraw(canvas, rect) {
- if (this.isVirtual) {
- canvas.setLineDash([240, 240])
- }
- canvas.lineWidth = 240
- canvas.strokeStyle = this.color || '#000'
- canvas.beginPath();
- canvas.moveTo(this.startX, this.startY)
- canvas.lineTo(this.endX, this.endY)
- canvas.stroke()
- }
- }
|