/** * Method used to decorate a given object (publicAPI+model) with vtkLineFilter characteristics. * * @param publicAPI object on which methods will be bounds (public) * @param model object on which data structure will be bounds (protected) * @param {ILineFilterInitialValues} [initialValues] (default: {}) */ exportfunctionextend( publicAPI: object, model: object, initialValues?: ILineFilterInitialValues ): void;
/** * Method used to create a new instance of vtkLineFilter * @param {ILineFilterInitialValues} [initialValues] for pre-setting some of its content */ exportfunctionnewInstance( initialValues?: ILineFilterInitialValues ): vtkLineFilter;
/** * vtkLineFilter - filters lines in polydata * * vtkLineFilter is a filter that only let's through lines of a vtkPolydata. */ export declare constvtkLineFilter: { newInstance: typeof newInstance; extend: typeof extend; }; exportdefault vtkLineFilter;