コード例 #1
0
ファイル: MapInfoManager.cs プロジェクト: muhoor/MyDemo
 public static MapInfoManager getInstance()
 {
     if(instance == null)
     {
         instance = new MapInfoManager();
     }
     return instance;
 }
コード例 #2
0
ファイル: MapViewForm.cs プロジェクト: dtbinh/SVNBackup
 public MapViewForm()
 {
     infoMgr  = new MapInfoManager();
     paramMgr = new ParamMgr();
     planMode = PathPlanMode.MIN_DIST;
     InitializeComponent();
     currentPath = null;
     pathMgr     = null;
 }
コード例 #3
0
ファイル: MapViewerForm.cs プロジェクト: dtbinh/SVNBackup
        public MapViewerForm()
        {
            InitializeComponent();
            this.toolbarForm.parentForm = this;
            this.formState = FormState.NORMAL;

            infoMgr = new MapInfoManager();

            this.pixelMap = null;
        }
コード例 #4
0
ファイル: MapViewForm.cs プロジェクト: dtbinh/SVNBackup
        public MapViewForm()
        {
            infoMgr  = new MapInfoManager();
            paramMgr = new ParamMgr();
            appMode  = AppMode.PLANNING;
            planMode = PathPlanMode.MIN_DIST;
            InitializeComponent();
            currentPath = null;
            pathMgr     = null;
            map         = null;

            workingPath  = null;
            mapFilepath  = null;
            dataFilepath = null;
        }