controlpoint.h

来自「Moravec算子实现程序 Moravec算子实现程序」· C头文件 代码 · 共 58 行

H
58
字号
// ControlPoint.h: interface for the CControlPoint class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_CONTROLPOINT_H__99A36FA8_7D1E_4A99_8923_160463DE2738__INCLUDED_)
#define AFX_CONTROLPOINT_H__99A36FA8_7D1E_4A99_8923_160463DE2738__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "Matrixs.h"

class CControlPoint  
{
public:
	double x,y;
	double Xtp,Ytp,Ztp;
	double XX,YY,ZZ;
	double a11,a12,a13,a14,a15,a16,a21,a22,a23,a24,a25,a26;

public:
	CControlPoint()
	{
		x = 0;
		y = 0;
		Xtp = 0;
		Ytp = 0;
		Ztp = 0;
		XX = 0;
		YY = 0;
		ZZ = 0;
		a11 = 0;
		a12 = 0;
		a13 = 0;
		a14 = 0;
		a15 = 0;
		a16 = 0;
		a21 = 0;
		a22 = 0;
		a23 = 0;
		a24 = 0;
		a25 = 0;
		a26 = 0;
	}
	CControlPoint(double a,double b,double Atp,double Btp,double Ctp);
	virtual ~CControlPoint();
	Matrixs A();
	Matrixs V();
	Matrixs l();
	CControlPoint(CControlPoint &);
	CControlPoint& operator =(CControlPoint& c);
	CControlPoint operator ^ (Matrixs c);

};

#endif // !defined(AFX_CONTROLPOINT_H__99A36FA8_7D1E_4A99_8923_160463DE2738__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?