1 2 3 4 5 6 7 8 9 10 11 12 | 26× 26× 18× 8× | import { getOrientation } from 'diagram-js/lib/layout/LayoutUtil'; export function getBoundaryAttachment(position, targetBounds) { var orientation = getOrientation(position, targetBounds, -15); if (orientation !== 'intersect') { return orientation; } else { return null; } } |