| 501 | } |
| 502 | |
| 503 | bool ofIsStringInString(const std::string& haystack, const std::string& needle) |
| 504 | { |
| 505 | return (strstr(haystack.c_str(), needle.c_str()) != nullptr); |
| 506 | } |
| 507 | |
| 508 | void ofScale(float x, float y, float z) |
| 509 | { |
no outgoing calls
no test coverage detected