------------------------------------------------------------------------------------------------
| 123 | |
| 124 | // ------------------------------------------------------------------------------------------------ |
| 125 | bool Model::IsNull() const { |
| 126 | const std::vector<const NodeAttribute *> &attrs = GetAttributes(); |
| 127 | for (const NodeAttribute *att : attrs) { |
| 128 | |
| 129 | const Null *null_tag = dynamic_cast<const Null *>(att); |
| 130 | if (null_tag) { |
| 131 | return true; |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | return false; |
| 136 | } |
| 137 | |
| 138 | } // namespace FBX |
| 139 | } // namespace Assimp |
no outgoing calls
no test coverage detected