EpForceDirectedGraph.cs.FDGVector2.Random C# (CSharp) Method

Random() public static method

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