Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
start: (bound) => {
// Make a face with 30 radial points with slight randomness
let radius = space.size.minValue().value/3;
landmarks = Create.radialPts( space.center, radius, 30 );
landmarks.map( p => p.add( 50*(Math.random() - Math.random()) ) )
},