CIDARLAB / 3DuF

Found unused expressions JS-0093
Bug risk
Minor
6 occurrences in this check
Found unused expression
  61     * Default ViewManger Constructor
  62     */
  63    constructor() {
  64        this.threeD;  65        this.view = new PaperView("c", this);
  66
  67        this.__grid = new AdaptiveGrid(this);
 28export class ThreeDeviceRenderer {
 29    constructor(renderContainer) {
 30        this.container = renderContainer;
 31        this.camera; 32        this.controls;
 33        this.scene;
 34        this.renderer;
 29    constructor(renderContainer) {
 30        this.container = renderContainer;
 31        this.camera;
 32        this.controls; 33        this.scene;
 34        this.renderer;
 35        this.backgroundColor = Colors.BLUE_50;
 31        this.camera;
 32        this.controls;
 33        this.scene;
 34        this.renderer; 35        this.backgroundColor = Colors.BLUE_50;
 36        this.mockup = null;
 37        this.layers = null;
 30        this.container = renderContainer;
 31        this.camera;
 32        this.controls;
 33        this.scene; 34        this.renderer;
 35        this.backgroundColor = Colors.BLUE_50;
 36        this.mockup = null;
Found unused expression
 21     * Default Constructor for BareViewManager object
 22     */
 23    constructor() {
 24        this.threeD; 25        this.view = new PaperView("c", this);
 26
 27        this.__grid = new AdaptiveGrid(this);