MCPcopy Create free account
hub / github.com/Overload-Technologies/Overload / End

Method End

Dependencies/assimp/code/AssetLib/FBX/FBXExportNode.cpp:251–264  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

249}
250
251void 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

Callers 4

WriteHeaderExtensionMethod · 0.45
WriteObjectsMethod · 0.45
WriteConnectionsMethod · 0.45

Calls 1

PutStringMethod · 0.80

Tested by

no test coverage detected