• Hey @ramzy23,

    Your code is slow because of overdraw. Overdraw means that you paint the same pixel over and over again, no matter if it has already been painted before. Since you step through your circle at 0.1 degree increments, it gets really expensive to draw your circle even in the emulator. The real hardware watch would take a lot longer still.

    I recommend looking at drawing algorithms using the implicit circle equation or the bresenham algorithm.

About

Avatar for devsnd @devsnd started