AGI STK VGT 11 Send comments on this topic.
IAgCrdnSystemAssembled Interface





Description

A system assembled from an origin point and a set of reference axes.

Object Model



Public Properties

Public Property OriginPoint Specify a point of origin.
Public Property ReferenceAxes Specify a reference axes.

Example

Create a system assembled from a point serving as its origin and a set of reference axes.
[C#] Copy Code
IAgCrdnSystemAssembled system = (IAgCrdnSystemAssembled)provider.Systems.Factory.Create( 
    "SystemName"string.Empty, AgECrdnSystemType.eCrdnSystemTypeAssembled); 
// Set the system's origin point. 
system.OriginPoint.SetPoint(OriginPoint); 
// Set the system's reference axes. 
system.ReferenceAxes.SetAxes(ReferenceAxes); 
 

Create a system assembled from a point serving as its origin and a set of reference axes.
[Visual Basic .NET] Copy Code
Dim system As IAgCrdnSystemAssembled = DirectCast(provider.Systems.Factory.Create("SystemName", String.Empty, AgECrdnSystemType.eCrdnSystemTypeAssembled), IAgCrdnSystemAssembled)
' Set the system's origin point.
system.OriginPoint.SetPoint(OriginPoint)
' Set the system's reference axes.
system.ReferenceAxes.SetAxes(ReferenceAxes)

CoClasses that Implement IAgCrdnSystemAssembled

© 2016 All Rights Reserved.

STK Programming Interface 11.0.1