Description
The distance from the center of mass of the central body to its surface, i.e., approximately the radius of the central body. Typically defaults to the Maximum Radius entered in the Shape frame of the Central Body parameters window. Uses Distance Dimension.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property RefDistance() As Double
|
[C#] |
---|
public double RefDistance {get; set;}
|
[Managed C++] |
---|
public: __property double get_RefDistance(); public: __property void set_RefDistance(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_RefDistance(
double * pVal
);
public: HRESULT put_RefDistance(
double newVal
);
|
[Java] |
---|
public double getRefDistance();
public void setRefDistance(
double
);
|
[Python - STK API] |
---|
@property
def RefDistance(self) -> float:
@RefDistance.setter
def RefDistance(self, newVal:float) -> None:
|
See Also