AddFloatingCurve Method (Int32, Double, Double, CurveParamType, Boolean)

Creates an AlignmentArc entity defined by a previous entity, radius, a constraint type and value.

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

Syntax

C#

public AlignmentArc AddFloatingCurve(
	int previousEntityId,
	double radius,
	double paramValue,
	CurveParamType paramType,
	bool isClockwise
)

Visual Basic

Public Function AddFloatingCurve ( _
	previousEntityId As Integer, _
	radius As Double, _
	paramValue As Double, _
	paramType As CurveParamType, _
	isClockwise As Boolean _
) As AlignmentArc

Visual C++

public:
AlignmentArc^ AddFloatingCurve(
	int previousEntityId, 
	double radius, 
	double paramValue, 
	CurveParamType paramType, 
	bool isClockwise
)

Parameters

previousEntityId
Type: System.Int32
Previous entity identifier.
radius
Type: System.Double
Radius of the arc entity.
paramValue
Type: System.Double
Specifies the curve's constraint value.
paramType
Type: Autodesk.Civil.DatabaseServices.CurveParamType
Specifies the curve's constraint type.
isClockwise
Type: System.Boolean
Specifies whether arc entity is created clockwise (True) or counter-clockwise (False).

See Also