#include "plywoot/ascii_parser_policy.hpp"
#include "plywoot/ascii_writer_policy.hpp"
#include "plywoot/binary_parser_policy.hpp"
#include "plywoot/binary_writer_policy.hpp"
#include "plywoot/element_data.hpp"
#include "plywoot/header_parser.hpp"
#include "plywoot/parser.hpp"
#include "plywoot/parser_variant.hpp"
#include "plywoot/reflect.hpp"
#include "plywoot/type_traits.hpp"
#include "plywoot/types.hpp"
#include "plywoot/writer.hpp"
#include "plywoot/writer_variant.hpp"
#include <algorithm>
#include <cstdint>
#include <functional>
#include <istream>
#include <optional>
#include <ostream>
#include <string>
#include <utility>
#include <vector>
Go to the source code of this file.
◆ convert()
void plywoot::convert |
( |
std::istream & |
is, |
|
|
std::ostream & |
os, |
|
|
PlyFormat |
format |
|
) |
| |
|
inline |
Converts the given input PLY stream to the requested format, and outputs the resulting PLY data to the given output stream.
- Parameters
-
is | input stream containing the PLY data to convert |
os | output stream to write converted PLY data to |
format | PLY format of the output PLY data |
Definition at line 358 of file plywoot.hpp.