Boboter
Loading...
Searching...
No Matches
vector3.h
Go to the documentation of this file.
1
7
8#pragma once
9
13struct vector3 {
14 float x;
15 float y;
16 float z;
17};
A struct to represent a value with x, y and z components.
Definition vector3.h:13
float y
Definition vector3.h:15
float z
Definition vector3.h:16
float x
Definition vector3.h:14