(view: View)
| 43 | }; |
| 44 | |
| 45 | export function createStage(view: View) { |
| 46 | const stage: Stage = { |
| 47 | view, |
| 48 | cubeData: [], |
| 49 | pathData: [], |
| 50 | polygonData: [], |
| 51 | axes: { |
| 52 | x: [], |
| 53 | y: [], |
| 54 | z: [], |
| 55 | }, |
| 56 | gridLines: [], |
| 57 | textData: [], |
| 58 | legend: { |
| 59 | rows: {}, |
| 60 | }, |
| 61 | facets: [], |
| 62 | }; |
| 63 | return stage; |
| 64 | } |
| 65 | |
| 66 | export const groupStrokeWidth = 1; |
| 67 |