public ConcatenatedTransform();
public ConcatenatedTransform(ConcatenatedTransform source);
The ConcatenatedTransform constructor creates a new instance of the ConcatenatedTransform class. There are two signatures for this constructor. The first is the default constructor, which takes no arguments and produces a default ConcatenatedTransform. The second signature is the copy constructor, which takes a single ConcatenatedTransform as an argument and produces a new ConcatenatedTransform whose value matches the argument.