Description
One-half the distance along the long axis of the elliptical orbit. Uses Distance Dimension.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property SemiMajorAxis() As Double
|
[C#] |
---|
public double SemiMajorAxis {get; set;}
|
[Managed C++] |
---|
public: __property double get_SemiMajorAxis(); public: __property void set_SemiMajorAxis(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_SemiMajorAxis(
double * pVal
);
public: HRESULT put_SemiMajorAxis(
double newVal
);
|
[Java] |
---|
public double getSemiMajorAxis();
public void setSemiMajorAxis(
double
);
|
[Python - STK API] |
---|
@property
def SemiMajorAxis(self) -> float:
@SemiMajorAxis.setter
def SemiMajorAxis(self, newVal:float) -> None:
|
See Also