Skip to content

Commit d53c69b

Browse files
committed
PR feedback - camelcasing
1 parent fedc39a commit d53c69b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/traces/pointcloud/convert.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
'use strict';
1010

11-
var createpointcloud = require('gl-pointcloud2d');
11+
var createPointCloudRenderer = require('gl-pointcloud2d');
1212

1313
var str2RGBArray = require('../../lib/str2rgbarray');
1414
var getTraceColor = require('../scatter/get_trace_color');
@@ -40,7 +40,7 @@ function Pointcloud(scene, uid) {
4040
areaRatio: 1,
4141
borderColor: [0, 0, 0, 1]
4242
};
43-
this.pointcloud = createpointcloud(scene.glplot, this.pointcloudOptions);
43+
this.pointcloud = createPointCloudRenderer(scene.glplot, this.pointcloudOptions);
4444
this.pointcloud._trace = this; // scene2d requires this prop
4545
}
4646

0 commit comments

Comments
 (0)