mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
formatting
This commit is contained in:
parent
2844614e24
commit
5c26e4cf4d
@ -42,12 +42,64 @@ PUBLISHED:
|
|||||||
|
|
||||||
INLINE dHeightfieldDataID heightfield_data_create();
|
INLINE dHeightfieldDataID heightfield_data_create();
|
||||||
INLINE void heightfield_data_destroy(dHeightfieldDataID d);
|
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_callback(dHeightfieldDataID d,
|
||||||
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);
|
void* p_user_data,
|
||||||
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);
|
dHeightfieldGetHeight* p_callback,
|
||||||
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);
|
dReal width,
|
||||||
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);
|
dReal depth,
|
||||||
INLINE void heightfield_data_set_bounds(dHeightfieldDataID d, dReal min_height, dReal max_height);
|
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);
|
INLINE void heightfield_set_heightfield_data(dHeightfieldDataID d);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user