File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Sources/Common/Core/ScalarsToColors Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -105,10 +105,8 @@ export interface vtkScalarsToColors extends vtkObject {
105
105
106
106
/**
107
107
*
108
- * @param {Number } min
109
- * @param {Number } max
110
108
*/
111
- getRange ( min : number , max : number ) : Range ;
109
+ getRange ( ) : Range ;
112
110
113
111
/**
114
112
* Get which component of a vector to map to colors.
Original file line number Diff line number Diff line change @@ -510,7 +510,7 @@ function vtkScalarsToColors(publicAPI, model) {
510
510
publicAPI . getNumberOfAvailableColors = ( ) => 256 * 256 * 256 ;
511
511
512
512
publicAPI . setRange = ( min , max ) => publicAPI . setMappingRange ( min , max ) ;
513
- publicAPI . getRange = ( min , max ) => publicAPI . getMappingRange ( ) ;
513
+ publicAPI . getRange = ( ) => publicAPI . getMappingRange ( ) ;
514
514
}
515
515
516
516
// ----------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments