Esempio n. 1
0
 public static FVec4 Round(FVec4 v)
 {
     return(new FVec4(Fix64.Round(v.x), Fix64.Round(v.y), Fix64.Round(v.z),
                      Fix64.Round(v.w)));
 }