blob: 0985da9e3cf89540780f8fd51fd75c3954e16ea2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Stroke Font Record
// by Pontus Lidman
// based on GLUT 3.7 glutstroke.h
// this file Copyright 2000 MathCore AB
//
// This file/package is licensed under the terms of the LPGL
// with the permission of Pontus Lidman / Mathcore !
//
package gl4java.utils.glut.fonts;
public class StrokeFontRec {
public String name;
public int num_chars;
public StrokeCharRec[] ch;
public float top;
public float bottom;
public StrokeFontRec(String n, int num, StrokeCharRec[] c,float t, float b) {
name=n;
num_chars=num;
ch=c;
top=t;
bottom=b;
}
}
|