Skip to content

Commit

Permalink
refactor(controls): Rename controls model3d -> box3d (#1389)
Browse files Browse the repository at this point in the history
  • Loading branch information
Conrad Chan authored May 24, 2021
1 parent 9d76b1e commit 9604879
Show file tree
Hide file tree
Showing 24 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/lib/viewers/box3d/model3d/Model3DControlsNew.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from 'react';
import AnimationControls, { Props as AnimationControlsProps } from '../../controls/model3d/AnimationControls';
import AnimationControls, { Props as AnimationControlsProps } from '../../controls/box3d/AnimationControls';
import ControlsBar from '../../controls/controls-bar';
import FullscreenToggle, { Props as FullscreenToggleProps } from '../../controls/fullscreen';
import Model3DSettings, { Props as Model3DSettingsProps } from '../../controls/model3d/Model3DSettings';
import ResetControl, { Props as ResetControlProps } from '../../controls/model3d/ResetControl';
import VrToggleControl, { Props as VrToggleControlProps } from '../../controls/model3d/VrToggleControl';
import Model3DSettings, { Props as Model3DSettingsProps } from '../../controls/box3d/Model3DSettings';
import ResetControl, { Props as ResetControlProps } from '../../controls/box3d/ResetControl';
import VrToggleControl, { Props as VrToggleControlProps } from '../../controls/box3d/VrToggleControl';

export type Props = AnimationControlsProps &
FullscreenToggleProps &
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from 'react';
import { shallow, ShallowWrapper } from 'enzyme';
import AnimationControls from '../../../controls/model3d/AnimationControls';
import AnimationControls from '../../../controls/box3d/AnimationControls';
import FullscreenToggle from '../../../controls/fullscreen';
import Model3DControls, { Props } from '../Model3DControlsNew';
import Model3DSettings, { CameraProjection, RenderMode } from '../../../controls/model3d/Model3DSettings';
import ResetControl from '../../../controls/model3d/ResetControl';
import VrToggleControl from '../../../controls/model3d/VrToggleControl';
import Model3DSettings, { CameraProjection, RenderMode } from '../../../controls/box3d/Model3DSettings';
import ResetControl from '../../../controls/box3d/ResetControl';
import VrToggleControl from '../../../controls/box3d/VrToggleControl';

describe('lib/viewers/box3d/model3d/Model3DControlsNew', () => {
const getDefaults = (): Props => ({
Expand Down

0 comments on commit 9604879

Please sign in to comment.