#include <math.h>
#include "svg.h"

int main(void) {
    double x0 = centerX(), y0 = centerY();
    double fontSize = 20;
    start();
    rulers();
    textFont("Arial", fontSize);             /* フォントとサイズ */

    pushMatrix();
    translate(x0, y0);
    rotate360(36);
    fill(0xff0000); 
    text("&#x1f353;", 0, 0);
    stroke(0x00ff00);
    strokeWeight(0.05);
    noFill();
    rect(0, -fontSize, fontSize, fontSize);
    popMatrix();
    finish();
    return 0;
}

