(factor)
| 859 | } |
| 860 | |
| 861 | setPointScaleFactor(factor) { |
| 862 | this.pointScaleFactor = Math.max(0, factor); |
| 863 | this.pointGroup.children.forEach((mesh) => { |
| 864 | const baseScale = mesh.userData?.baseScale ?? this.pointBaseScale; |
| 865 | mesh.scale.setScalar(baseScale * this.pointScaleFactor); |
| 866 | }); |
| 867 | } |
| 868 | |
| 869 | setLabelScaleFactor(factor) { |
| 870 | this.labelScaleFactor = Math.max(0, factor); |
no outgoing calls
no test coverage detected