LeviLamina
Loading...
Searching...
No Matches
Vec4.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class Vec4 {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<4, 4, float> x;
10 ::ll::TypedStorage<4, 4, float> y;
11 ::ll::TypedStorage<4, 4, float> z;
12 ::ll::TypedStorage<4, 4, float> w;
13 // NOLINTEND
14
15public:
16 // static variables
17 // NOLINTBEGIN
18 MCAPI static ::Vec4 const& MAX();
19
20 MCAPI static ::Vec4 const& MIN();
21
22 MCAPI static ::Vec4 const& ONE();
23
24 MCAPI static ::Vec4 const& ZERO();
25 // NOLINTEND
26};
Definition Vec4.h:5