| 136 | } |
| 137 | |
| 138 | FVector GetDirection(const FQuat& Quat, const EPCGExAxis Dir) |
| 139 | { |
| 140 | switch (Dir) |
| 141 | { |
| 142 | default: |
| 143 | case EPCGExAxis::Forward: return GetDirection<EPCGExAxis::Forward>(Quat); |
| 144 | case EPCGExAxis::Backward: return GetDirection<EPCGExAxis::Backward>(Quat); |
| 145 | case EPCGExAxis::Right: return GetDirection<EPCGExAxis::Right>(Quat); |
| 146 | case EPCGExAxis::Left: return GetDirection<EPCGExAxis::Left>(Quat); |
| 147 | case EPCGExAxis::Up: return GetDirection<EPCGExAxis::Up>(Quat); |
| 148 | case EPCGExAxis::Down: return GetDirection<EPCGExAxis::Down>(Quat); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | FVector GetDirection(const EPCGExAxis Dir) |
| 153 | { |
no outgoing calls
no test coverage detected