Euphoria
vec4.h
Go to the documentation of this file.
1#pragma once
2
3#include "base/vec3.h"
4
5#include "assert/assert.h"
6#include "base/numeric.h"
7
8namespace eu
9{
16 struct v4
17 {
18 float x;
19 float y;
20 float z;
21 float w;
22
23 v4(float ax, float ay, float az, float aw);
24
27 v4(const v3 &a, float aw);
28
31 explicit v4(const float *a);
32
34 [[nodiscard]] v3 to_vec3(float ww) const;
35
38
40 float* get_data_ptr();
41
43 [[nodiscard]] const float *get_data_ptr() const;
44
45 bool operator==(const v4 &rhs) = delete;
46 };
47
49 std::string string_from(const v4 &v);
50
54}
55
56ADD_DEFAULT_FORMATTER(eu::v4, std::string, eu::string_from);
57
#define ADD_CATCH_FORMATTER_DEF(TYPE)
Definition pch.public.h:22
std::string string_from(const An &a)
Definition assert.h:109
A (inclusive) range between two values.
Definition range.h:19
a 3d vector
Definition vec3.h:27
A 4d vector.
Definition vec4.h:17
float * get_data_ptr()
returns an array to the data
float z
Definition vec4.h:20
const float * get_data_ptr() const
returns an array to the data
float y
Definition vec4.h:19
v3 to_vec3_persp_div() const
returns a 3d vector using perspective division
float w
Definition vec4.h:21
v4(const v3 &a, float aw)
v4(const float *a)
Construct the vector from an array.
v4(float ax, float ay, float az, float aw)
v3 to_vec3(float ww) const
asserts that the w component is what is expected, point=1, vector=0
float x
Definition vec4.h:18
bool operator==(const v4 &rhs)=delete