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.

41 lines
959 B
C++

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

//////////////////////////////////////////////////////////////////////////////
//文件 CrossPoint.h
//主要功能:
// 基础类库
//程序编写: 2005-12-07
/////////////////////////////////////////////////////////////////////////////
// CrossPoint.h: interface for the CCrossPoint class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CROSSPOINT_H__6610109F_05BA_40E7_87E4_AE03DBDA3D62__INCLUDED_)
#define AFX_CROSSPOINT_H__6610109F_05BA_40E7_87E4_AE03DBDA3D62__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
//#include "Vector.h"
//class CCrossPoint : public CVector
namespace NBase
{
class AFX_EXT_CLASS CCrossPoint
{
public:
CCrossPoint();
virtual ~CCrossPoint();
void operator =(CCrossPoint &t);
void *curve;
double x[2]; // x[0]为本曲线桩号x[1] 为curve2桩号
};
};
using namespace NBase;
#endif // !defined(AFX_CROSSPOINT_H__6610109F_05BA_40E7_87E4_AE03DBDA3D62__INCLUDED_)