public SatelliteTrack( string meshFilePath, OrbitTools.Tle tle ) : base(tle.Name)
		{
			this.meshFilePath = meshFilePath;
			this.RenderPriority = RenderPriority.Icons;
			this.TwoLineElement = tle;
			LayerName = this.TwoLineElement.Name;
			m_orbitColor = Color.FromArgb(m_opacity,255,255,22).ToArgb();
		}
Esempio n. 2
0
 public Satellite(OrbitTools.Tle tle)
 {
     Orbit o = new Orbit(tle);
 }