You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • P. S. A tip would be appreciated on how to rotate a numeral and place it elsewhere.

    I'm not sure I understand? This code does what you see in the attached.

    g.clear(1);
    // set the font you want
    g.setFont("Vector", 30);
    // Rotate it 180 degrees, center it
    g.setFontAlign(0,0,2);
    // draw, middle of screen
    g.drawString("123", 120,120);
    // and return to right way up
    g.setFontAlign(0,0,0);
    g.drawString("123", 120,100);
    

    1 Attachment

    • screenshot (2).png
About

Avatar for Gordon @Gordon started