示例#1
0
文件: FVec4.cs 项目: niuniuzhu/RC
 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)));
 }