Ejemplo n.º 1
0
 public static FVec4 Pow(FVec4 v, Fix64 power)
 {
     return(new FVec4(Fix64.Pow(v.x, power), Fix64.Pow(v.y, power),
                      Fix64.Pow(v.z, power), Fix64.Pow(v.w, power)));
 }