www.pudn.com > 人体步态跟踪识别bate版.rar > DPoint2D.h


// DPoint2D.h: interface for the CDPoint2D class. 
// 
////////////////////////////////////////////////////////////////////// 
 
#if !defined(AFX_DPOINT2D_H__83C1F757_2054_4A84_A421_43A013404B22__INCLUDED_) 
#define AFX_DPOINT2D_H__83C1F757_2054_4A84_A421_43A013404B22__INCLUDED_ 
 
#if _MSC_VER > 1000 
#pragma once 
#endif // _MSC_VER > 1000 
 
class CDPoint2D   
{ 
public: 
	double x ; 
	double y ; 
	CDPoint2D(); 
	CDPoint2D(double x1, double y1); 
	double distance(CDPoint2D point); 
	void setValue(double x1, double y1); 
	CString toString(); 
	virtual ~CDPoint2D(); 
 
}; 
 
#endif // !defined(AFX_DPOINT2D_H__83C1F757_2054_4A84_A421_43A013404B22__INCLUDED_)