"Orientation" is a better term since it implies multiple rotations combined which is more accurate to what a transform's orientation value represents. The following members need to be renamed within transform.rs:
Note that Transform::rotate() and Message::Rotate should both be left as-is because they use "rotate" as a verb which is appropriate. Once these members are renamed the various places that use them in the codebase will be broken and so will need to be updated to use the new names.
"Orientation" is a better term since it implies multiple rotations combined which is more accurate to what a transform's orientation value represents. The following members need to be renamed within transform.rs:
Transform::rotation()
->Transform::orientation()
Transform::set_rotation()
->Transform::set_orientation()
Transform::rotation_derived()
->Transform::orientation_derived()
TransformData::rotation
->TransformData::orientation
TransformData::rotation_derived
->TransformData::orientation_derived
Note that
Transform::rotate()
andMessage::Rotate
should both be left as-is because they use "rotate" as a verb which is appropriate. Once these members are renamed the various places that use them in the codebase will be broken and so will need to be updated to use the new names.