|
Blender V4.3
|
#include "abc_writer_mesh.h"#include "abc_hierarchy_iterator.h"#include "intern/abc_axis_conversion.h"#include "BLI_math_vector.h"#include "BKE_attribute.hh"#include "BKE_lib_id.hh"#include "BKE_material.h"#include "BKE_mesh.hh"#include "BKE_mesh_wrapper.hh"#include "BKE_object.hh"#include "bmesh.hh"#include "bmesh_tools.hh"#include "DNA_customdata_types.h"#include "DNA_material_types.h"#include "DNA_mesh_types.h"#include "DNA_modifier_types.h"#include "CLG_log.h"Go to the source code of this file.
Namespaces | |
| namespace | blender |
| namespace | blender::io |
| namespace | blender::io::alembic |
Functions | |
| static void | blender::io::alembic::get_vertices (Mesh *mesh, std::vector< Imath::V3f > &points) |
| static void | blender::io::alembic::get_topology (Mesh *mesh, std::vector< int32_t > &face_verts, std::vector< int32_t > &loop_counts) |
| static void | blender::io::alembic::get_edge_creases (Mesh *mesh, std::vector< int32_t > &indices, std::vector< int32_t > &lengths, std::vector< float > &sharpnesses) |
| static void | blender::io::alembic::get_vert_creases (Mesh *mesh, std::vector< int32_t > &indices, std::vector< float > &sharpnesses) |
| static void | blender::io::alembic::get_loop_normals (const Mesh *mesh, std::vector< Imath::V3f > &normals) |
Variables | |
| static CLG_LogRef | LOG = {"io.alembic"} |
|
static |
Definition at line 31 of file abc_writer_mesh.cc.