You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See this video at 1:35 for an explanation of the builder pattern. Essentially, it may simplify the way that the library is called for configuring a drawing. For example, this:
letgdj2=newGuitarDiagramsJS();gdj2.config.canvasID='diagram-2-canvas';gdj2.config.stringNamesEnabled=true;gdj2.addCanvas('diagram-2');gdj2.drawNeck();gdj2.addMarker(1,1,'1',GuitarDiagramsJS.Shape.Square);// add a square marker on string 1, fret 1, text '1'gdj2.addMarker(2,2,'2',GuitarDiagramsJS.Shape.Triangle);// add a triangle marker on string 2, fret 2, text '2'gdj2.addMarker(3,3,'3',GuitarDiagramsJS.Shape.Diamond);// add a diamond marker on string 3, fret 3, text '3'gdj2.addMarker(4,4,'4');// add a default (circle) marker on string 4, fret 4, text '4'gdj2.addMarker(5,0,'0');// add a default (circle) marker on string 5, fret 0, text '0'gdj2.addMarker(6,0,'X');// add a default (circle) marker on string 6, fret 0, text 'X'gdj2.addMarker(3,1);// add a default (circle) marker on string 3, fret 1, text empty
Background
See this video at 1:35 for an explanation of the builder pattern. Essentially, it may simplify the way that the library is called for configuring a drawing. For example, this:
...might become simpler like this:
Acceptance Criteria
Approach
Notes
TBD
The text was updated successfully, but these errors were encountered: