A Config representing an affine ``Transform``.
See Also
--------
lsst.afw.geom.makeTransform
Definition at line 90 of file transformConfig.py.
◆ linear
lsst.afw.geom.transformConfig.AffineTransformConfig.linear |
|
static |
Initial value:= ListField(
doc="2x2 linear matrix in the usual numpy order; "
"to rotate a vector by theta use: cos(theta), sin(theta), "
"-sin(theta), cos(theta)",
dtype=float,
length=4,
default=(1, 0, 0, 1),
)
Definition at line 97 of file transformConfig.py.
◆ translation
lsst.afw.geom.transformConfig.AffineTransformConfig.translation |
|
static |
Initial value:= ListField(
doc="x, y translation vector",
dtype=float,
length=2,
default=(0, 0),
)
Definition at line 105 of file transformConfig.py.
The documentation for this class was generated from the following file: