display.newCircle shape is not round but octogonal

I have not used circles much lately, but I just need to add one and the shape is not shown rounded neither on the simulator nor the device (ios or android). 

Am I missing something?

volumeHandle = display.newCircle( videogroup, positionVolumeMin, 17, 6 )

Hi @guriek,

If you test a couple very basic circles, as follows, does it do the same?

[lua]

display.newCircle( 100, 100, 6 )

display.newCircle( 200, 200, 20 )

[/lua]

I’ve never seen a circle appear as an octagon. Which build # of Corona are you using?

Thanks,

Brent

Yeah it looks octogonal, at least the smaller ones, image attached. Use a clean main.lua file with latest release 1235

See capture here:

http://tinypic.com/r/4q1sec/5

I workarounded it by using images, but just curious.

Hi @guriek,

If you test a couple very basic circles, as follows, does it do the same?

[lua]

display.newCircle( 100, 100, 6 )

display.newCircle( 200, 200, 20 )

[/lua]

I’ve never seen a circle appear as an octagon. Which build # of Corona are you using?

Thanks,

Brent

Yeah it looks octogonal, at least the smaller ones, image attached. Use a clean main.lua file with latest release 1235

See capture here:

http://tinypic.com/r/4q1sec/5

I workarounded it by using images, but just curious.