Random() public static method

public static Random ( ) : float
return float
 public static AbstractVector Random()
 {
     return(new FDGVector3(10.0f * (Util.Random() - 0.5f), 10.0f * (Util.Random() - 0.5f), 10.0f * (Util.Random() - 0.5f)));
 }
        public static AbstractVector Random()
        {
            FDGVector2 retVec = new FDGVector2(10.0f * (Util.Random() - 0.5f), 10.0f * (Util.Random() - 0.5f));

            return(retVec);
        }