Package net.imglib2
Class AbstractEuclideanSpace
- java.lang.Object
-
- net.imglib2.AbstractEuclideanSpace
-
- All Implemented Interfaces:
EuclideanSpace
- Direct Known Subclasses:
AbstractCursor
,AbstractCursorInt
,AbstractInterval
,AbstractLocalizable
,AbstractLocalizableInt
,AbstractPositionableTransform
,AbstractRealInterval
,AbstractRealLocalizable
,FullSourceMapMixedRandomAccess
,FullSourceMapSlicingRandomAccess
,RandomAccessibleOnRealRandomAccessible
,RealOutOfBoundsRealRandomAccess
,SlicingCursor
,TranslationRandomAccess
public abstract class AbstractEuclideanSpace extends java.lang.Object implements EuclideanSpace
Superclass of abstract EuclideanSpace implementations (accessors, containers, etc). Does nothing but store the number of dimensions of the underlying function. Stephan Saalfeld- Author:
- Tobias Pietzsch, Stephan Preibisch
-
-
Field Summary
Fields Modifier and Type Field Description protected int
n
the number of dimensions.
-
Constructor Summary
Constructors Constructor Description AbstractEuclideanSpace(int n)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
numDimensions()
Gets the space's number of dimensions.
-
-
-
Method Detail
-
numDimensions
public int numDimensions()
Description copied from interface:EuclideanSpace
Gets the space's number of dimensions.- Specified by:
numDimensions
in interfaceEuclideanSpace
-
-