(selection, searchInfo)
| 1039 | } |
| 1040 | |
| 1041 | function fillSelectionItem(selection, searchInfo) { |
| 1042 | if(Array.isArray(selection)) { |
| 1043 | var cd = searchInfo.cd; |
| 1044 | var trace = searchInfo.cd[0].trace; |
| 1045 | |
| 1046 | for(var i = 0; i < selection.length; i++) { |
| 1047 | selection[i] = makeEventData(selection[i], trace, cd); |
| 1048 | } |
| 1049 | } |
| 1050 | |
| 1051 | return selection; |
| 1052 | } |
| 1053 | |
| 1054 | function convertPoly(polygonsIn, isOpenMode) { // add M and L command to draft positions |
| 1055 | var polygonsOut = []; |
no test coverage detected
searching dependent graphs…