We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fedc39a commit d53c69bCopy full SHA for d53c69b
src/traces/pointcloud/convert.js
@@ -8,7 +8,7 @@
8
9
'use strict';
10
11
-var createpointcloud = require('gl-pointcloud2d');
+var createPointCloudRenderer = require('gl-pointcloud2d');
12
13
var str2RGBArray = require('../../lib/str2rgbarray');
14
var getTraceColor = require('../scatter/get_trace_color');
@@ -40,7 +40,7 @@ function Pointcloud(scene, uid) {
40
areaRatio: 1,
41
borderColor: [0, 0, 0, 1]
42
};
43
- this.pointcloud = createpointcloud(scene.glplot, this.pointcloudOptions);
+ this.pointcloud = createPointCloudRenderer(scene.glplot, this.pointcloudOptions);
44
this.pointcloud._trace = this; // scene2d requires this prop
45
}
46
0 commit comments