Add 'remove constraining values' UI (#80)

This commit is contained in:
Kurt Hutten
2023-03-22 03:02:37 +11:00
committed by GitHub
parent 45091d3c4f
commit ab1639b8b4
4 changed files with 198 additions and 3 deletions

View File

@ -2,6 +2,7 @@ import { useStore, toolTips } from './useStore'
import { extrudeSketch, sketchOnExtrudedFace } from './lang/modifyAst'
import { getNodePathFromSourceRange } from './lang/queryAst'
import { HorzVert } from './components/Toolbar/HorzVert'
import { RemoveConstrainingValues } from './components/Toolbar/RemoveConstrainingValues'
import { EqualLength } from './components/Toolbar/EqualLength'
import { EqualAngle } from './components/Toolbar/EqualAngle'
import { Intersect } from './components/Toolbar/Intersect'
@ -170,6 +171,7 @@ export const Toolbar = () => {
<SetAngleLength angleOrLength="setAngle" />
<SetAngleLength angleOrLength="setLength" />
<Intersect />
<RemoveConstrainingValues />
</div>
)
}