Class Ranges.Range

java.lang.Object
net.imglib2.blocks.Ranges.Range
Enclosing interface:
Ranges

public static class Ranges.Range extends Object
Instructions for copying along a particular dimension. (To copy an n-dimensional region, n Ranges are combined.)

Copy w elements to coordinates x through x + w (exclusive) in destination, from source cell with gridx grid coordinate, starting at coordinate cellx within cell, and from there moving in dir for successive source elements.

It is guaranteed that all w elements fall within the same cell (i.e., primitive array).

  • Field Details

    • gridx

      final int gridx
    • cellx

      final int cellx
    • w

      final int w
    • dir

      final Ranges.Direction dir
    • x

      final int x
  • Constructor Details

    • Range

      public Range(int gridx, int cellx, int w, Ranges.Direction dir, int x)
  • Method Details