SoeToXyz Method

Transforms from assembly local station, offset, elevation (SOE) coordinates to world x,y,z coordinates.

Namespace: Autodesk.Civil.Runtime
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.208.0

Syntax

C#

public void SoeToXyz(
	ObjectId alignmentId,
	double station,
	double offset,
	double elevation,
	ref double X,
	ref double Y,
	ref double Z
)

Visual Basic

Public Sub SoeToXyz ( _
	alignmentId As ObjectId, _
	station As Double, _
	offset As Double, _
	elevation As Double, _
	ByRef X As Double, _
	ByRef Y As Double, _
	ByRef Z As Double _
)

Visual C++

public:
void SoeToXyz(
	ObjectId alignmentId, 
	double station, 
	double offset, 
	double elevation, 
	double% X, 
	double% Y, 
	double% Z
)

Parameters

alignmentId
Type: ObjectId
Transform using this alignment.
station
Type: System.Double
Source station.
offset
Type: System.Double
Source offset.
elevation
Type: System.Double
Source elevation.
X
Type: System.Double%
Destination X.
Y
Type: System.Double%
Destination Y.
Z
Type: System.Double%
Destination Z.

See Also