Click here to Skip to main content
15,878,748 members
Articles / Desktop Programming / MFC

Basic Curves And Surfaces Modeler

Rate me:
Please Sign up or sign in to vote.
4.17/5 (40 votes)
18 Apr 2012CPOL3 min read 245.9K   16.4K   117  
A basic demo of modeling curves and surfaces in OpenGL.
// The following ifdef block is the standard way of creating macros which make exporting 
// from a DLL simpler. All files within this DLL are compiled with the VKGEOM_EXPORTS
// symbol defined on the command line. this symbol should not be defined on any project
// that uses this DLL. This way any other project whose source files include this file see 
// VKGEOM_API functions as being imported from a DLL, wheras this DLL sees symbols
// defined with this macro as being exported.
#ifdef VKGEOM_EXPORTS
#define VKGEOM_API __declspec(dllexport)
#else
#define VKGEOM_API __declspec(dllimport)
#endif

/*
// This class is exported from the VKGeom.dll
class VKGEOM_API CVKGeom {
public:
	CVKGeom(void);
	// TODO: add your methods here.
};

extern VKGEOM_API int nVKGeom;

VKGEOM_API int fnVKGeom(void);
*/

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Product Manager Mahindra & Mahindra
India India
Sharjith is a Mechanical Engineer with strong passion for Automobiles, Aircrafts and Software development.

Comments and Discussions