EpForceDirectedGraph.cs.FDGVector2.Random C# (CSharp) 메소드

Random() 공개 정적인 메소드

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