Tagged Questions

0
votes
2answers
59 views

Ellipse geometry bound points

Hi Is there a automatic way to get all the points of an ellipse stroke, without the filling points. Thanks in advanced
5
votes
4answers
3k views

How to calculate center of an ellipse by two points and radius sizes

While working on SVG implementation for Internet Explorer to be based on its own VML format I came to a problem of translation of an SVG elliptical arc to an VML elliptical arc. I …
1
vote
2answers
188 views

In XAML, how can I keep an ellipse being a circle?

I'm getting XAML-blind I'm afraid. I'm developing a MS Surface application and I have an ellipse inside a ScatterViewItem (a container an end user can resize). I would like to keep …
1
vote
2answers
927 views

WPF: Create half elliptical button

I dont think this is quite possible, but its worth a shot to see what you guys say. I am trying to create a half-elliptical button in C# (not XAML, that might through another curve …
1
vote
2answers
157 views

When creating a correlational ellipse, is it possible to identify the cases that fall in or out of the ellipse?

Support.sas.com provides this syntax for creating a prediction ellipse. The output dataset includes only the correlation results for the dataset. Is there any way to get informat …
2
votes
3answers
188 views

Given a set of points, how do I approximate the major axis of its shape?

Given a "shape" drawn by the user, I would like to "normalize" it so they all have similar size and orientation. What we have is a set of points. I can approximate the size using b …
3
votes
3answers
2k views

how do I find the angle of rotation of the major axis of an ellipse given its bounding rectangle?

I have an ellipse centered at (0,0) and the bounding rectangle is x = [-5,5], y = [-6,6]. The ellipse intersects the rectangle at (-5,3),(-2.5,6),(2.5,-6),and (5,-3) I know nothin …