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
var initialData = { | |
size: 100.0, | |
padding: 20.0 | |
} | |
function render(data, ctx) { | |
for(var i=0; i<30; i++) { | |
var padding = data.padding; | |
var rowItems = Math.floor(ctx.width/(data.size+padding)); | |
var step = data.size+padding; |
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
Basic obot program: | |
1. Create a file example : test.robot | |
2. Add the bare minimum code: | |
#--START-- | |
*** Settings *** |
OlderNewer