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

Method ToString

include/BoundingBox.hpp:36–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34 }
35
36 [[nodiscard]] std::string ToString() const {
37 return TextFormat(
38 "BoundingBox(min=(%f, %f, %f), max=(%f, %f, %f))",
39 min.x, min.y, min.z, max.x, max.y, max.z
40 );
41 }
42
43 operator std::string() const { return ToString(); }
44

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected