Hello,
I was looking almost everywhere for some clues how to make *.glf 3d font from True Type Font.
On nehe site on example included in lesson 15 in class Renderer shows how to use this kind of fonts under Jogl and
it works fine:
GLF glf = new GLF();
glf.glfInit();
timesNew1 = glf.glfLoadFont("demos/data/fonts/times_new1.glf")
where timesNew1 is a int value.
but how can I create for example verdanab.glf from verdana.ttf?
I find that in C++ this kind of operations are possible, I mean there is a possibility to use font from *.ttf type.
How can I do it using Java and JOGL?
Does anyone know that?