index.js 338 B

1234567
  1. import { FunctionExt } from '@antv/x6-common';
  2. import { router } from './router';
  3. import { defaults } from './options';
  4. export const manhattan = function (vertices, options, edgeView) {
  5. return FunctionExt.call(router, this, vertices, Object.assign(Object.assign({}, defaults), options), edgeView);
  6. };
  7. //# sourceMappingURL=index.js.map