plotly.js
Version:
The open source javascript graphing library that powers plotly
28 lines (25 loc) • 758 B
JavaScript
module.exports = {
attributes: require('./attributes'),
supplyDefaults: require('./defaults'),
calc: require('./calc'),
colorbar: {
min: 'cmin',
max: 'cmax'
},
plot: require('./convert'),
moduleType: 'trace',
name: 'mesh3d',
basePlotModule: require('../../plots/gl3d'),
categories: ['gl3d', 'showLegend'],
meta: {
description: [
'Draws sets of triangles with coordinates given by',
'three 1-dimensional arrays in `x`, `y`, `z` and',
'(1) a sets of `i`, `j`, `k` indices',
'(2) Delaunay triangulation or',
'(3) the Alpha-shape algorithm or',
'(4) the Convex-hull algorithm'
].join(' ')
}
};
;