How do I calculate a point on a ellipse’s circumference?
问题 I want to plot a point in elliptical curve in J2ME I have values for X,Y,width,height and t. X and Y are the position of the ellipse(according to J2ME) with respect to Canvas and t is angle with respect to the center of ellipse(I have an image representation of the problem , but unfortunate blog is not allowing to insert into discussion :) ) int ePX = (X + width)+ (int) (width * Math.cos(Math.toRadians(t))); int ePY = (Y + height)+ (int) (height * -Math.sin(Math.toRadians(t))); Is this