| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected