You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
494 B
C++
25 lines
494 B
C++
//////////////////////////////////////////////////////////////////////////////
|
|
//文件: DFDraw补充绘图元素接口类
|
|
//主要功能:
|
|
//
|
|
//程序编写: 2005-12-07
|
|
//
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
#include "..\DrawModel\vector.h"
|
|
|
|
class AFX_EXT_CLASS COffset :
|
|
public CVector
|
|
{
|
|
public:
|
|
COffset(void);
|
|
virtual ~COffset(void);
|
|
int Read(CFile& fr);
|
|
int Create(int num);
|
|
double* offset;
|
|
void Write(CFile& fw);
|
|
double Play(double x0);
|
|
};
|