import Bilza, {Ui,hsl} from "../../src/bilza.js";

let bil = new Bilza("bilza",70);
bil.background.color.set("#000000");
//-----------------------------------------
const g = bil.alwaysOn().grid(10,10,"grey");

const counter = bil.alwaysOn().frameCounter("#ff0000");

const circle = bil.add(0,15).circle(15,"red");
circle.align(1,1);
circle.goto(0,50,50);

//--This will just draw the boundry
circle.filled.set(false);

//--LineWidth is for circle boundry
circle.lineWidth.set(5);

circle.lineWidth.animate(0,10,5,150);

//----------------------------------------
const ui = new Ui(bil);
bil.draw();