⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bpoint.h

📁 支持简单的公式推导
💻 H
字号:
#ifndef __BPOINT_H__
#define __BPOINT_H__
#include "tdafx.h"
#include "block.h"
struct BPoint
{
	BPoint(const Block& a= Block(),
		   const Block& b= Block(),
		   const Block& c= Block())
		   :x(a),y(b),z(c){}
	~BPoint(){}
    
	
	Block x;
    Block y;
    Block z;
};
Block SquDistance(const BPoint& a,const BPoint& b);
#endif //__BPOINT_H__

⌨️ 快捷键说明

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