lineseg3.h
来自「<B>DirectX9.0 3D游戏编程</B>」· C头文件 代码 · 共 22 行
H
22 行
/*******************************************************************
* Advanced 3D Game Programming using DirectX 9.0
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* copyright (c) 2003 by Peter A Walsh and Adrian Perez
* See license.txt for modification and distribution information
******************************************************************/
#ifndef _LINESEG3_H
#define _LINESEG3_H
#include "point3.h"
struct lineSeg3 {
point3 v0,v1;
lineSeg3( const point3 &a, const point3 &b ){
v0 = a; v1 = b;
}
lineSeg3(){}
};
#endif//_LINESEG3_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?