Done
Pinned fields
Click on the next to a field label to start pinning.
Details
Details
Assignee
Russell Owen
Russell OwenReporter
Russell Owen
Russell OwenPlanned End
Jul 20, 2018, 11:30 AM
Components
Checklist
Checklist
Created July 17, 2018 at 10:04 AM
Updated August 12, 2018 at 4:35 PM
Resolved August 12, 2018 at 4:35 PM
geom::LinearTransform and geom::AffineTransform both use
invert
to return an inverted copy of the transform, which sounds like it modifies the transform in place. afw Transform and astshim Mapping usegetInverted
to return an inverted copy of the transform, which is clearer but a bit verbose.I would like to standardize all of these to
inverted
, which is clear and concise and matches other modern usage in our code, e.g. sphgeom.I would also like to rename
simplify
tosimplified
in astshim for clarity and consistency (this is not widely used and would be a very small change).The changes proposed would require small changes to roughly a dozen packages. I'm happy to do the work. If folks want less churn then a smaller scale version of the proposal is to switch
inverse
togetInverted
(andsimplify
togetSimplified
, for consistency).