Create instances of BoundingSphere.
[Visual Basic .NET] |
---|
Public Function Initialize( _ ByVal Center As System.Array, _ ByVal Radius As Double _ ) As IAgStkGraphicsBoundingSphere |
[C#] |
---|
public IAgStkGraphicsBoundingSphere Initialize( System.Array Center, double Radius ); |
[Managed C++] |
---|
public: IAgStkGraphicsBoundingSphere^ Initialize( System::Array ^ Center, double Radius ); |
[Unmanaged C++] |
---|
public: HRESULT Initialize( SAFEARRAY * * Center, double Radius, IAgStkGraphicsBoundingSphere ** ppRetVal ); |
[Java] |
---|
public IAgStkGraphicsBoundingSphere initialize( AgSafeArray Center, double Radius ); |
[Python - STK API ] |
---|
def Initialize(self, Center:list, Radius:float) -> "IAgStkGraphicsBoundingSphere": |
- Center
- Specify a center of bounding sphere as a one-dimensional array with three elements corresponding to the (X,Y,Z) cartesian coordiantes.
- Radius
- Specify a radius of bounding sphere.
Shows the format of the Center parameter when creating a bounding sphere.
[C#] | ||
---|---|---|
|
Shows the format of the Center parameter when creating a bounding sphere.
[Visual Basic .NET] | ||
---|---|---|
|