FRotation FVector 相互转换

2019-05-08  本文已影响0人  我真的不知道该起什么名字了

FVector to FRotator

FRotator FVector::Rotation() const
{
    return ToOrientationRotator();
}

FRotator to FVector

CORE_API FVector FRotator::Vector() const
{
    float CP, SP, CY, SY;
    FMath::SinCos( &SP, &CP, FMath::DegreesToRadians(Pitch) );
    FMath::SinCos( &SY, &CY, FMath::DegreesToRadians(Yaw) );
    FVector V = FVector( CP*CY, CP*SY, SP );

    return V;
}
上一篇下一篇

猜你喜欢

热点阅读