How to draw circle using TfrxShapeView
                    I try to draw a perfect circle with TfrxShapeView:
The circle isn't perfect if I adjust the width and height of TfrxShapeView. How to adjust curve value in order to draw a perfect circle?
                            var o: TfrxShapeView;
begin
  ...
  o.Width := 5;
  o.Height := 5;
  o.Curve := 3;
  ...
end;
The circle isn't perfect if I adjust the width and height of TfrxShapeView. How to adjust curve value in order to draw a perfect circle?
Comments
begin
...
o.Width := 5;
o.Height := 5;
o.Curve := 0;
...
end;