transform

download sketch from console

(for example when due to an error the interface is gone)

actions.files.downloadSketch()

see all actions

type this in the console:

actions

actions and keyboard shortcuts

actions.duplicateSelection()

actions.align(horizontal, vertical);
horizontal = vertical = -1 || 0 || 1 || false;

in hotkeys.js

case 'd':
  if (commandKey) {
    dispatch(actions.duplicateSelection());
  }
  break;

testje:

radi=[2.6,4,5,6.5,8]; for (var i in radi) actions.addObject({ type: 'CIRCLE', transform: new CAL.Matrix({x:i*10}), circle: { radius:radi[i]/2*10, segment: Math.PI * 2 } });

4 cirkels:

radi=[2.6,4,5,6.5,8]; for (var i in radi) actions.addObject({ type: 'CIRCLE', transform: new CAL.Matrix({x:i*10}), circle: { radius:radi[i]/2*10, segment: Math.PI * 2 } }); 

gelijkzijdige driehoek

actions.addObject({ type: 'POLY_POINTS', polyPoints: { radius:6.5/2*10, numPoints:3 } });

combi:

radi=[2.6,4,5,6.5,8]; for (var i in radi) actions.addObject({ type: 'CIRCLE', circle: { radius:radi[i]/2*10, segment: Math.PI * 2 } }); actions.addObject({ type: 'POLY_POINTS', polyPoints: { radius:6.5/2*10, numPoints:3 } });