(arr, axisName)
| 55 | var coneOpts = {}; |
| 56 | |
| 57 | function toDataCoords(arr, axisName) { |
| 58 | var ax = sceneLayout[axisName]; |
| 59 | var scale = dataScale[axisName2scaleIndex[axisName]]; |
| 60 | return simpleMap(arr, function(v) { return ax.d2l(v) * scale; }); |
| 61 | } |
| 62 | |
| 63 | coneOpts.vectors = zip3( |
| 64 | toDataCoords(trace.u, 'xaxis'), |
no outgoing calls
no test coverage detected
searching dependent graphs…