(modified)
| 373 | } |
| 374 | |
| 375 | updateShapeProperties(modified) { |
| 376 | if (!modified || modified.bezierOrder || modified.splineProperties) { |
| 377 | const shape = this.currentShape; |
| 378 | shape.bezierOrder(this.states.bezierOrder); |
| 379 | shape.splineProperty('ends', this.states.splineProperties.ends); |
| 380 | shape.splineProperty('tightness', this.states.splineProperties.tightness); |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | updateShapeVertexProperties(modified) { |
| 385 | const props = this.getCommonVertexProperties(); |
no test coverage detected