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.
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
//<2F>ļ<EFBFBD>: DFDraw<61><77><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͼԪ<CDBC>ؽӿ<D8BD><D3BF><EFBFBD>
|
|
|
|
|
|
//<2F><>Ҫ<EFBFBD><D2AA><EFBFBD><EFBFBD>:
|
|
|
|
|
|
//
|
|
|
|
|
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>д: 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);
|
|
|
|
|
|
};
|