stbvox_get_bounds function

  1. @Native<Void Function(Pointer<stbvox_mesh_maker>, Pointer<Pointer<Float>>)>(ffi.Pointer<stbvox_mesh_maker>, ffi.Pointer<ffi.Pointer<ffi.Float>>)>()
void stbvox_get_bounds(
  1. Pointer<stbvox_mesh_maker> mm,
  2. Pointer<Pointer<Float>> bounds
)

Sets the global coordinates for this chunk, such that (0,0,0) relative coordinates will be at (x,y,z) in global coordinates.

Implementation

@ffi.Native<
  ffi.Void Function(
    ffi.Pointer<stbvox_mesh_maker>,
    ffi.Pointer<ffi.Pointer<ffi.Float>>,
  )
>()
external void stbvox_get_bounds(
  ffi.Pointer<stbvox_mesh_maker> mm,
  ffi.Pointer<ffi.Pointer<ffi.Float>> bounds,
);