Skip to content

Instantly share code, notes, and snippets.

View LuisFros's full-sized avatar
🎯
Focusing

LuisFros LuisFros

🎯
Focusing
View GitHub Profile
@LuisFros
LuisFros / estados-cidades.json
Created November 12, 2020 19:49 — forked from letanure/estados-cidades.json
JSON estados cidades do brasil, dividido por estados. segunda lista atualizada em 2020, dados do IBGE
{
"estados": [
{
"sigla": "AC",
"nome": "Acre",
"cidades": [
"Acrelândia",
"Assis Brasil",
"Brasiléia",
"Bujari",
class LineChart {
// LineChart by https://kevinkub.de/
constructor(width, height, values) {
this.ctx = new DrawContext();
this.ctx.size = new Size(width, height);
this.values = values;
}
_calculatePath() {