(elBBox)
| 14 | } |
| 15 | |
| 16 | function getBBoxAngles(elBBox) { |
| 17 | |
| 18 | var center = elBBox.center(); |
| 19 | |
| 20 | var tl = center.theta(elBBox.origin()); |
| 21 | var bl = center.theta(elBBox.bottomLeft()); |
| 22 | var br = center.theta(elBBox.corner()); |
| 23 | var tr = center.theta(elBBox.topRight()); |
| 24 | |
| 25 | return [tl, tr, br, bl]; |
| 26 | } |
| 27 | |
| 28 | function outsideLayout(portPosition, elBBox, autoOrient, opt) { |
| 29 |
no outgoing calls
no test coverage detected