tags:

views:

406

answers:

2

What I mean by a "pen-like" stroke is this: when you draw on a paper with a circular bud pen. You will get a line with a round beginning and ending. In case, my explanation isn't good enough, please see "Join Round" and "Cap Round" at http://java.sun.com/docs/books/tutorial/2d/geometry/strokeandfill.html

In Java, we can set the stroke and such to have such line, so is it possible to have OpenGL to do it natively?

+2  A: 

OpenGL doesn't have high level drawing functions like that.

karx11erx
+1  A: 

It's not possible in OpenGL itself. However, there's AmanithVG GLE, a library built on top of OpenGL, that can do it.

Malte Clasen