Package net.imglib2.concatenate
Interface PreConcatenable<A>
-
- All Known Implementing Classes:
ComponentMappingTransform
,MixedTransform
,SlicingTransform
,TranslationTransform
,TranslationTransform.InverseTranslationTransform
public interface PreConcatenable<A>
If T implementsPreConcatenable
<A>
that means you can pre-concatenate it with an A, usually resulting in another T. The conventional meaning for concatenating transformations is the following: Let ba = a.preConcatenate(b). Applying ba to x is equivalent to first applying a to x and then applying b to the result.- Author:
- Tobias Pietzsch, Stephan Saalfeld
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Class<A>
getPreConcatenableClass()
PreConcatenable<A>
preConcatenate(A a)
Pre-concatenate this object with a.
-
-
-
Method Detail
-
preConcatenate
PreConcatenable<A> preConcatenate(A a)
Pre-concatenate this object with a. The result will be an object that can be pre-concatenated with another A. The conventional meaning for concatenating transformations is the following: Let ba = a.preConcatenate(b). Applying ba to x is equivalent to first applying a to x and then applying b to the result.
-
getPreConcatenableClass
java.lang.Class<A> getPreConcatenableClass()
-
-