Exemple #1
0
        public StarNamesList(StarGrids sg, FormMap _fm, GLControl gl)
        {
            _stargrids = sg;
            _formmap   = _fm;
            _glControl = gl;

            _starnames = new Dictionary <Vector3, StarNames>();
        }
Exemple #2
0
        public StarNamesList(StarGrids sg, FormMap _fm, GLControl gl)
        {
            _stargrids = sg;
            _formmap   = _fm;
            _glControl = gl;

            _starnamesbackground   = new Dictionary <Vector3, StarNames>();
            _starnamestoforeground = new List <StarNames>();
            _starnamesforeground   = new LinkedList <StarNames>();
        }
 private void toolStripButtonMap_Click(object sender, EventArgs e)
 {
     var centerSystem = TargetSystem;
     if (centerSystem == null || !centerSystem.HasCoordinate) centerSystem = LastKnownSystem;
     var map2 = new FormMap(centerSystem, _discoveryForm.SystemNames)
     {
         ReferenceSystems = CurrentReferenceSystems.ToList(),
         visitedSystems = _discoveryForm.visitedSystems
     };
     map2.Show();
 }
        private void button2_Click(object sender, EventArgs e)
        {
            EDSCClass edsc = new EDSCClass();

            //string json = edsc.SubmitDistances("Finwen", "19 Geminorum", "HIP 30687", (float)19.26);

            FormMap map2 = new FormMap();
            map2.visitedSystems = visitedSystems;
            map2.Show();
        }
 private void button2_Click(object sender, EventArgs e)
 {
     var map2 = new FormMap(_discoveryForm.SystemNames);
     map2.visitedSystems = visitedSystems;
     map2.Show();
 }