warp.volume\_lookup\_i ====================== .. function:: warp._src.lang.volume_lookup_i(id: uint64, i: int32, j: int32, k: int32) -> int .. hlist:: :columns: 8 * Kernel * Python Return the :class:`warp.int32` value of the voxel at integer index-space coordinates ``i``, ``j``, ``k``, without interpolation. ``id`` must identify an ``int32`` volume. This function is not differentiable. In kernels, ``volume_lookup_i()`` is equivalent to :func:`~warp.volume_lookup` with ``dtype=warp.int32``. See :func:`~warp.volume_lookup` for shared behavior and a usage example. :returns: The resolved :class:`warp.int32` voxel value.