drawing curves?

  • Thread starter Thread starter ORC
  • Start date Start date
O

ORC

I'm looking for the most optimized way to draw a curve in C# when not using
DrawLines, so your input is highly appreciated?

Thanks
Ole
 
Not sure what you mean by "when not using DrawLines" but there's a DrawArc
implementation in the RoundGauge control in the SDF.
 
DrawLines is an ideal function to use when drawing curves in e.g. a graph.
If you have an array of e.g. 500 point representing a curve it is very easy
to call DrawLines and everything is made for you. But as the CF doesn't
support DrawLines like the Full framework does what would then be the best
solution. DrawArc does only draw a portion of an ellipse and can't replace
the DrawLines method. So my question is still open - does someone have some
experience in fast drawing routines on the compact framework?

Thanks
Ole
 
Back
Top