randomPoison / gunship-rs

An experimental game engine written in Rust.
MIT License
27 stars 3 forks source link

Rename "Rotation" in Transform to "Orientation" #60

Closed randomPoison closed 8 years ago

randomPoison commented 8 years ago

"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.

randomPoison commented 8 years ago

Transform is being rewritten as part of the async refactor, so this will get redone as part of that process.