export interface vtkAbstractPointLocator extends vtkObject { /** * Set the bounds of this object. * @param {Bounds} input */ setBounds(input: Bounds): void;
/** * Get the bounds of this object. * @returns {Bounds} */ getBounds(): Bounds; }
// ---------------------------------------------------------------------------- // Static API // ----------------------------------------------------------------------------
/** * Method use to decorate a given object (publicAPI+model) with vtkAbstractPointLocator characteristics. * * @param publicAPI object on which methods will be bounds (public) * @param model object on which data structure will be bounds (protected) * @param {IAbstractPointLocatorInitialValues} [initialValues] (default: {}) */ exportfunctionextend( publicAPI: object, model: object, initialValues?: IAbstractPointLocatorInitialValues ): void;