Skip to content

Commit

Permalink
Add new component
Browse files Browse the repository at this point in the history
  • Loading branch information
nilscognite committed Aug 27, 2024
1 parent 758421a commit c695bdd
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,15 @@ import { KeyboardSpeedCommand } from '../../architecture/base/concreteCommands/K
import { ObservationsTool } from '../../architecture/concrete/observations/ObservationsTool';
import { createButtonFromCommandConstructor } from './CommandButtons';
import { SettingsCommand } from '../../architecture/base/concreteCommands/SettingsCommand';
import { PointCloudFilterCommand } from '../../architecture';

export class RevealButtons {
static Settings = (): ReactElement =>
createButtonFromCommandConstructor(() => new SettingsCommand());

static PointCloudFilter = (): ReactElement =>
createButtonFromCommandConstructor(() => new PointCloudFilterCommand());

static FitView = (): ReactElement =>
createButtonFromCommandConstructor(() => new FitViewCommand());

Expand Down

0 comments on commit c695bdd

Please sign in to comment.