Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to plot a curve of y = f(x) for various functions, and I want the plot to be as good quality as possible. That said, I would prefer to avoid rendering individual pixels in my Java code for performance reasons.

In other words, I want to squeeze as much quality as I can out of Java2D.

Currently I am calculating float (x,y) values for each pixel in the x direction. Then I am creating a Shape by drawing lines between these points (using float values for the point coords). I have render hints for bilinear interpolation, anti-aliasing and quality rendering.

The result isn't terrible, it is just about passable, but I have seen better. I think the problem is, even though I am using float coordinates I am essentially drawing a polygon so there is only so much Java2D can do.

Is there anything more I can do to improve this?

share|improve this question
Can we get a screen-shot of the result? (Otherwise it is hard to tell how it could be improved.) – aioobe Dec 10 '10 at 22:39

1 Answer

When I was studying computer graphics at university, we did a coursework based on "Bézier Curve". It may be an algorithm you are looking for. Look here for more detail:

http://en.wikipedia.org/wiki/Bézier_curve

Basically it is a way how to replace a polygon with a smooth curve.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.