drop the prefix for internal typedefs
This commit is contained in:
@@ -135,8 +135,7 @@ FSGBasicHandModelImpl::FSGBasicHandModelImpl(const bool bRightHanded, const TArr
|
||||
FSGArrayUtils::ToMillimeters<FSGVect3DImpl::FVect3DType, FSGVect3DImpl>(StartPositions)
|
||||
};
|
||||
|
||||
Pimpl->BasicHandModel = FSGBasicHandModelImpl::FBasicHandModelType(bRightHanded, MoveTemp(LengthsVector),
|
||||
MoveTemp(StartPositionsVector));
|
||||
Pimpl->BasicHandModel = FBasicHandModelType(bRightHanded, MoveTemp(LengthsVector), MoveTemp(StartPositionsVector));
|
||||
}
|
||||
|
||||
FSGBasicHandModelImpl::FSGBasicHandModelImpl(const bool bRightHanded, const TArray<TArray<float>>& Lengths,
|
||||
@@ -155,9 +154,8 @@ FSGBasicHandModelImpl::FSGBasicHandModelImpl(const bool bRightHanded, const TArr
|
||||
FSGArrayUtils::ToStdVector<FQuat, FSGQuatImpl::FQuatType, FSGQuatImpl, &FSGQuatImpl::ToQuat>(StartRotations)
|
||||
};
|
||||
|
||||
Pimpl->BasicHandModel = FSGBasicHandModelImpl::FBasicHandModelType(bRightHanded, MoveTemp(LengthsVector),
|
||||
MoveTemp(StartPositionsVector),
|
||||
MoveTemp(StartRotationsVector));
|
||||
Pimpl->BasicHandModel = FBasicHandModelType(bRightHanded, MoveTemp(LengthsVector),
|
||||
MoveTemp(StartPositionsVector), MoveTemp(StartRotationsVector));
|
||||
}
|
||||
|
||||
FSGBasicHandModelImpl::FSGBasicHandModelImpl(const FBasicHandModelType& BasicHandModel)
|
||||
|
||||
Reference in New Issue
Block a user