formatting

This commit is contained in:
Josh Wilson 2007-02-11 07:37:46 +00:00
parent 2844614e24
commit 5c26e4cf4d

View File

@ -42,12 +42,64 @@ PUBLISHED:
INLINE dHeightfieldDataID heightfield_data_create();
INLINE void heightfield_data_destroy(dHeightfieldDataID d);
INLINE void heightfield_data_build_callback(dHeightfieldDataID d, void* p_user_data, dHeightfieldGetHeight* p_callback, dReal width, dReal depth, int width_samples, int depth_samples, dReal scale, dReal offset, dReal thickness, int b_wrap);
INLINE void heightfield_data_build_byte(dHeightfieldDataID d, const unsigned char* p_height_data, int b_copy_height_data, dReal width, dReal depth, int width_samples, int depth_samples, dReal scale, dReal offset, dReal thickness, int b_wrap);
INLINE void heightfield_data_build_short(dHeightfieldDataID d, const short* p_height_data, int b_copy_height_data, dReal width, dReal depth, int width_samples, int depth_samples, dReal scale, dReal offset, dReal thickness, int b_wrap);
INLINE void heightfield_data_build_single(dHeightfieldDataID d, const float* p_height_data, int b_copy_height_data, dReal width, dReal depth, int width_samples, int depth_samples, dReal scale, dReal offset, dReal thickness, int b_wrap);
INLINE void heightfield_data_build_double(dHeightfieldDataID d, const double* p_height_data, int b_copy_height_data, dReal width, dReal depth, int width_samples, int depth_samples, dReal scale, dReal offset, dReal thickness, int b_wrap);
INLINE void heightfield_data_set_bounds(dHeightfieldDataID d, dReal min_height, dReal max_height);
INLINE void heightfield_data_build_callback(dHeightfieldDataID d,
void* p_user_data,
dHeightfieldGetHeight* p_callback,
dReal width,
dReal depth,
int width_samples,
int depth_samples,
dReal scale,
dReal offset,
dReal thickness,
int b_wrap);
INLINE void heightfield_data_build_byte(dHeightfieldDataID d,
const unsigned char* p_height_data,
int b_copy_height_data,
dReal width,
dReal depth,
int width_samples,
int depth_samples,
dReal scale,
dReal offset,
dReal thickness,
int b_wrap);
INLINE void heightfield_data_build_short(dHeightfieldDataID d,
const short* p_height_data,
int b_copy_height_data,
dReal width,
dReal depth,
int width_samples,
int depth_samples,
dReal scale,
dReal offset,
dReal thickness,
int b_wrap);
INLINE void heightfield_data_build_single(dHeightfieldDataID d,
const float* p_height_data,
int b_copy_height_data,
dReal width,
dReal depth,
int width_samples,
int depth_samples,
dReal scale,
dReal offset,
dReal thickness,
int b_wrap);
INLINE void heightfield_data_build_double(dHeightfieldDataID d,
const double* p_height_data,
int b_copy_height_data,
dReal width,
dReal depth,
int width_samples,
int depth_samples,
dReal scale,
dReal offset,
dReal thickness,
int b_wrap);
INLINE void heightfield_data_set_bounds(dHeightfieldDataID d,
dReal min_height,
dReal max_height);
INLINE void heightfield_set_heightfield_data(dHeightfieldDataID d);
public: