diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-05-24 12:27:02 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-05-24 12:27:02 (GMT) |
commit | 6380d1a869ee1c29d9b1ab2aa2ff403f3fbed14b (patch) | |
tree | f7501191b9ee3725bcfbfd19c4ce7f438a1540cf /include/tng_io.h | |
parent | f043e57811aed313b0de3fd3aa4f6df734156191 (diff) |
Improved utility functions. Bug fixes.
Diffstat (limited to 'include/tng_io.h')
-rw-r--r-- | include/tng_io.h | 28 |
1 files changed, 24 insertions, 4 deletions
diff --git a/include/tng_io.h b/include/tng_io.h index 1085d17..2e47e58 100644 --- a/include/tng_io.h +++ b/include/tng_io.h @@ -1981,16 +1981,36 @@ tng_function_status DECLSPECDLLEXPORT tng_util_box_shape_read_range float **box_shape, int64_t *stride_length); -tng_function_status DECLSPECDLLEXPORT tng_util_pos_write_frequence_set +tng_function_status DECLSPECDLLEXPORT tng_util_generic_write_frequency_set + (tng_trajectory_t tng_data, + const int64_t f, + const int64_t block_id, + const char *block_name, + const tng_compression compression); + +tng_function_status DECLSPECDLLEXPORT tng_util_pos_write_frequency_set + (tng_trajectory_t tng_data, + const int64_t f); + +tng_function_status DECLSPECDLLEXPORT tng_util_vel_write_frequency_set (tng_trajectory_t tng_data, const int64_t f); -tng_function_status DECLSPECDLLEXPORT tng_util_vel_write_frequence_set +tng_function_status DECLSPECDLLEXPORT tng_util_force_write_frequency_set (tng_trajectory_t tng_data, const int64_t f); -tng_function_status DECLSPECDLLEXPORT tng_util_force_write_frequence_set - (tng_trajectory_t tng_data, const int64_t f); +tng_function_status DECLSPECDLLEXPORT tng_util_box_shape_frequency_set + (tng_trajectory_t tng_data, + const int64_t f); + +tng_function_status DECLSPECDLLEXPORT tng_util_generic_write + (tng_trajectory_t tng_data, + const int64_t frame_nr, + const float *values, + const int64_t block_id, + const char *block_name, + const tng_compression compression); tng_function_status DECLSPECDLLEXPORT tng_util_pos_write (tng_trajectory_t tng_data, |