Fission FSN
Loading...
Searching...
No Matches
fsVec3d.h
Go to the documentation of this file.
1/********************************************************************
2*
3* File: fsVec3d.h
4*
5* Purpose: 3D Vector
6*
7*********************************************************************/
8
9#ifndef fsVec3dhdr
10#define fsVec3dhdr
11
12#include "fsBaseTypes.h"
13
14
15struct fsVec3d final
16{
17 fsVec3d(fsF32 pX, fsF32 pY, fsF32 pZ) : x(pX), y(pY), z(pZ)
18 {
19 }
20
21 fsVec3d() : x(0.0f), y(0.0f), z(0.0f)
22 {
23 }
24
26 {
27 }
28
32};
33
34#endif
float fsF32
Definition fsBaseTypes.h:28
fsF32 y
Definition fsVec3d.h:30
fsVec3d(fsF32 pX, fsF32 pY, fsF32 pZ)
Definition fsVec3d.h:17
fsF32 z
Definition fsVec3d.h:31
fsF32 x
Definition fsVec3d.h:29
~fsVec3d()
Definition fsVec3d.h:25
fsVec3d()
Definition fsVec3d.h:21