(height: number)
| 40 | return anchors |
| 41 | } |
| 42 | setHeight(height: number) { |
| 43 | this.properties['height'] = height |
| 44 | this.outgoing.edges.forEach((edge: any) => { |
| 45 | // 调用自定义的更新方案 |
| 46 | edge.updatePathByAnchor() |
| 47 | }) |
| 48 | this.incoming.edges.forEach((edge: any) => { |
| 49 | // 调用自定义的更新方案 |
| 50 | edge.updatePathByAnchor() |
| 51 | }) |
| 52 | } |
| 53 | } |
| 54 | export default { |
| 55 | type: 'loop-body-node', |
nothing calls this directly
no test coverage detected