@thewtex/vtk.js-esm
Version:
Visualization Toolkit for the Web
113 lines (96 loc) • 2.33 kB
TypeScript
import { vtkObject } from '@kitware/vtk.js/interfaces' ;
import vtkActor from '@kitware/vtk.js/Rendering/Core/Actor';
import vtkRenderer from '@kitware/vtk.js/Rendering/Core/Renderer'
/**
*
*/
export interface vtkAbstractPicker extends vtkObject {
/**
*
* @param actor
*/
addPickList(actor : vtkActor): void;
/**
*
* @param actor
*/
deletePickList(actor : vtkActor): void;
/**
*
*
*/
getPickFromList(): boolean;
/**
*
*/
getPickList(): boolean;
/**
* Get the picked position
* @return
* @default [0.0, 0.0, 0.0]
*/
getPickPosition(): number[];
/**
*
* Get the picked position
* @return
* @default [0.0, 0.0, 0.0]
*/
getPickPositionByReference(): number[];
/**
*
*/
getRenderer(): vtkRenderer;
/**
*
* @return
* @default [0.0, 0.0, 0.0]
*/
getSelectionPoint(): number[];
/**
*
* @return
* @default [0.0, 0.0, 0.0]
*/
getSelectionPointByReference(): number[];
/**
*
*/
initialize(): void;
/**
* Set pickList to empty array.
*/
initializePickList(): void;
/**
*
* @param pickFromList
* @default 0
*/
setPickFromList(pickFromList: number): boolean;
/**
*
* @param pickList
* @default []
*/
setPickList(pickList: vtkActor[]): boolean;
}
/**
* Method used to decorate a given object (publicAPI+model) with vtkAbstractPicker characteristics.
*
* @param publicAPI object on which methods will be bounds (public)
* @param model object on which data structure will be bounds (protected)
* @param {object} [initialValues] (default: {})
*/
export function extend(publicAPI: object, model: object, initialValues?: object): void;
/**
* vtkAbstractPicker is an abstract superclass that defines a minimal API for its concrete subclasses.
* The minimum functionality of a picker is to return the x-y-z global coordinate position of a pick (the pick itself is defined in display coordinates).
*
* The API to this class is to invoke the Pick() method with a selection point (in display coordinates - pixels)
* and a renderer. Then get the resulting pick position in global coordinates with the GetPickPosition() method.
* @see [vtkPointPicker](./Rendering_Core_PointPicker.html)
*/
export declare const vtkAbstractPicker: {
extend: typeof extend,
};
export default vtkAbstractPicker;