fix cmake error (part)

This commit is contained in:
2023-09-24 23:27:20 +08:00
parent b2d0b743cb
commit 8083633a7b
4 changed files with 72 additions and 7 deletions

View File

@ -129,15 +129,15 @@ namespace LibCmo::VxMath {
namespace NSVxVector {
float LibCmo::VxMath::NSVxVector::DotProduct(const VxVector2& lhs, const VxVector2& rhs) {
float DotProduct(const VxVector2& lhs, const VxVector2& rhs) {
return lhs * rhs;
}
float LibCmo::VxMath::NSVxVector::DotProduct(const VxVector3& lhs, const VxVector3& rhs) {
float DotProduct(const VxVector3& lhs, const VxVector3& rhs) {
return lhs * rhs;
}
float LibCmo::VxMath::NSVxVector::DotProduct(const VxVector4& lhs, const VxVector4& rhs) {
float DotProduct(const VxVector4& lhs, const VxVector4& rhs) {
return lhs * rhs;
}