STK Vector Geometry ToolSend comments on this topic.
CreateFixedInSystemCartesian Method (IAgCrdnPointCommonTasks)
See Also
ReferenceSystem
X
Y
Z
Windows






Windows & Linux

Description

Creates a non-persistent point fixed in a specified reference system.

Syntax

[Visual Basic .NET]
Public Function CreateFixedInSystemCartesian( _
    ByVal ReferenceSystem As IAgCrdnSystem, _
    ByVal X As Double, _
    ByVal Y As Double, _
    ByVal Z As Double _
) As 
[C#]
public IAgCrdnPointFixedInSystem CreateFixedInSystemCartesian(
    IAgCrdnSystem ReferenceSystem,
    double X,
    double Y,
    double Z
);
[Managed C++]
public: IAgCrdnPointFixedInSystem^ CreateFixedInSystemCartesian(
    IAgCrdnSystem ^ ReferenceSystem,
    double X,
    double Y,
    double Z
);
[Java]
public IAgCrdnPointFixedInSystem createFixedInSystemCartesian(
    IAgCrdnSystem ReferenceSystem,
    double X,
    double Y,
    double Z
);
[Unmanaged C++]
public: HRESULT CreateFixedInSystemCartesian(
    IAgCrdnSystem * ReferenceSystem,
    double X,
    double Y,
    double Z,
    IAgCrdnPointFixedInSystem ** ppRetVal
);

Parameters

ReferenceSystem
X
Y
Z

See Also

Example

Create a non-persistent point fixed in a specified reference frame given Cartesian data (using common tasks).
[C#]
double X, Y, Z;
facility.Position.QueryCartesian(out X, out Y, out Z);
IAgCrdnPointFixedInSystem origin = provider.Points.CommonTasks.CreateFixedInSystemCartesian(
    provider.Systems["Fixed"], X, Y, Z);
Create a non-persistent point fixed in a specified reference frame given Cartesian data (using common tasks).
[Visual Basic .NET]
Dim X As Double, Y As Double, Z As Double
facility.Position.QueryCartesian(X, Y, Z)
Dim origin As IAgCrdnPointFixedInSystem = provider.Points.CommonTasks.CreateFixedInSystemCartesian(provider.Systems("Fixed"), X, Y, Z)
© 2020 Analytical Graphics, Inc. All Rights Reserved.