Tagged Questions

In geometry, an ellipse is a plane curve that results from the intersection of a cone by a plane in a way that produces a closed curve. Circles are special cases of ellipses. An ellipse is also the locus of all points of the plane whose distances to two fixed points add to the same constant.

learn more… | top users | synonyms

25
votes
9answers
17k views

android ellipsize multiline textview

I need to ellipsize multiligne textview. My component is large enough to display at least 4 lines with the ellipse, but only 2 lines are displayed. I tried to change the minimum and maximum number of ...
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
3answers
175 views

Counting points inside an ellipse

I'm trying to count given data points inside each ring of ellipse: The problem is that I have a function to check that: so for each ellipse, to make sure whether a point is in it, three inputs have ...
7
votes
1answer
325 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 ...
6
votes
3answers
2k views

Ellipse around the data in MATLAB

I would like to reproduce the following figure in MATLAB: There are two classes of points with X and Y coordinates. I'd like to surround each class with an ellipse with one parameter of standard ...
6
votes
2answers
724 views

How do I draw an ellipse with arbitrary orientation pixel by pixel?

I have to draw an ellipse of arbitrary size and orientation pixel by pixel. It seems pretty easy to draw an ellipse whose major and minor axes align with the x and y axes, but rotating the ellipse by ...
5
votes
4answers
287 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 ...
5
votes
0answers
245 views

How to draw a freehand-looking ellipse or circle?

My question involves various techniques for drawing lines that appear to be freehand: How do you draw like a Crayon? Specifically Steve Hanov posted this excellent blog entry. From that I was able ...
5
votes
1answer
265 views

Measuring distance along ellipse

Suppose we have an ellipse x^2/a^2 + y^2/b^2 . Taking a point (a*cos(t),b*sint(t)) on the ellipse, what is the fastest way to find another point on the ellipse such that distance between them is a ...
4
votes
3answers
626 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 ...
4
votes
6answers
476 views

Is there any HTML code that would display an ellipse or a rounded rectangle?

I am not sure if it's possible at all in HTML, but I would still ask it here: Is there any HTML code that would stand for an ellipse or a rounded rectangle?
3
votes
1answer
71 views

Creating a matrix containing a filled ellipse based on a non-contiguous outline

I'm trying to create a matrix of 0 values, with 1 values filling a ellipse shape. My ellipse was generated using minVolEllipse.m (Link 1) which returns a matrix of the ellipse equation in the 'center ...
3
votes
1answer
88 views

How I can make a gradient between 2 or more ellipses with GD?

How I can make a gradient between 2 or more ellipses with GD? The following is an ellipse: <?php header( "Content-type: image/gif" ); $imagen = imagecreatefrompng('tras.png'); $morado = ...
3
votes
1answer
221 views

Ellipse containing percentage of given points in R

