Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Object3d.cpp
Package: display_list.zip [view]
Upload User: hcfgz168
Upload Date: 2011-09-11
Package Size: 116k
Code Size: 1k
Category:
OpenGL program
Development Platform:
WINDOWS
- //********************************************
- // Object3d.cpp
- //********************************************
- // class CObject3d, the base 3d object
- //********************************************
- // pierre.alliez@cnet.francetelecom.fr
- // Created : 17/12/97
- // Modified : 15/01/98
- //********************************************
- #include "stdafx.h"
- #include "Base3d.h"
- #include "Object3d.h"
- //********************************************
- // GetType
- //********************************************
- int CObject3d::GetType()
- {
- return TYPE_OBJECT3D;
- }
- //********************************************
- // glBuildList
- //********************************************
- int CObject3d::glBuildList()
- {
- AfxMessageBox("CObject3d::BuildList : virtual function");
- return 1;
- }
- //********************************************
- // glDraw
- //********************************************
- int CObject3d::glDraw()
- {
- AfxMessageBox("CObject3d::BuildList : virtual function");
- return 1;
- }
- // ** EOF **