Click here to Skip to main content
15,894,630 members
Articles / Desktop Programming / MFC

StL Data File Viewer

Rate me:
Please Sign up or sign in to vote.
4.87/5 (43 votes)
5 Mar 2003CPOL2 min read 523.4K   14.7K   60  
A simple StereoLithography data file viewer.
// ListOfCPoint3D.cpp: implementation of the CListOfCPoint3D class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "ListOfCPoint3D.h"
#include "ListException.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

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

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


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


void CListOfCPoint3D::Append(const CPoint3D& data)
{
	CListNodeOfCPoint3D* newPtr = new CListNodeOfCPoint3D(data);
	if(IsEmpty())
		firstPtr = lastPtr = newPtr;
	else
	{
		lastPtr->nextPtr = newPtr;
		lastPtr = newPtr;
	}
}


void CListOfCPoint3D::Prepend(const CPoint3D& data)
{
	CListNodeOfCPoint3D* newPtr = new CListNodeOfCPoint3D(data);
	if(IsEmpty())
		firstPtr = lastPtr = newPtr;
	else
	{
		newPtr->nextPtr = firstPtr;
		firstPtr = newPtr;
	}
}

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

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

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


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

CListNodeOfCPoint3D* CListOfCPoint3D::NewNode(const CPoint3D& P)
{
	CListNodeOfCPoint3D* newPtr= new CListNodeOfCPoint3D(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