StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/@interactjs/modifiers/index.js

18 lines
1.0 KiB

import aspectRatioModule from "./aspectRatio.js";
import { makeModifier } from "./base.js";
import restrictEdgesModule from "./restrict/edges.js";
import restrictModule from "./restrict/pointer.js";
import restrictRectModule from "./restrict/rect.js";
import restrictSizeModule from "./restrict/size.js";
import snapEdgesModule from "./snap/edges.js";
import snapModule from "./snap/pointer.js";
import snapSizeModule from "./snap/size.js";
export const snap = makeModifier(snapModule, 'snap');
export const snapSize = makeModifier(snapSizeModule, 'snapSize');
export const snapEdges = makeModifier(snapEdgesModule, 'snapEdges');
export const restrict = makeModifier(restrictModule, 'restrict');
export const restrictRect = makeModifier(restrictRectModule, 'restrictRect');
export const restrictEdges = makeModifier(restrictEdgesModule, 'restrictEdges');
export const restrictSize = makeModifier(restrictSizeModule, 'restrictSize');
export const aspectRatio = makeModifier(aspectRatioModule, 'aspectRatio');
//# sourceMappingURL=index.js.map