Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKévin Dietrich <kevin.dietrich@mailoo.org>2016-09-09 06:30:43 +0300
committerKévin Dietrich <kevin.dietrich@mailoo.org>2016-09-09 06:30:43 +0300
commit631af9f930d2fd2c76751204ff22239aa95f761d (patch)
treeb14da01b27eefed9219f756be5dd55d253870bc0 /source/blender/alembic/intern/abc_exporter.h
parent78ea06fea4a74181c25254ed72d50d8a743b6954 (diff)
Alembic: add option to triangulate meshes upon export.
Diffstat (limited to 'source/blender/alembic/intern/abc_exporter.h')
-rw-r--r--source/blender/alembic/intern/abc_exporter.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/alembic/intern/abc_exporter.h b/source/blender/alembic/intern/abc_exporter.h
index 070eb9ea81a..b99eb09c788 100644
--- a/source/blender/alembic/intern/abc_exporter.h
+++ b/source/blender/alembic/intern/abc_exporter.h
@@ -65,6 +65,10 @@ struct ExportSettings {
bool export_child_hairs;
bool export_ogawa;
bool pack_uv;
+ bool triangulate;
+
+ int quad_method;
+ int ngon_method;
bool do_convert_axis;
float convert_matrix[3][3];