MCPcopy Create free account
hub / github.com/Kitware/VTK / WriteInlineData

Method WriteInlineData

IO/XML/vtkXMLWriter.cxx:2130–2143  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

2128
2129//------------------------------------------------------------------------------
2130void vtkXMLWriter::WriteInlineData(vtkAbstractArray* a, vtkIndent indent)
2131{
2132 if (this->DataMode == vtkXMLWriter::Binary)
2133 {
2134 ostream& os = *(this->Stream);
2135 os << indent;
2136 this->WriteBinaryData(a);
2137 os << "\n";
2138 }
2139 else
2140 {
2141 this->WriteAsciiData(a, indent);
2142 }
2143}
2144
2145//------------------------------------------------------------------------------
2146void vtkXMLWriter::WriteArrayInline(

Callers 1

WriteArrayInlineMethod · 0.95

Calls 2

WriteBinaryDataMethod · 0.95
WriteAsciiDataMethod · 0.95

Tested by

no test coverage detected