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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
/**
* @(#) DrawColoredPrimitives.java
* @(#) author: Joe Zimmerman (converted to Java by Sven Goethel)
*/
/* This program is free software under the license of LGPL */
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
import java.lang.*;
import java.util.*;
import java.io.*;
import java.util.*;
import gl4java.GLContext;
import gl4java.swing.*;
public class DrawColoredPrimitivesJPanel extends GLAnimJPanel
{
float rotate;
float LightAmbient[] = { 0.75f, 0.75f, 0.75f, 1.5f};
float LightDiffuse[] = { 1.0f, 1.0f, 1.0f, 0.9f};
float LightSpecular[] = { 0.8f, 0.8f, 0.8f, 1.0f};
public DrawColoredPrimitivesJPanel()
{
super(false);
setAnimateFps(30.0);
}
public void preInit()
{
stereoView = false;
}
public void init()
{
reshape(getSize().width, getSize().height);
gl.glEnable(GL_LIGHT0);
gl.glLightfv(GL_LIGHT0, GL_AMBIENT, LightAmbient);
gl.glLightfv(GL_LIGHT0, GL_DIFFUSE, LightDiffuse);
gl.glLightfv(GL_LIGHT0, GL_SPECULAR, LightSpecular);
glj.gljCheckGL();
}
public void reshape(int width, int height)
{
gl.glMatrixMode(GL_PROJECTION);
gl.glLoadIdentity();
glu.gluPerspective(45, (float)width/(float)height, 1, 700);
gl.glMatrixMode(GL_MODELVIEW);
gl.glLoadIdentity();
gl.glViewport(0,0,width,height);
}
public void display()
{
gl.glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
gl.glMatrixMode(GL_MODELVIEW);
gl.glLoadIdentity();
gl.glColor4f(1, 1, 1, 1);
rotate++;
gl.glTranslatef(0, 0, -5);
gl.glRotatef(rotate, 0, 1, 0);
gl.glBegin(GL_POLYGON);
gl.glNormal3f( 1, 0, 0);
gl.glColor4f(1, 0, 0, 1); gl.glVertex3f( 0, 1, 0);
gl.glColor4f(0, 1, 0, 1); gl.glVertex3f(-1, -1, 0);
gl.glColor4f(0, 0, 1, 1); gl.glVertex3f( 1, -1, 0);
gl.glEnd();
}
}
|