コード例 #1
0
ファイル: VesselTarget.cs プロジェクト: jonored/KOS
 public override Vector GetPosition()
 {
     return(new Vector(Vessel.findWorldCenterOfMass() - CurrentVessel.findWorldCenterOfMass()));
 }
コード例 #2
0
ファイル: VesselTarget.cs プロジェクト: jonored/KOS
 // TODO: We will need to replace with the same thing Orbitable:DISTANCE does
 // in order to implement the orbit solver later.
 public ScalarValue GetDistance()
 {
     return(Vector3d.Distance(CurrentVessel.findWorldCenterOfMass(), Vessel.findWorldCenterOfMass()));
 }