Skip to content

Commit

Permalink
add lib/cone.js + add cone to gl3d bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
etpinard committed May 16, 2018
1 parent 863b0da commit fa32a74
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
11 changes: 11 additions & 0 deletions lib/cone.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/**
* Copyright 2012-2018, Plotly, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

'use strict';

module.exports = require('../src/traces/cone');
3 changes: 2 additions & 1 deletion lib/index-gl3d.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ var Plotly = require('./core');
Plotly.register([
require('./scatter3d'),
require('./surface'),
require('./mesh3d')
require('./mesh3d'),
require('./cone')
]);

module.exports = Plotly;
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Plotly.register([
require('./scatter3d'),
require('./surface'),
require('./mesh3d'),
require('../src/traces/cone'),
require('./cone'),

require('./scattergeo'),
require('./choropleth'),
Expand Down

0 comments on commit fa32a74

Please sign in to comment.