AddFreeSymmetricParabolaByRadius Method

Creates a free Symmetric Parabola between two entities and the radius value.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.3.1717.0

Syntax

C#

public ProfileParabolaSymmetric AddFreeSymmetricParabolaByRadius(
	uint previousEntityId,
	uint nextEntityId,
	VerticalCurveType curveType,
	double radius
)

Visual Basic

Public Function AddFreeSymmetricParabolaByRadius ( _
	previousEntityId As UInteger, _
	nextEntityId As UInteger, _
	curveType As VerticalCurveType, _
	radius As Double _
) As ProfileParabolaSymmetric

Visual C++

public:
ProfileParabolaSymmetric^ AddFreeSymmetricParabolaByRadius(
	unsigned int previousEntityId, 
	unsigned int nextEntityId, 
	VerticalCurveType curveType, 
	double radius
)

Parameters

previousEntityId
Type: System.UInt32
The previous entity to attach to.
nextEntityId
Type: System.UInt32
The next entity to attach to.
curveType
Type: Autodesk.Civil.DatabaseServices.VerticalCurveType
The vertical curve type, crest or sag.
radius
Type: System.Double
The radius value.

Remarks

The parameter curveType is applicable when the parabola is added between two ProfileParabolaSymmetric entities.

See Also