Click here to Skip to main content
15,880,972 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 246K   16.4K   117  
A basic demo of modeling curves and surfaces in OpenGL.
// ListOfCTriangle.cpp: implementation of the CListOfCTriangle class.
//
//////////////////////////////////////////////////////////////////////


#include "stdafx.h"

#include "ListOfCTriangle.h"
#include "ListException.h"
#include "MMath.h"

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CListOfCTriangle::CListOfCTriangle() : firstPtr(0), lastPtr(0)
{
}


CListOfCTriangle::~CListOfCTriangle()
{


	CListNodeOfCTriangle* curPtr = firstPtr, *tmp;
	if(!IsEmpty())
	{
		while(curPtr != 0)
		{
			tmp = curPtr;
			curPtr = curPtr->nextPtr;
			delete tmp;
		}
	}
}


void CListOfCTriangle::Append(const CTriangle& data)
{
	CListNodeOfCTriangle* newPtr = new CListNodeOfCTriangle(data);
	if(IsEmpty())
		firstPtr = lastPtr = newPtr;
	else
	{
		lastPtr->nextPtr = newPtr;
		lastPtr = newPtr;
	}
}


void CListOfCTriangle::Prepend(const CTriangle& data)
{
	CListNodeOfCTriangle* newPtr = new CListNodeOfCTriangle(data);
	if(IsEmpty())
		firstPtr = lastPtr = newPtr;
	else
	{
		newPtr->nextPtr = firstPtr;
		firstPtr = newPtr;
	}
}

CTriangle CListOfCTriangle::First() const
{
	if(IsEmpty())
		throw CListException(LIST_EMPTY);
	return firstPtr->GetData();
}

CTriangle CListOfCTriangle::Last() const
{
	if(IsEmpty())
		throw CListException(LIST_EMPTY);
	return lastPtr->GetData();
}

bool CListOfCTriangle::IsEmpty() const
{
	return (firstPtr==0);
}		


void CListOfCTriangle::Clear()
{
	CListNodeOfCTriangle* curPtr = firstPtr, *tmp;
	if(!IsEmpty())
	{
		while(curPtr != 0)
		{
			tmp = curPtr;
			curPtr = curPtr->nextPtr;
			delete tmp;
		}
		
		firstPtr = lastPtr = 0;
	}
}

CListNodeOfCTriangle* CListOfCTriangle::NewNode(const CTriangle& P)
{
	CListNodeOfCTriangle* newPtr= new CListNodeOfCTriangle(P);
	if(!newPtr)
		throw CListException(LIST_OUT_OF_MEMORY);
	newPtr->nextPtr = 0;
	return newPtr;
}

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