MCPcopy Create free account
hub / github.com/RenderKit/embree / str

Method str

tutorials/common/tutorial/camera.h:46–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44 : from(cam.from), to(cam.to), up(cam.up), fov(cam.fov), handedness(handedness) {}
45
46 std::string str() const
47 {
48 std::stringstream stream;
49 stream.precision(10);
50 stream << "--vp " << from.x << " " << from.y << " " << from.z << " "
51 << "--vi " << to.x << " " << to.y << " " << to.z << " "
52 << "--vu " << up.x << " " << up.y << " " << up.z << " "
53 << "--fov " << fov << " "
54 << (handedness == LEFT_HANDED ? "--lefthanded" : "--righthanded");
55 return stream.str();
56 }
57
58 AffineSpace3fa camera2world ()
59 {

Callers 15

ParseEXRHeaderFunction · 0.45
ConvertHeaderFunction · 0.45
DecodeChunkFunction · 0.45
LoadEXRWithLayerFunction · 0.45
LoadEXRFromMemoryFunction · 0.45
tinyexr.hFile · 0.45
SaveEXRToMemoryFunction · 0.45
SaveEXRFunction · 0.45
loadSTBFunction · 0.45
storeSTBFunction · 0.45
loadEXRFunction · 0.45
storeEXRFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected