Tagged Questions

0
votes
1answer
77 views

Drawing semi-transparent curves in OpenGL ES

My goal is to draw a semi-transparent curve. User moves cursor and I draw the curve under the cursor. I've tried to use antialiased points to draw line, but I don't know how to ma …
2
votes
1answer
76 views

Way to draw NSString on a curved path?

I have been looking for any example code for drawing a UILabel (or just an NSString or something) on a curved path, but have come up empty handed. Does anyone know whether it's po …
0
votes
0answers
27 views

GDI+ Curve Wrapping

Hi, I'm creating a graphing application using ZedGraph, which uses GDI+. If a curve is overflowing past the chart, I wrap it around to the other side. I do this by clipping the c …
0
votes
3answers
306 views

Drawing a Dragons curve in Python

I am trying to work out how to draw the dragons curve, with pythons turtle using the An L-System or Lindenmayer system. I no the code is something like the Dragon curve; initial …
2
votes
2answers
379 views

Equidistant points across Bezier curves

Currently, I'm attempting to make multiple beziers have equidistant points. I'm currently using cubic interpolation to find the points, but because the way beziers work some areas …
1
vote
2answers
182 views

Curve Fitting

Given two points say (1,2,3) and (4,7,8). The endpoint tangents at these points are also given as inputs say pi/4 and -pi/2 respectively. How to fit a helix of arc length 2 between …
2
votes
3answers
321 views

Convert a quadratic curve points to polynomial representation?

I have the X,Y of 2 end points and 1 bezier point, of a Quadratic Bezier curve. Using this data, how can I derive the polynomial representation of the curve?
1
vote
1answer
159 views

Fast Method to Intersect two Integer Quadratic Beziers?

Given two Quadratic Beziers in 2D with integer coordinates, what is the best way to find their intersection point(s)? Also interesting is an early rejection if they do not intersec …