MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / ToString

Method ToString

include/Camera3D.hpp:45–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43 }
44
45 [[nodiscard]] std::string ToString() const {
46 return TextFormat(
47 "Camera3D(position=(%f, %f, %f), target=(%f, %f, %f), fovy=%f)",
48 position.x, position.y, position.z,
49 target.x, target.y, target.z,
50 fovy
51 );
52 }
53
54 operator std::string() const { return ToString(); }
55

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected