(arr, axisName)
| 84 | var tubeOpts = {}; |
| 85 | |
| 86 | function toDataCoords(arr, axisName) { |
| 87 | var ax = sceneLayout[axisName]; |
| 88 | var scale = dataScale[axisName2scaleIndex[axisName]]; |
| 89 | return Lib.simpleMap(arr, function(v) { return ax.d2l(v) * scale; }); |
| 90 | } |
| 91 | |
| 92 | tubeOpts.vectors = zip3( |
| 93 | toDataCoords(trace._u, 'xaxis'), |
no outgoing calls
no test coverage detected
searching dependent graphs…