本文整理汇总了C++中FVector::Length方法的典型用法代码示例。如果您正苦于以下问题:C++ FVector::Length方法的具体用法?C++ FVector::Length怎么用?C++ FVector::Length使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FVector
的用法示例。
在下文中一共展示了FVector::Length方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: SetupMatrix
static Vector SetupMatrix( const FVector& x, const FVector& y, const FVector& Y )
{
if ( x.Length() != 3 || y.Length() != 3 || Y.Length() != 3 )
throw Error( "Invalid vector length in RGB working color space initialization." );
if ( 1 + x[0] == 1 || 1 + x[1] == 1 || 1 + x[2] == 1 ||
1 + y[0] == 1 || 1 + y[1] == 1 || 1 + y[2] == 1 )
throw Error( "Invalid chromaticity coordinates in RGB working color space initialization." );
if ( 1 + Y.Sum() == 1 )
throw Error( "Invalid luminance coefficients in RGB working color space initialization." );
Vector M( 9 );
M11 = Y[0]*x[0]/y[0];
M12 = Y[1]*x[1]/y[1];
M13 = Y[2]*x[2]/y[2];
M21 = Y[0];
M22 = Y[1];
M23 = Y[2];
M31 = Y[0]*(1 - x[0] - y[0])/y[0];
M32 = Y[1]*(1 - x[1] - y[1])/y[1];
M33 = Y[2]*(1 - x[2] - y[2])/y[2];
return M;
}