From c695bdddf2dfa26d7a67b92d8fbc9fb437b1ac2c Mon Sep 17 00:00:00 2001 From: Nils Petter Fremming Date: Tue, 27 Aug 2024 09:27:24 +0200 Subject: [PATCH] Add new component --- .../src/components/Architecture/RevealButtons.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/react-components/src/components/Architecture/RevealButtons.tsx b/react-components/src/components/Architecture/RevealButtons.tsx index 8355b47be2a..ae30c699054 100644 --- a/react-components/src/components/Architecture/RevealButtons.tsx +++ b/react-components/src/components/Architecture/RevealButtons.tsx @@ -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());