⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 globalvars.java

📁 Dijkstra algorithm in Java.
💻 JAVA
字号:
/*
 * GlobalVars.java
 *
 * Created on June 2, 2007, 1:18 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package termproject_dijkstra;

/**
 *
 * @author Peto
 */
public class GlobalVars {
    
    public static final int iINFINITY = 2000000000;  
    public static final int nodeRad = 30;
    public static final int edgeDirRad =7;
    public static final int nodeOffset[] = {120,120};
    public static final int frameDim[] = {800,500};
    public static final boolean bConstCanvasSize = true;    // Whether is canvas resizing with window - it's better not to, 
                                                            // so we can extend window to see more nodes
    public static boolean bDrawOnlyPaths=false;
    
    
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -