• 大小: 0.25M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: 其他
  • 标签: 其他  

资源简介


MC算法,该程序实现了球的相互碰撞以及球的融合,采用OpenGL编写

资源截图

代码片段和文件信息

//
// Marching Cubes Example Program 
// by Cory Bloyd (corysama@yahoo.com)
//
// A simple portable and complete implementation of the Marching Cubes
// and Marching Tetrahedrons algorithms in a single source file.
// There are many ways that this code could be made faster but the 
// intent is for the code to be easy to understand.
//
// For a description of the algorithm go to
// http://astronomy.swin.edu.au/pbourke/modelling/polygonise/
//
// This code is public domain.
//

#include “stdio.h“
#include “math.h“
//This program requires the OpenGL and GLUT libraries
// You can obtain them for free from http://www.opengl.org
#include “GL/glut.h“

struct GLvector
{
        GLfloat fX;
        GLfloat fY;
        GLfloat fZ;     
};

//These tables are used so that everything can be done in little loops that you can look at all at once
// rather than in pages and pages of unrolled code.

//a2fVertexOffset lists the positions relative to vertex0 of each o

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      56861  2009-07-26 10:20  MC程序  OpenGL\mc\Debug\marchingsource.obj

     文件     217170  2009-07-26 10:20  MC程序  OpenGL\mc\Debug\mc.exe

     文件     240252  2009-07-26 10:20  MC程序  OpenGL\mc\Debug\mc.ilk

     文件     345060  2009-07-25 09:47  MC程序  OpenGL\mc\Debug\mc.pch

     文件     361472  2009-07-25 09:47  MC程序  OpenGL\mc\Debug\mc.pdb

     文件      41984  2009-07-26 10:20  MC程序  OpenGL\mc\Debug\vc60.idb

     文件      45056  2009-07-25 09:47  MC程序  OpenGL\mc\Debug\vc60.pdb

     文件      47524  2002-08-01 09:57  MC程序  OpenGL\mc\marchingsource.cpp

     文件       4248  2002-08-01 17:41  MC程序  OpenGL\mc\mc.dsp

     文件        527  2002-08-01 17:41  MC程序  OpenGL\mc\mc.dsw

     文件      58368  2009-07-26 14:19  MC程序  OpenGL\mc\mc.ncb

     文件      53760  2009-07-26 14:19  MC程序  OpenGL\mc\mc.opt

     文件        881  2009-07-26 10:20  MC程序  OpenGL\mc\mc.plg

     目录          0  2009-07-25 09:47  MC程序  OpenGL\mc\Debug

     目录          0  2009-07-26 14:19  MC程序  OpenGL\mc

     目录          0  2009-07-24 10:24  MC程序  OpenGL

----------- ---------  ---------- -----  ----

              1473163                    16


评论

共有 条评论