Skip to content

Commit 98fc0cd

Browse files
committed
Minor refactoring
ESDoc doesn't like new ES features
1 parent 06905f8 commit 98fc0cd

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

src/core/Selection.js

+5-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import { IdManager } from "../utils/IdManager.js";
22

3+
const idManager = /* @__PURE__ */ new IdManager(2);
4+
35
/**
46
* An object selection.
57
*
@@ -8,22 +10,14 @@ import { IdManager } from "../utils/IdManager.js";
810

911
export class Selection extends Set {
1012

11-
/**
12-
* An ID manager.
13-
*
14-
* @private
15-
*/
16-
17-
static idManager = /* @__PURE__ */ new IdManager(2);
18-
1913
/**
2014
* Constructs a new selection.
2115
*
2216
* @param {Iterable<Object3D>} [iterable] - A collection of objects that should be added to this selection.
2317
* @param {Number} [layer] - A dedicated render layer for selected objects. Range is `[2, 31]`. Starts at 2 if omitted.
2418
*/
2519

26-
constructor(iterable, layer = Selection.idManager.getNextId()) {
20+
constructor(iterable, layer = idManager.getNextId()) {
2721

2822
super();
2923

@@ -45,8 +39,8 @@ export class Selection extends Set {
4539
if(this._layer < 1 || this._layer > 31) {
4640

4741
console.warn("Layer out of range, resetting to 2");
48-
Selection.idManager.reset(2);
49-
this._layer = Selection.idManager.getNextId();
42+
idManager.reset(2);
43+
this._layer = idManager.getNextId();
5044

5145
}
5246

src/passes/Pass.js

+14-8
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,17 @@ import {
1010
WebGLRenderTarget
1111
} from "three";
1212

13+
const fullscreenGeometry = /* @__PURE__ */ (() => {
14+
15+
const vertices = new Float32Array([-1, -1, 0, 3, -1, 0, -1, 3, 0]);
16+
const uvs = new Float32Array([0, 0, 2, 0, 0, 2]);
17+
const geometry = new BufferGeometry();
18+
geometry.setAttribute("position", new BufferAttribute(vertices, 3));
19+
geometry.setAttribute("uv", new BufferAttribute(uvs, 2));
20+
return geometry;
21+
22+
})();
23+
1324
/**
1425
* An abstract pass.
1526
*
@@ -32,16 +43,11 @@ export class Pass {
3243
* @internal
3344
*/
3445

35-
static fullscreenGeometry = /* @__PURE__ */ (() => {
46+
static get fullscreenGeometry() {
3647

37-
const vertices = new Float32Array([-1, -1, 0, 3, -1, 0, -1, 3, 0]);
38-
const uvs = new Float32Array([0, 0, 2, 0, 0, 2]);
39-
const geometry = new BufferGeometry();
40-
geometry.setAttribute("position", new BufferAttribute(vertices, 3));
41-
geometry.setAttribute("uv", new BufferAttribute(uvs, 2));
42-
return geometry;
48+
return fullscreenGeometry;
4349

44-
})();
50+
}
4551

4652
/**
4753
* Constructs a new pass.

0 commit comments

Comments
 (0)