资源简介
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
- 上一篇:物业管理后台界面(三栏式)
- 下一篇:TMS320F28335TI官方DXP原理图
相关资源
- TangZhuoLin.rar
- Day3_NOI.zip
- 图解HTTP.pdf
- VisionProStandardv7.2(2Day).zip
- ElevatorSimulation.zip
- 14002454IPC-A-610DChinese(L).pdf
- SoftwareEngineering.pdf
- linfanrong_10164999.rar
- The.Art.Of.Unit.Testing.With.Examples.in.C.2nd
- myGame.rar
- 带手机版数据同步财税代理公司注册
- pdf课本及习题答案.rar
- 深度学习PDF非扫描版(中文版)麻省
- doudizhu_shffule_src.zip
- 随机信号分析解题指南.pdf
- ios12.3驱动.zip
- 百万邮件系统多机版.rar
- learnopengl-cn-2018年5月更新.pdf
- zw_学习OpenCV(中文版).zip
- 1-300.pdf
- pyqt5windows生成二维工具源码
- KNN疾病预测算法Demo
- ABAQUS单元失效浅析(单元删除
- Jtopo+json格式数据代码
- 解多目标规划的单纯形代码
- TerraVolVoxelTerrainEngine2.1c.7z
- VA_X_Setup2118.rar
- CHS_Ha_PasswarekitEnterprise10.0.exe
- 无线通信AndreaGoldsmith杨鸿文等译.rar
- 迅捷PDF转换器破解版.rar
评论
共有 条评论