LSSTApplications  17.0+11,17.0+34,17.0+56,17.0+57,17.0+59,17.0+7,17.0-1-g377950a+33,17.0.1-1-g114240f+2,17.0.1-1-g4d4fbc4+28,17.0.1-1-g55520dc+49,17.0.1-1-g5f4ed7e+52,17.0.1-1-g6dd7d69+17,17.0.1-1-g8de6c91+11,17.0.1-1-gb9095d2+7,17.0.1-1-ge9fec5e+5,17.0.1-1-gf4e0155+55,17.0.1-1-gfc65f5f+50,17.0.1-1-gfc6fb1f+20,17.0.1-10-g87f9f3f+1,17.0.1-11-ge9de802+16,17.0.1-16-ga14f7d5c+4,17.0.1-17-gc79d625+1,17.0.1-17-gdae4c4a+8,17.0.1-2-g26618f5+29,17.0.1-2-g54f2ebc+9,17.0.1-2-gf403422+1,17.0.1-20-g2ca2f74+6,17.0.1-23-gf3eadeb7+1,17.0.1-3-g7e86b59+39,17.0.1-3-gb5ca14a,17.0.1-3-gd08d533+40,17.0.1-30-g596af8797,17.0.1-4-g59d126d+4,17.0.1-4-gc69c472+5,17.0.1-6-g5afd9b9+4,17.0.1-7-g35889ee+1,17.0.1-7-gc7c8782+18,17.0.1-9-gc4bbfb2+3,w.2019.22
LSSTDataManagementBasePackage
Mapping Attributes

Mapping Attributes

Invert

Has this mapping been inverted?

If the attribute value is false (the default), the Mapping's behaviour is in the usual direction. However, if it is true then, its two transformations have been inter-changed, so that the Mapping displays the inverse of its native behaviour.

Mapping::inverted returns the inverse of the mapping (e.g. a copy of the mapping with its Invert Invert property set)

Applicability

IsLinear

Is the is an instance of a class that always represents a linear transformation?

Note, some Mapping classes can represent linear or non-linear transformations (the MathMap class for instance). Such classes have a false value for the IsLinear attribute. Specific instances of such classes can be tested for linearity using the astLinearApprox function.

Applicability

Frame

The @ref Mapping_IsLinear "IsLinear" value for a @ref Frame is `true`
(since a @ref Frame is equivalent to a UnitMap).

FrameSet

The @ref Mapping_IsLinear "IsLinear" value for a @ref FrameSet is obtained from
the @ref Mapping from the base @ref Frame to the current @ref Frame.

IsSimple

Has the mapping been simplified by the Mapping::simplified method?

If the IsSimple value is true, then the Mapping has been simplified and so there is nothing to be gained by simplifying it again. Indeed, Mapping::simplified will immediately return the Mapping unchanged if IsSimple is true.

Applicability

NIn

The number of coordinate values for an input point for a Mapping (i.e. the number of dimensions of the space in which the Mapping's input points reside).

Applicability

NOut

The number of coordinate values for an output point for a Mapping (i.e. the number of dimensions of the space in which the Mapping's output points reside).

Applicability

Report

Report transformed coordinates to stdout?

If Report is false (the default), no report is made. However, if it is true, the coordinates of each point are reported (both before and after transformation) by writing them to standard output.

This attribute is provided as an aid to debugging, and to avoid having to report values explicitly in simple programs.

Applicability

Notes

TranForward

Is the forward transformation defined?

This attribute indicates whether a Mapping is able to transform coordinates in the "forward" direction (i.e. converting input coordinates into output coordinates).

If this attribute is non-zero, the forward transformation is available. Otherwise, it is not.

Applicability

Notes

TranInverse

Is the inverse transformation defined?

This attribute indicates whether a Mapping is able to transform coordinates in the "inverse" direction (i.e. converting input coordinates into output coordinates).

If this attribute is non-zero, the inverse transformation is available. Otherwise, it is not.

Applicability

Notes