-
-
Notifications
You must be signed in to change notification settings - Fork 376
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(3d interactions): update doc and TS definitions
- Loading branch information
Showing
7 changed files
with
83 additions
and
43 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
Sources/Interaction/Manipulators/3DControllerModelSelectorManipulator/index.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import vtkCompositeVRManipulator from '../CompositeVRManipulator'; | ||
|
||
export interface vtk3DControllerModelSelectorManipulator | ||
extends vtkCompositeVRManipulator {} | ||
|
||
export interface I3DControllerModelSelectorManipulatorInitialValues | ||
extends vtkCompositeVRManipulator {} | ||
|
||
export function extend( | ||
publicAPI: object, | ||
model: object, | ||
initialValues?: I3DControllerModelSelectorManipulatorInitialValues | ||
): void; | ||
|
||
export const vtk3DControllerModelSelectorManipulator: { | ||
extend: typeof extend; | ||
}; | ||
|
||
export default vtk3DControllerModelSelectorManipulator; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 9 additions & 9 deletions
18
Sources/Interaction/Manipulators/CompositeVRManipulator/index.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import vtkInteractorStyleManipulator, { IInteractorStyleManipulatorInitialValues } from '../../../Interaction/Style/InteractorStyleManipulator'; | ||
|
||
export interface vtkInteractorStyleHMDXR extends vtkInteractorStyleManipulator {} | ||
|
||
export interface IInteractorStyleHMDXRInitialValues extends IInteractorStyleManipulatorInitialValues {} | ||
|
||
export function newInstance( | ||
initialValues?: IInteractorStyleHMDXRInitialValues | ||
): vtkInteractorStyleHMDXR; | ||
|
||
export function extend( | ||
publicAPI: object, | ||
model: object, | ||
initialValues?: IInteractorStyleHMDXRInitialValues | ||
): void; | ||
|
||
export const vtkInteractorStyleHMDXR: { | ||
newInstance: typeof newInstance; | ||
extend: typeof extend; | ||
}; | ||
|
||
export default vtkInteractorStyleHMDXR; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters