Most of this icons are free to use.
They tell us :
2D, 3D, game, games, online game, game development, game engine, programming, OpenGL, Open AI, math, graphics, design, graphic, graphics, game development, game engine, programming, web development, web art, web graphic, arts, tutorial, tutorials,
C:\Program Files\Blender Foundation\Blender\2.79\python\bin>python.exe get-pip.py
...
Successfully installed pip-10.0.1 setuptools-40.0.0 wheel-0.31.1
C:\Program Files\Blender Foundation\Blender\2.79\python\bin>cd ..
C:\Program Files\Blender Foundation\Blender\2.79\python>cd Scripts
C:\Program Files\Blender Foundation\Blender\2.79\python\Scripts>
pip3.exe install credentials
pip3.exe install azure-batch-apps
This will install the python modules for the Blender addon for Azure Microsoft.// example progressbar
// default variables for progressbar
// start the time for progressbar
var startTime;
// counter progressbar
var counter;
// maximum time progressbar
var maxTime;
// boolean for the end progressbar
var done;
// settings for this example
function setup() {
// set title of window
//frame.setTitle("Example progressbar | free-tutorials.org");
// window size and background color
// p5.js
createCanvas(640,130);
//size(640,130);
background(25);
// set variables of progressbar
counter = 0;
startTime= millis();
maxTime=int(random(1000,1976));
done=false;
//end settings
}
// draw all text and progressbar
function draw() {
// set same background color
background(255);
// check end of progressbar fill
if (counter-startTime < maxTime) {
counter=millis();
} else { done=true; }
// create the color for fill progressbar
fill(110,110,255);
// no stroke for draw
noStroke();
// show all text variables and progressbar
text("Progress bar blue - size 620", 230, 20);
rect(10,30,map(counter-startTime,0,maxTime,0,620), 30 );
text("counter- startTime "+int(counter- startTime)+" ",10,80);
text("maxTime "+ int(maxTime) + " ", 10,100);
text("map converted counter-startTime"+ int ( map(counter-startTime,0,maxTime,0,200)), 10,120);
noFill();
}
// reload the draw of progress bar
function mousePressed () {
if (done) { counter = 0; startTime= millis();
maxTime=int(random(1000,1976));
done=false;
}
}