Class TransformationSequence
- java.lang.Object
-
- com.actelion.research.chem.alignment3d.transformation.TransformationSequence
-
- All Implemented Interfaces:
Transformation
public class TransformationSequence extends java.lang.Object implements Transformation
-
-
Field Summary
Fields Modifier and Type Field Description static char
DELIMITER_END
static char
DELIMITER_START
-
Fields inherited from interface com.actelion.research.chem.alignment3d.transformation.Transformation
ROTATION, SCALING, TRANSLATION
-
-
Constructor Summary
Constructors Constructor Description TransformationSequence()
TransformationSequence(Quaternion rotor)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addTransformation(Transformation transformation)
void
apply(double[] coords)
void
apply(Coordinates coords)
void
apply(StereoMolecule mol)
static TransformationSequence
decode(java.lang.String s)
java.lang.String
encode()
java.util.List<Transformation>
getTransformations()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.actelion.research.chem.alignment3d.transformation.Transformation
apply
-
-
-
-
Field Detail
-
DELIMITER_START
public static final char DELIMITER_START
- See Also:
- Constant Field Values
-
DELIMITER_END
public static final char DELIMITER_END
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
TransformationSequence
public TransformationSequence(Quaternion rotor)
-
TransformationSequence
public TransformationSequence()
-
-
Method Detail
-
addTransformation
public void addTransformation(Transformation transformation)
-
getTransformations
public java.util.List<Transformation> getTransformations()
-
apply
public void apply(Coordinates coords)
- Specified by:
apply
in interfaceTransformation
-
apply
public void apply(double[] coords)
- Specified by:
apply
in interfaceTransformation
-
apply
public void apply(StereoMolecule mol)
- Specified by:
apply
in interfaceTransformation
-
decode
public static TransformationSequence decode(java.lang.String s)
-
encode
public java.lang.String encode()
- Specified by:
encode
in interfaceTransformation
-
-