Skip to content

Commit ad9ee35

Browse files
author
aardgoose
committed
lint fixes
1 parent 1575a09 commit ad9ee35

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

src/renderers/common/ClippingContext.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ class ClippingContext {
4444
v.y = - normal.y;
4545
v.z = - normal.z;
4646
v.w = _plane.constant;
47+
4748
}
4849

4950
}
@@ -142,7 +143,7 @@ class ClippingContext {
142143

143144
if ( context === undefined ) {
144145

145-
context = new ClippingContext()
146+
context = new ClippingContext();
146147
_clippingGroupContexts.set( clippingGroup, context );
147148

148149
}

src/renderers/common/ClippingGroup.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ import { Group } from '../../objects/Group.js';
22

33
class ClippingGroup extends Group {
44

5-
constructor() {
5+
constructor() {
66

7-
super();
7+
super();
88

9-
this.isClippingGroup = true;
10-
this.clippingPlanes = [];
9+
this.isClippingGroup = true;
10+
this.clippingPlanes = [];
1111

12-
}
12+
}
1313

1414
}
1515

src/renderers/common/RenderList.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ class RenderList {
122122

123123
}
124124

125-
push( object, geometry, material, groupOrder, z, group, clippingContext) {
125+
push( object, geometry, material, groupOrder, z, group, clippingContext ) {
126126

127127
const renderItem = this.getNextRenderItem( object, geometry, material, groupOrder, z, group, clippingContext );
128128

0 commit comments

Comments
 (0)