Tagged Questions
10
votes
4answers
9k 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.
In VML an arc is ...
7
votes
1answer
328 views
Scaling of covariance matrices
For the question "Ellipse around the data in MATLAB", in the answer given by Amro, he says the following:
"If you want the ellipse to represent
a specific level of standard
deviation, the ...
5
votes
4answers
292 views
Matlab: Algorithm for voronoi diagram of ellipses
Are there any algorithms to implement Voronoi diagram that bounds the ellipses? The diagram would look like the pictures here voronoi diagram of ellipses
Can anyone share some ...
4
votes
3answers
627 views
3d imaging: defining an ellipsoid based on 3 given ellipses which are parallel to the Cartesian planes
for a 3d imaging software i am coding:
I need to define an ellipsoid E, which can have any radii, centers and rotations in space
the user interface allows the user to control 3 ellipses, which are ...
2
votes
2answers
186 views
How to detect if an ellipse collides with an another ellipse / rectangle
I want to detect if ellipse collides with another ellipse and rectangle. How I can do it?
I'm writing in C++. I want to use it for a game.
2
votes
1answer
250 views
Solutions for y for a rotated ellipse
I wish to plot an ellipse by scanline finding the values for y for each value of x.
For a plain ellipse the formula is trivial to find: y = Sqrt[b^2 - (b^2 x^2)/a^2]
But when the axes of the ellipse ...
1
vote
2answers
47 views
Calculate intersection of two ellipses
I used the equations found here to calculate the intersection points of two circles:
(P3 is what I'm trying to get)
Except, now I want to do the same with two ellipses.
Calculating h is the ...
1
vote
1answer
128 views
Finding the major and minor axises of an Ellipse knowing a certain point P and its eccentricity?
In a project I'm working on the user creates a circle and choose a point on that circle, P=(px,py). For the question's sake, let's assume the center of the circle is at (0,0).
After the previous ...
0
votes
1answer
242 views
Determine the X-radius & Y-radius of an ellipse
I need to determine the X-radius & Y-radius of an ellipse give the major & minor radius and I couldn't find any way how to do it.
I have following inputs:
Center Point
Start Point
Major ...
0
votes
1answer
2k views
finding a point on an ellipse circumference which is inside a rectangle having center point, height and width?
I have a rectangle in .NET in which I draw an ellipse.
I know the width, height and center point of that rectangle.
Of course the center point of the rectangle is also the center point of the ...