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

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

Syntax

C#
public void XyzToSoe(
	ObjectId alignmentId,
	double X,
	double Y,
	double Z,
	ref double station,
	ref double offset,
	ref double elevation
)
Visual Basic
Public Sub XyzToSoe ( _
	alignmentId As ObjectId, _
	X As Double, _
	Y As Double, _
	Z As Double, _
	ByRef station As Double, _
	ByRef offset As Double, _
	ByRef elevation As Double _
)
Visual C++
public:
void XyzToSoe(
	ObjectId alignmentId, 
	double X, 
	double Y, 
	double Z, 
	double% station, 
	double% offset, 
	double% elevation
)

Parameters

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

See Also