AGI STK VGT 11Send comments on this topic.
CreateFixed Method (IAgCrdnAxesCommonTasks)
See Also  Example
ReferenceAxes
Specify a reference axes.
Windows






Windows & Linux

Description

Creates non-persistent fixed axes based on specified axes.

Syntax

[Visual Basic .NET]
Public Function CreateFixed( _
   ByVal ReferenceAxes As IAgCrdnAxes _
) As IAgCrdnAxesFixed
[C#]
public IAgCrdnAxesFixed CreateFixed(
   IAgCrdnAxes ReferenceAxes
);
[Managed C++]
public: IAgCrdnAxesFixed^ CreateFixed(
   IAgCrdnAxes ^ ReferenceAxes
);
[Java]
public IAgCrdnAxesFixed createFixed(
   IAgCrdnAxes ReferenceAxes
);
[Unmanaged C++]
public: HRESULT CreateFixed(
   IAgCrdnAxes * ReferenceAxes,
   IAgCrdnAxesFixed ** ReturnValue
);

Parameters

ReferenceAxes
Specify a reference axes.

Example

Creates a fixed axes based on the specified axes (using common tasks).
[C#]Copy Code
IAgCrdnAxes ecfAxes = provider.WellKnownAxes.Earth.Fixed; 
IAgCrdnAxesFixed axesFixed = provider.Axes.CommonTasks.CreateFixed(ecfAxes); 
 

Creates a fixed axes based on the specified axes (using common tasks).
[Visual Basic .NET]Copy Code
Dim ecfAxes As IAgCrdnAxes = provider.WellKnownAxes.Earth.Fixed
Dim axesFixed As IAgCrdnAxesFixed = provider.Axes.CommonTasks.CreateFixed(ecfAxes)

See Also

© 2019 Analytical Graphics, Inc. All Rights Reserved.