fix fillet info rendering

This commit is contained in:
Val Erastov 2018-06-17 23:57:47 -07:00
parent efb9c5755c
commit 45e0052538

View file

@ -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,