21 const Heightmap &h_source2,
22 const CoordFrame &t_source1,
23 const CoordFrame &t_source2);
27 const Heightmap &h_source2,
29 const CoordFrame &t_source1,
30 const CoordFrame &t_source2,
31 const CoordFrame &t_target);
35 const std::vector<const CoordFrame *> &t_sources,
36 const CoordFrame &t_target);
40 bool endpoint =
false);
44 const Vec4<float> &bbox_source,
45 const Vec4<float> &bbox_target,
46 bool endpoint =
false);
50 bool endpoint =
false);
54 const Vec4<float> &bbox_source,
55 const Vec4<float> &bbox_target,
56 bool endpoint =
false);
60 bool endpoint =
false);
64 const Vec4<float> &bbox_source,
65 const Vec4<float> &bbox_target,
66 bool endpoint =
false);
70 const CoordFrame &t_source,
71 const CoordFrame &t_target);
82 const Vec4<float> &bbox_source,
83 const Vec4<float> &bbox_target);
89 const Vec4<float> &bbox_source,
90 const Vec4<float> &bbox_target);
98 const Vec4<float> &bbox_source,
99 const Vec4<float> &bbox_target);
Declaration of the Array class for 2D floating-point arrays with various mathematical operations and ...
HeightMap class, to manipulate heightmap (with contextual informations).
Definition heightmap.hpp:150
Definition blending.hpp:186
void interpolate_array_bicubic(const Array &source, Array &target)
Definition interpolate_array_gpu.cpp:37
void interpolate_array_bilinear(const Array &source, Array &target)
Definition interpolate_array_gpu.cpp:89
void interpolate_array_nearest(const Array &source, Array &target)
Definition interpolate_array_gpu.cpp:155
void interpolate_array_lagrange(const Array &source, Array &target, int order)
Definition interpolate_array_gpu.cpp:133
Definition algebra.hpp:28
void flatten_heightmap(Heightmap &h_source1, const Heightmap &h_source2, const CoordFrame &t_source1, const CoordFrame &t_source2)
Definition interpolate_heightmap.cpp:13
void interpolate_heightmap(const hmap::Heightmap &h_source, hmap::Heightmap &h_target, const CoordFrame &t_source, const CoordFrame &t_target)
Definition interpolate_heightmap.cpp:133
void interpolate_array_bicubic(const Array &source, Array &target, bool endpoint=false)
Definition interpolate_array.cpp:14
void interpolate_array_bilinear(const Array &source, Array &target, bool endpoint=false)
Definition interpolate_array.cpp:93
void interpolate_array_nearest(const Array &source, Array &target, bool endpoint=false)
Definition interpolate_array.cpp:166