Description
Bias - the value by which to adjust the centering of the burn. A positive value will center the burn after the previous segment ends by the amount specified in the Burn Center Bias field. The bias may range from minus the duration value to positive half of the duration value. Uses Time Dimension.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Bias() As Double
|
[C#] |
---|
public double Bias {get; set;}
|
[Managed C++] |
---|
public: __property double get_Bias(); public: __property void set_Bias(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Bias(
double * pVal
);
public: HRESULT put_Bias(
double newVal
);
|
[Java] |
---|
public double getBias();
public void setBias(
double
);
|
[Python - STK API] |
---|
@property
def Bias(self) -> float:
@Bias.setter
def Bias(self, newVal:float) -> None:
|
See Also