I'm drawing F1/F2 vowel graph (an example is here). Each vowel has several points/values, and I'd like to draw an ellipse around the points, so that: ellipse covers at least 80% of points (ie. in ...
3
votes
3answers
404 views

Calculate distance from point p to high dimensional Gaussian (M, V)

I have a high dimensional Gaussian with mean M and covariance matrix V. I would like to calculate the distance from point p to M, taking V into consideration (I guess it's the distance in standard ...
3
votes
3answers
4k 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 nothing else about the ...
2
votes
1answer
56 views

iPhone How to clip crescent moon pattern

With help from stack overflow i am getting familiar with quartz drawing in iPhone. I want to make code that clips crescent moon pattern, this what i have so far, but its not working quite as i expect: ...
2
votes
2answers
95 views

Calculating points on an elliptical orbit in 3D

I'm required to move my virtual camera from Point A in 3D space to Point B in an elliptical orbit. So far, I have: Calculated the projected lines from the center of each camera position (i.e. ...
2
votes
2answers
357 views

How can I draw a circle sector with the ellipse class?

I would like to make a sector of a circle on WP7. I tried to do this with the ellipse class and I found a lot of solution, which make a gauge or pie chart or something, but I need just the essence. ...
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
713 views

Draw opacity ellipse in Delphi 2010

I am looking to draw an opacity ellipse in CodeGear Delphi 2010. I had tried to draw to an another bitmap, I had set the bitmap transparent color(for background) Call the ellipse method. And in my ...
2
votes
1answer
249 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 ...
2
votes
2answers
5k views

WPF Binding to change fill color of ellipse

Probably a simple question but: How do I programmatically change the color of an ellipse that is defined in XAML based on a variable? Everything I've read on binding is based on collections and ...
2
votes
2answers
1k 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 the ellipse a ...
2
votes
3answers
539 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 bounding box or ...
1
vote
2answers
43 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
0answers
25 views

Maximal number of fixed size ellipsis in a certain area

I'm looking for code to find the maximal amount of fixed size ellipses in a certain area. I have hand drawn arbitrary shapes and I want to inscribe several amount of ellipses such that the cover the ...
1
vote
1answer
73 views

Game Calculation

So I have an ellipse with: RADIUS_X = 100.0f; RADIUS_Y = 30.0f; I want to distribute 3 objects evenly along this ellipse and when I move an object, the other 2 objects move the same distance as ...
1
vote
0answers
84 views

Check if pixels lie within ellipse area in Python

I'm trying to create true/false mask based on test whether pixels are inside ellipse area or not. Straightforward ways were proposed here - Counting points inside an ellipse However, I'm wondering ...
1
vote
3answers
78 views

Collision with Ellipse

For an elliptical billiard-table, how can a collision be detected and resolved between the boundary of this table and one billiard-ball? 1.) I want to see if the position, P(x,y), of the ...
1
vote
1answer
52 views

how to detect ellipse in image from matlab

How to detect ellipse in image from matlab and eliminate the redundant part of the image? please help thanks
1
vote
3answers
144 views

Matlab: how to avoid ellipses overlapping in image?

I've been using a function file [ret]=drawellipse(x,y,a,b,angle,steps,color,img). Calling the function through a script file to draw random ellipses in image. But once i set the random center ...
1
vote
0answers
141 views

OpenCV - cvFitEllipse2 with cvContourChainCode ?

I have several set of points as cvContourChainCode and I want to fit ellipses to each of this sets. The cvFitEllipse2 requires a cvArr as input. Any hint how I can convert these two types? ...
1
vote
3answers
47 views

Matlab:how can i display several outputs in the same image?

Let's say my image is img=zeros(100,100,3), my outputs are several ellipse which i get using a created function [ret]=draw_ellipse(x,y,a,b,angle,color,img), i can display one ellipse using ...
1
vote
1answer
216 views

Ellipse Geometry Custom Shape

I am deriving from shape to draw an ellipse. The drawing starts at 0,0 so only the bottom right corner of the ellipse its drawn. How do I transform the origin in the overridegeometry method: class ...
1
vote
2answers
102 views

Resize circle button with draging like in designer window

I have a circular button, which I want to resize (similarly to how you do it in the design window). If this was a rectangle I can attach some thumbs or adorners around the edges and keep track of the ...
1
vote
3answers
143 views

How to determine if a latitude & longitude is within an ellipse

I have data describing a rotated ellipse (the center of the ellipse in latitude longitude coordinates, the lengths of the major and minor axes in kilometers, and the angle that the ellipse is ...
1
vote
1answer
260 views

Is there a way to draw a CGContextDrawRadialGradient as an oval instead of a perfect circle?

I need a radial gradient in the shape of an oval or ellipse and it seems like it CGContextDrawRadialGradient can only draw a perfect circle. I've been drawing to a square context then copying/drawing ...
1
vote
2answers
226 views

Differences between drawing an Ellipse in Android and Java

In Java for some reason the Ellipse2D.Double uses the parameters (height, width, x, y) where as when I create a RectF in Android the parameters are (left, top, right, bottom) so I'm a bit confused on ...
1
vote
1answer
230 views

How Ellipse to Ellipse intersection?

I'm using JAVA. Ellipse2D s1=new Ellipse2D.Float(0,0,100,100); System.out.println(s1.intersects(99, 30, 100, 100)); Should return false but it return true. How to find intersection between 2 ...
1
vote
2answers
109 views

flex rotating an ellipse from the bottom instead of middle

got another little provlem with flex ... i've made a ellipse and i want to rotate it dynamicly. made a h:slider which change the rotate="" value of the ellipse. and it rotates fine. but the rotation ...
1
vote
4answers
96 views

two C questions

1)(pointer) What is %p used for? To show the address or something else? (can you give example too?) 2) As using graph.h library and creating graphs, ellipse() function has 6 parameters. What are ...
1
vote
3answers
205 views

Ellipse thickness algorithm

Does anybody knows an algorithm for drawing an ellipse with thickness? I googled, but I found only algorithms that draws an 1 pixel width ellipse, like this: ...
1
vote
2answers
1k views

End the ellipse problem with TextViews

Whoa SDK, whoa... So I'm attempting to add an ellipse to the end of my TextView (single line) before it runs off screen. I've read that ellipses are broke (developing for 2.1)? After Google ...
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 ...
1
vote
0answers
97 views

Converting between Arc Definitions

I'm struggling to figure out the math to convert between two different definitions of an arc. The source definition includes a start point, end point and control point on the arc as well as the ...
1
vote
1answer
1k views

How to Find Intersections with Ellipses in PGF/TikZ

I am trying to display a sphere in PGF/TikZ to illustrate the idea of great circles. The code for my current result is: \begin{tikzpicture} \tikzfading[name=fade right, left color=transparent!20, ...
1
vote
2answers
734 views

How can a data ellipse be superimposed on a ggplot2 scatterplot?

I have an R function which produces 95% confidence ellipses for scatterplots. The output looks like this, having a default of 50 points for each ellipse (50 rows): [,1] [,2] [1,] ...
1
vote
1answer
2k views

Add textblock to ellipse in WPF

How to add a TextBlock to an Ellipse in WPF/Silverlight?
1
vote
1answer
703 views

draw circle on MKMapview in iphone app

I am trying to draw circles around the current location on MKMapview.I tryied many codes but however no success. can any one suggest any links which should I refer. I am new to Iphone so dont have ...

1 2 3