删除框选线色配置项

This commit is contained in:
walker 2023-09-01 16:28:54 +08:00
parent 4fb52cc103
commit c66f841526

View File

@ -20,10 +20,6 @@ export interface IMouseToolOptions {
* ,
*/
boxSelect?: boolean;
/**
* --
*/
boxSelectColor?: string;
/**
* (),
*/
@ -42,7 +38,6 @@ class CompleteMouseToolOptions implements IMouseToolOptions {
boxSelect: boolean;
viewportDrag: boolean;
wheelZoom: boolean;
boxSelectColor?: string;
selectFilter?: GraphicSelectFilter | undefined;
constructor() {
this.boxSelect = true;
@ -59,7 +54,6 @@ class CompleteMouseToolOptions implements IMouseToolOptions {
if (options.wheelZoom != undefined) {
this.wheelZoom = options.wheelZoom;
}
this.boxSelectColor = options.boxSelectColor;
this.selectFilter = options.selectFilter;
}
}