|
Blender V4.3
|
#include "BKE_context.hh"#include "BKE_layer.hh"#include "BKE_mesh.hh"#include "BKE_object.hh"#include "BKE_report.hh"#include "DNA_collection_types.h"#include "DNA_object_types.h"#include "DNA_scene_types.h"#include "BLI_math_matrix.h"#include "BLI_math_rotation.h"#include "BLI_math_vector.h"#include "BLI_span.hh"#include "BLI_string.h"#include "DEG_depsgraph.hh"#include "DEG_depsgraph_build.hh"#include "ply_data.hh"#include "ply_import.hh"#include "ply_import_buffer.hh"#include "ply_import_data.hh"#include "ply_import_mesh.hh"Go to the source code of this file.
Namespaces | |
| namespace | blender |
| namespace | blender::io |
| namespace | blender::io::ply |
Functions | |
| static bool | blender::io::ply::parse_keyword (Span< char > &str, StringRef keyword) |
| static Span< char > | blender::io::ply::parse_word (Span< char > &str) |
| static void | blender::io::ply::skip_space (Span< char > &str) |
| static PlyDataTypes | blender::io::ply::type_from_string (Span< char > word) |
| const char * | blender::io::ply::read_header (PlyReadBuffer &file, PlyHeader &r_header) |
| static Mesh * | blender::io::ply::read_ply_to_mesh (const PLYImportParams &import_params, const char *ob_name) |
| Mesh * | blender::io::ply::import_mesh (const PLYImportParams &import_params) |
| void | blender::io::ply::importer_main (bContext *C, const PLYImportParams &import_params) |
| void | blender::io::ply::importer_main (Main *bmain, Scene *scene, ViewLayer *view_layer, const PLYImportParams &import_params) |