mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-25 09:52:19 +01:00
fix fillet info rendering
This commit is contained in:
parent
efb9c5755c
commit
45e0052538
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ export default {
|
|||
label: 'Fillet',
|
||||
icon: 'img/cad/intersection',
|
||||
info: 'creates a fillet on selected edges',
|
||||
paramsInfo: ({operands}) => operands.map(o => o.thikness).join(' ,'),
|
||||
paramsInfo: ({edges}) => edges.map(o => o.thikness).join(' ,'),
|
||||
previewGeomProvider: () => new THREE.Geometry(),
|
||||
run: (request) => console.dir(request),
|
||||
wizard: FilletWizard,
|
||||
|
|
|
|||
Loading…
Reference in a new issue