This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | const canvasSketch = require('canvas-sketch'); | |
| const { lerp } = require('./util/math'); | |
| const settings = { | |
| animate: true, | |
| duration: 3, | |
| dimensions: [ 640, 640 ], | |
| scaleToView: true, | |
| playbackRate: 'throttle', | |
| fps: 24 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | const canvasSketch = require('canvas-sketch'); // not yet released tool | |
| const Random = require('./util/random'); | |
| const { lerp } = require('./util/math'); | |
| // We can force a random seed or a specific string/number | |
| Random.setSeed(Random.getRandomSeed()); | |
| const settings = { | |
| pixelsPerInch: 300, | |
| // When exporting, use the seed as the suffix |