Skip to content

Commit

Permalink
chore: remove unwanted changes
Browse files Browse the repository at this point in the history
  • Loading branch information
haakonflatval-cognite committed Nov 28, 2024
1 parent dbbf553 commit 8cdc451
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ import { Changes } from '../domainObjectsHelpers/Changes';
import { type CogniteClient } from '@cognite/sdk';
import { type BaseTool } from '../commands/BaseTool';
import { ContextMenuController } from './ContextMenuController';
import { InstanceStylingController } from './InstanceStylingController';

const DIRECTIONAL_LIGHT_NAME = 'DirectionalLight';

Expand All @@ -51,8 +50,6 @@ export class RevealRenderTarget {
private readonly _commandsController: CommandsController;
private readonly _rootDomainObject: RootDomainObject;
private readonly _contextmenuController: ContextMenuController;
private readonly _instanceStylingController: InstanceStylingController;

private _ambientLight: AmbientLight | undefined;
private _directionalLight: DirectionalLight | undefined;
private _clippedBoundingBox: Box3 | undefined;
Expand All @@ -78,7 +75,6 @@ export class RevealRenderTarget {
this._commandsController = new CommandsController(this.domElement);
this._commandsController.addEventListeners();
this._contextmenuController = new ContextMenuController();
this._instanceStylingController = new InstanceStylingController();
this._rootDomainObject = new RootDomainObject(this, sdk);

this.initializeLights();
Expand Down Expand Up @@ -123,10 +119,6 @@ export class RevealRenderTarget {
return this._contextmenuController;
}

public get instanceStylingController(): InstanceStylingController {
return this._instanceStylingController;
}

public get cursor(): string {
return this.domElement.style.cursor;
}
Expand Down

0 comments on commit 8cdc451

Please sign in to comment.