コード例 #1
0
		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();
		}
コード例 #2
0
ファイル: Satellite.cs プロジェクト: kujosHeist/satellitekml
 public Satellite(OrbitTools.Tle tle)
 {
     Orbit o = new Orbit(tle);
 }