Interface Concatenable<A>

All Known Implementing Classes:
ComponentMappingTransform, MixedTransform, SlicingTransform, TranslationTransform, TranslationTransform.InverseTranslationTransform

public interface Concatenable<A>
If T implements Concatenable<A> that means you can concatenate it with an A, usually resulting in another T. The conventional meaning for concatenating transformations is the following: Let ba = b.concatenate(a). 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 Details

    • concatenate

      Concatenable<A> concatenate(A a)
      Concatenate this object with a. The result will be an object that can be concatenated with another A. The conventional meaning for concatenating transformations is the following: Let ba = b.concatenate(a). Applying ba to x is equivalent to first applying a to x and then applying b to the result.
    • getConcatenableClass

      Class<A> getConcatenableClass()