Skip to content

Commit a563bda

Browse files
codestyle fixes
1 parent fe666ce commit a563bda

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Source/Scene/PointCloud.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,6 @@ define([
116116
Check.typeOf.object('options.arrayBuffer', options.arrayBuffer);
117117
//>>includeEnd('debug');
118118

119-
var that = this;
120-
121119
// Hold onto the payload until the render resources are created
122120
this._parsedContent = undefined;
123121

@@ -151,12 +149,12 @@ define([
151149

152150
// Use per-point normals to hide back-facing points.
153151
this.backFaceCulling = false;
154-
bindProperty(this, "backFaceCulling", options.backFaceCulling);
152+
bindProperty(this, 'backFaceCulling', options.backFaceCulling);
155153
this._backFaceCulling = this.backFaceCulling;
156154

157155
// Whether to enable normal shading
158156
this.normalShading = true;
159-
bindProperty(this, "normalShading", options.normalShading);
157+
bindProperty(this, 'normalShading', options.normalShading);
160158
this._normalShading = this.normalShading;
161159

162160
this._opaqueRenderState = undefined;

0 commit comments

Comments
 (0)