blob: f0fdec2b7ee986bb843e4f479b56fc3dd248fe3e (
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
|
// Stroke Character 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 StrokeCharRec {
public int num_strokes;
public StrokeRec[] stroke;
public float center;
public float right;
public StrokeCharRec(int n, StrokeRec[] strk, float c, float r) {
num_strokes=n;
stroke=strk;
center=c;
right=r;
}
}
|