mirror of
https://github.com/zeldaret/tp
synced 2026-06-09 04:40:05 -04:00
c70d485d35
i previously had a bad habit of using double underscores in include guard macro names, which are implementation-reserved per the C++98 standard (see 17.4.3.1.2 Global names). Co-authored-by: Pheenoh <pheenoh@gmail.com>
17 lines
434 B
C++
17 lines
434 B
C++
#ifndef C_M3D_G_TRI_H_
|
|
#define C_M3D_G_TRI_H_
|
|
|
|
#include "SComponent/c_m3d_g_cyl.h"
|
|
#include "SComponent/c_m3d_g_pla.h"
|
|
#include "SComponent/c_xyz.h"
|
|
#include "global.h"
|
|
|
|
class cM3dGTri {
|
|
public:
|
|
bool cross(const cM3dGCyl*, Vec*) const;
|
|
void setPos(const Vec*, const Vec*, const Vec*);
|
|
void setBg(const Vec*, const Vec*, const Vec*, const cM3dGPla*);
|
|
void set(const Vec*, const Vec*, const Vec*, const Vec*);
|
|
};
|
|
|
|
#endif |