mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-14 20:33:30 +01:00
move out graph utility
This commit is contained in:
parent
e2aa04a365
commit
eecb903a1c
3 changed files with 3 additions and 3 deletions
|
|
@ -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';
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import {HashTable} from '../utils/hashmap'
|
||||
import {HashTable} from './hashmap'
|
||||
|
||||
/** @constructor */
|
||||
function Graph(data) {
|
||||
Loading…
Reference in a new issue