blob: f4db5d14717304c54b50afbe645ab369341f6ffb (
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
|
// Bitmap Font Record
// by Pontus Lidman
// based on GLUT 3.7 glutbitmap.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 BitmapFontRec {
public String name=null;
public int num_chars=0;
public int first=0;
public BitmapCharRec[] ch=null;
public BitmapFontRec(String n,int num,int f,BitmapCharRec[] recs) {
name=n;
num_chars=num;
first=f;
ch=recs;
}
}
|