Click here to Skip to main content
15,884,388 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 246.3K   16.4K   117  
A basic demo of modeling curves and surfaces in OpenGL.
// ListIteratorOfListOfCTriangle.cpp: implementation of the CListIteratorOfListOfCTriangle class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"

#include "ListIteratorOfListOfCTriangle.h"
#include "ListException.h"
#include "MMath.h"

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

CListIteratorOfListOfCTriangle::CListIteratorOfListOfCTriangle(CListOfCTriangle* aList) : theList(aList)
{
}

CListIteratorOfListOfCTriangle::~CListIteratorOfListOfCTriangle()
{
}

void CListIteratorOfListOfCTriangle::SetList(CListOfCTriangle* aList)
{
	theList = aList;
}

void CListIteratorOfListOfCTriangle::Init()
{
	curPtr = theList->firstPtr;
}

bool CListIteratorOfListOfCTriangle::More() const
{
	return (curPtr != 0);
}

void CListIteratorOfListOfCTriangle::Next()
{
	curPtr = (curPtr) ? curPtr->nextPtr : 0;
}

CTriangle CListIteratorOfListOfCTriangle::Current() const
{
	return (curPtr) ? curPtr->data : CTriangle();
}

CTriangle CListIteratorOfListOfCTriangle::ValueAt(const int index)
{
	int cnt =0;
	Init();
	while(curPtr != 0)
	{
		Next();
		cnt++;
	}
	
	if(cnt < index)
		throw CListException(LIST_BOUND_UPPER);
		
	else if(index<1)
		throw CListException(LIST_BOUND_LOWER);
		
	/*else*/ if(index ==1 )
		return theList->firstPtr->data;
	else
	{
		Init();
		for(int i=1; i < index; i++)
		{
			if(curPtr->nextPtr == 0)
				break;
			Next();
		}
		
		return curPtr->data;
	}
		
}
 

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