STK Vector Geometry ToolSend comments on this topic.
IAgCrdnSystemAssembled Interface

Description

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

Public Properties

Public Property OriginPointSpecify a point of origin.
Public Property ReferenceAxesSpecify a reference axes.

Interfaces

CoClasses that Implement IAgCrdnSystemAssembled

Example

Create a system assembled from a point serving as its origin and a set of reference axes.
[C#]
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]
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)
© 2024 Analytical Graphics, Inc. All Rights Reserved.