- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个简单的脚本,用于创建柏林噪声数组并将其呈现在屏幕上。 Perlin 代码是健全的,但渲染代码却不然。屏幕仅呈现白色,屏幕上完全没有任何内容。
public class MainClass {
double lastFPS = 0;
double fps = 0;
int seed = 0;
float rotation = 0;
float[][]noise = new float[0][0];
float[]cameraPos = {0f,0f,0f};
public static void main(String[] args)
{
MainClass mainClass = new MainClass();
Random r = new Random();
mainClass.seed = r.nextInt();
mainClass.launchScreen();
}
float lerp(float x0, float x1, float alpha)
{
return x0 * (1 - alpha) + alpha * x1;
}
/**
* Calculate the FPS and set it in the title bar
*/
public void updateFPS() {
if (getTime() - lastFPS > 1000) {
Display.setTitle("FPS: " + fps + "; Seed: " + seed);
fps = 0; //reset the FPS counter
lastFPS += 1000; //add one second
}
fps++;
}
public void launchScreen()
{
try {
Display.setDisplayMode(new DisplayMode(800,600));
Display.create();
} catch (LWJGLException e) {
e.printStackTrace();
System.exit(0);
}
lastFPS = getTime();
float rot = 0.0f;
PerlinGen pg = new PerlinGen();
noise = pg.GeneratePerlinNoise(pg.GenerateWhiteNoise(100, 100, seed), 5); //Get perlin noise array, returns float values from 0.0 to 1.0.
System.out.println("Noise length is: (" + noise.length + "," + noise[0].length + ")");
// init OpenGL here
GL11.glMatrixMode(GL11.GL_PROJECTION);
GL11.glLoadIdentity();
GL11.glOrtho(0, 800, 0, 600, 1, -1);
GL11.glMatrixMode(GL11.GL_MODELVIEW);
GL11.glPolygonMode( GL11.GL_FRONT_AND_BACK, GL11.GL_LINE ); //Wireframe
//GL11.glPolygonMode( GL11.GL_FRONT_AND_BACK, GL11.GL_FILL ); //Normal
while (!Display.isCloseRequested()) {
updateFPS();
// render OpenGL here
GL11.glClearColor(1,1,1,1);
GL11.glClear(GL11.GL_COLOR_BUFFER_BIT | GL11.GL_DEPTH_BUFFER_BIT);
// draw quad
int centerX = noise.length*5;
int centerY = 5;
int centerZ = noise[0].length*-5;
GLU.gluLookAt(centerX*2,500, centerZ*2, /* look from camera XYZ */
centerX, centerY, centerZ, /* look at the origin */
0, 1, 0); /* positive Y up vector */
drawNoiseGrid(rot);
rot += 0.05f;
Display.update();
}
Display.destroy();
}
public void drawNoiseGrid(float r)
{
rotation = r;
GL11.glColor3f(0f,0f,0.0f);
for(int x=0;x<noise.length-1;x++)
{
for(int y=0;y<noise[x].length-1;y++)
{
GL11.glBegin(GL11.GL_QUADS);
GL11.glVertex3f(10*x,noise[x][y]*10,-10*y);//topleft
GL11.glVertex3f(10*(x+1),noise[x+1][y]*10,-10*y);//topright
GL11.glVertex3f(10*x,noise[x][y+1]*10,-10*(y+1));//bottomleft
GL11.glVertex3f(10*(x+1),noise[x+1][y+1]*10,-10*(y+1));//bottomright
GL11.glEnd();
}
}
}
/**
* Get the time in milliseconds
*
* @return The system time in milliseconds
*/
public long getTime() {
return (Sys.getTime() * 1000) / Sys.getTimerResolution();
}
}
最佳答案
每个四边形的结构如下:
//topleft
//topright
//bottomleft
//bottomright
如果该序列准确,您将尝试向 GL_QUADS
提交某种愚蠢的“Z”形多边形。
试试这个顺序:
//bottomleft
//bottomright
//topright
//topleft
此外,每个四边形不需要 glBegin()
/glEnd()
,因此将它们移到循环外部以提高性能:
GL11.glBegin(GL11.GL_QUADS);
for(int x=0;x<noise.length-1;x++)
{
for(int y=0;y<noise[x].length-1;y++)
{
GL11.glVertex3f(10*x,noise[x][y+1]*10,-10*(y+1));//bottomleft
GL11.glVertex3f(10*(x+1),noise[x+1][y+1]*10,-10*(y+1));//bottomright
GL11.glVertex3f(10*(x+1),noise[x+1][y]*10,-10*y);//topright
GL11.glVertex3f(10*x,noise[x][y]*10,-10*y);//topleft
}
}
GL11.glEnd();
关于java - OpenGL 渲染网格和旋转脚本不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9241176/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!