Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Background:

I have a set of point which I run through a convex hull algorithm, these points returned are then drawn as a polygon on the screen.

Aim:

I want to "smooth" out the polygon into an ellipse/oval like shape.

Is there a simple way to do this or is there an algorithm for this?

Thanks in advance.

share|improve this question
Also, I can't seem to find any way of doing this. – Rhexis Jan 24 at 6:14
1  
Very primitive, but as long as the ellipse is oriented along the x- and y-axis, you may simply create it from the Bounds of the polyline geometry. – Clemens Jan 24 at 9:48
Yeah that's actually a good idea however, because I am drawing the polygon from a set of points the bounds of it are not set correctly, they are always 0,0. I think I have an idea though... thanks! – Rhexis Jan 25 at 3:47

1 Answer

up vote 0 down vote accepted

Got something that works...

Because I am drawing a polygon from a set of points, the width/height/bounds are not set correctly (always 0, not sure if its my fault or not?), however, I do have the points that make up the polygon.

What I decided to do was loop through the points getting the left most x, right most x, top most y and bottom most y. This then allows me to work out the width, height and position to draw the ellipse at.

The result is this: enter image description here

Thanks to Clemens for the help :)

If there is a better way of doing this please let me know.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.