MCPcopy Create free account
hub / github.com/carbonengine/trinity / Vector3

Class Vector3

trinityal/tests/Raytracing.cpp:16–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14namespace
15{
16struct Vector3
17{
18 float x, y, z;
19
20 Vector3()
21 {
22 }
23
24 Vector3( float x_, float y_, float z_ ) :
25 x( x_ ),
26 y( y_ ),
27 z( z_ )
28 {
29 }
30};
31
32struct Vector4
33{

Callers 2

Raytracing.cppFile · 0.70
TEST_FFunction · 0.70

Calls

no outgoing calls

Tested by 1

TEST_FFunction · 0.56