vec4: vec4()
Construct a (0.0, 0.0, 0.0, 0.0) vector.
\(\begin{bmatrix} 0.0 \\ 0.0 \\ 0.0 \\ 0.0 \end{bmatrix}\)
Example
#include "include/vec4.h"
#include <iostream>
int main() {
nml::vec4 v;
std::cout << nml::to_string(v) << std::endl;
return 0;
}
Result:
[0.000000, 0.000000, 0.000000, 0.000000]