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:
authorSybren A. Stüvel <sybren@stuvel.eu>2017-04-18 17:36:33 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2017-04-18 17:36:33 +0300
commit5bdbc88ab81891eff0dafaabf7f58a9c865d6e48 (patch)
treeb5a4f96c53b73b7565f245ebb620ac2c56ed412b /source/blender/alembic/intern/abc_curves.h
parent70018eb16e721f9171834afd4bf70dc017af1369 (diff)
Alembic import/export: write curve resolution to user property
Curve resolution isn't natively supported by Alembic, hence it is stored in a user property "blender:resolution". I've looked at a Maya curves example file, but that also didn't contain any information about curve resolution. Differential Revision: https://developer.blender.org/D2634 Reviewers: kevindietrich
Diffstat (limited to 'source/blender/alembic/intern/abc_curves.h')
-rw-r--r--source/blender/alembic/intern/abc_curves.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/alembic/intern/abc_curves.h b/source/blender/alembic/intern/abc_curves.h
index 2757d179a47..71b0d205820 100644
--- a/source/blender/alembic/intern/abc_curves.h
+++ b/source/blender/alembic/intern/abc_curves.h
@@ -61,6 +61,8 @@ public:
/* ************************************************************************** */
-void read_curve_sample(Curve *cu, const Alembic::AbcGeom::ICurvesSchema &schema, const float time);
+void read_curve_sample(Curve *cu,
+ const Alembic::AbcGeom::ICurvesSchema &schema,
+ const Alembic::Abc::ISampleSelector &sample_selector);
#endif /* __ABC_CURVES_H__ */