Click here to Skip to main content
15,883,827 members
Articles / Desktop Programming / MFC

Simple DXF Reader/Viewer with Spline Support

Rate me:
Please Sign up or sign in to vote.
5.00/5 (15 votes)
13 Sep 2013CPOL2 min read 79.5K   9K   27  
Simple DXF reader and viewer supporting the most common AutoCAD entities
// Arc.h: interface for the CArc class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_ARC_H__F3B30C5E_D3C4_4380_844A_03369FF97719__INCLUDED_)
#define AFX_ARC_H__F3B30C5E_D3C4_4380_844A_03369FF97719__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CArc  
{
public:
	double x,y,r,sa,ea;
	CString m_Layer;
	BYTE m_Select;
	BYTE m_Nest;

	CArc();
	virtual ~CArc();

};

#endif // !defined(AFX_ARC_H__F3B30C5E_D3C4_4380_844A_03369FF97719__INCLUDED_)

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
Software Developer
Turkey Turkey
I am an electronics engineer who loves to code on embedded, desktop and web application development.

Comments and Discussions