| 744 | } |
| 745 | |
| 746 | void EveSOFDataHullBanner::SetAngleY( float angle ) |
| 747 | { |
| 748 | m_angleY = angle; |
| 749 | if( m_maintainAspectRatio ) |
| 750 | { |
| 751 | float ratio = GetAspectRatio(); |
| 752 | if( ratio != 0 ) |
| 753 | { |
| 754 | m_scaling.x *= GetTargetAspectRatio() / ratio; |
| 755 | } |
| 756 | } |
| 757 | } |
| 758 | |
| 759 | Vector3 EveSOFDataHullBanner::GetScaling() const |
| 760 | { |
nothing calls this directly
no test coverage detected