-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGraph.h
More file actions
33 lines (27 loc) · 809 Bytes
/
Copy pathGraph.h
File metadata and controls
33 lines (27 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Graph.h: interface for the CGraph class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_GRAPH_H__7CAD5FB1_7785_4ADF_8AFD_E8F90C850FBD__INCLUDED_)
#define AFX_GRAPH_H__7CAD5FB1_7785_4ADF_8AFD_E8F90C850FBD__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CGraph
{
public:
CPoint m_ptEnd;
CPoint m_ptOrigin;
UINT m_nDrawType;
COLORREF m_clr2;
COLORREF m_clr;
CPoint trg;
UINT m_nLineWidth;
UINT IfFill;
UINT IfSpin;
float Ang;
CPoint Cen;
CGraph();
CGraph(UINT m_nDrawType,CPoint m_ptOrigin,CPoint m_ptEnd,UINT m_nLineWidth,UINT IfFill,COLORREF m_clr,COLORREF m_clr2,CPoint trg,UINT IfSpin,float Ang,CPoint Cen);
virtual ~CGraph();
};
#endif // !defined(AFX_GRAPH_H__7CAD5FB1_7785_4ADF_8AFD_E8F90C850FBD__INCLUDED_)