--- title: Visual Feedback layout: ../../layouts/MainLayout.astro --- import { MiniRepl } from '../../docs/MiniRepl'; import { JsDoc } from '../../docs/JsDoc'; # Visual Feedback There are several function that add visual feedback to your patterns. ## Mini Notation Highlighting When you write mini notation with "double quotes" or \`backticks\`, the active parts of the mini notation will be highlighted: *8") .scale("/4:minor:pentatonic") .s("supersaw").lpf(300).lpenv("<4 3 2>\*4")`} /> You can change the color as well, even pattern it: *8") .scale("/4:minor:pentatonic") .s("supersaw").lpf(300).lpenv("<4 3 2>*4") .color("cyan magenta")`} /> ## Pianoroll and Punchcard *8") .scale("/4:minor:pentatonic") .s("supersaw").lpf(300).lpenv("<4 3 2>*4") ._punchcard() `} autodraw /> *8") .scale("/4:minor:pentatonic") .s("supersaw").lpf(300).lpenv("<4 3 2>\*4") .\_pianoroll() `} autodraw /> ## Spiral *8") .scale("/4:minor:pentatonic") .s("supersaw").lpf(300).lpenv("<4 3 2>*4") ._spiral() `} /> ## Scope *8") .scale("/4:minor:pentatonic") .s("supersaw").lpf(300).lpenv("<4 3 2>*4") ._scope() `} /> {/* */}