Tagged Questions
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
0answers
244 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 ...
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?
2
votes
3answers
538 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
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:
...
0
votes
1answer
118 views
How can I create a random number of D2D shapes (rectangles and ellipses) and refer to them as an array while drawing?
Let me elaborate. I define a D2D Rectangle like so:
D2D1_RECT_F rect1 = D2D1::RectF(5, 0, 150, 150);
and an ellipse as:
D2D1_ELLIPSE ellipse1 = D2D1::Ellipse(D2D1::Point2F(75.f, 75.f), 75.f, ...