| 249 | } |
| 250 | |
| 251 | void FBX::Node::End( |
| 252 | Assimp::StreamWriterLE &s, |
| 253 | bool binary, int indent, |
| 254 | bool has_children |
| 255 | ) { |
| 256 | if (binary) { |
| 257 | EndBinary(s, has_children); |
| 258 | } else { |
| 259 | std::ostringstream ss; |
| 260 | EndAscii(ss, indent, has_children); |
| 261 | if (ss.tellp() > 0) |
| 262 | s.PutString(ss.str()); |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | |
| 267 | // public member functions for writing to binary fbx |
no test coverage detected