move out graph utility

This commit is contained in:
Val Erastov (xibyte) 2020-07-19 21:56:37 -07:00
parent e2aa04a365
commit eecb903a1c
3 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
import * as sm from './sketchModel'
import {Graph} from '../../math/graph'
import {Graph} from '../../utils/graph'
import {HashTable} from '../../utils/hashmap'
import Joints from '../../../../modules/gems/joints';
import sketchObjectGlobalId from './sketchObjectGlobalId';

View file

@ -1,5 +1,5 @@
import {Tool} from './tool'
import {Graph} from '../../math/graph'
import {Graph} from '../../utils/graph'
import {Styles} from '../styles'
import {DEFAULT_SEARCH_BUFFER} from "../viewer2d";

View file

@ -1,4 +1,4 @@
import {HashTable} from '../utils/hashmap'
import {HashTable} from './hashmap'
/** @constructor */
function Graph(data) {