STK Vector Geometry ToolSend comments on this topic.
CreateAssembled Method (IAgCrdnSystemCommonTasks)
See Also
OriginPoint
Specify an origin point.
ReferenceAxes
Specify a reference axes.
Windows





Windows & Linux

Description

Creates a non-persistent system component assembled from an origin point and a set of reference axes.

Syntax

[Visual Basic .NET]
Public Function CreateAssembled( _
    ByVal OriginPoint As IAgCrdnPoint, _
    ByVal ReferenceAxes As IAgCrdnAxes _
) As IAgCrdnSystemAssembled
[Managed C++]
public: IAgCrdnSystemAssembled^ CreateAssembled(
    IAgCrdnPoint ^ OriginPoint,
    IAgCrdnAxes ^ ReferenceAxes
);
[Unmanaged C++]
public: HRESULT CreateAssembled(
    IAgCrdnPoint * OriginPoint,
    IAgCrdnAxes * ReferenceAxes,
    IAgCrdnSystemAssembled ** ppRetVal
);
[Python - STK API ]
def CreateAssembled(self, OriginPoint:"IAgCrdnPoint", ReferenceAxes:"IAgCrdnAxes") -> "IAgCrdnSystemAssembled":

Parameters

OriginPoint
Specify an origin point.
ReferenceAxes
Specify a reference axes.

See Also

Example

Creates a system assembled from an origin point and a set of reference axes (using common tasks).
[C#]
IAgCrdnSystemAssembled systemAssembled = provider.Systems.CommonTasks.CreateAssembled(
    ((IAgStkObject)facility).Vgt.Points["Center"], provider.Axes["Fixed"]);
Creates a system assembled from an origin point and a set of reference axes (using common tasks).
[Visual Basic .NET]
Dim systemAssembled As IAgCrdnSystemAssembled = provider.Systems.CommonTasks.CreateAssembled((DirectCast(facility, IAgStkObject)).Vgt.Points("Center"), provider.Axes("Fixed"))
© 2024 Analytical Graphics, Inc. All Rights Reserved.