Changes between Version 5 and Version 6 of docs_plot3d
- Timestamp:
- Feb 10, 2018, 6:21:01 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
docs_plot3d
v5 v6 13 13 * the 3d plot is currently utilizing the javascript Plotly package https://plot.ly/javascript/ 14 14 15 * example of .json output for plotting multiple surfaces/points on a single graph:15 * example of .json output for plotting multiple (5) surfaces and (5 sets of) points on a single graph: 16 16 {{{ 17 17 { … … 49 49 "data" : 50 50 [ 51 # surface plot 51 # surface plot 1: 52 52 { 53 53 "type" : "mesh3d", # type can be: "mesh3d", "surface" etc... … … 58 58 "color" : surface_color 59 59 }, 60 # scatter plot 60 # surface plot 2: 61 { 62 ..... 63 }, 64 # surface plot 3: 65 { 66 ..... 67 }, 68 # surface plot 4: 69 { 70 ..... 71 }, 72 # surface plot 5: 73 { 74 ..... 75 }, 76 # set of scatter3d points 1 61 77 { 62 78 "type" : "scatter3d", … … 77 93 "z" : vector_of_z, 78 94 "color" : scatter_color 95 }, 96 # set of scatter3d points 2 97 { 98 .... 99 }, 100 # set of scatter3d points 3 101 { 102 .... 103 }, 104 # set of scatter3d points 4 105 { 106 .... 107 }, 108 # set of scatter3d points 5 109 { 110 .... 79 111 } 80 112 ] 81 113 } 82 }}} 114 }}} 115 116 83 117 84 118 * for full documentation and more examples see https://plot.ly/javascript/ (search for 3D plots):