Creates an AlignmentArc entity defined by a next entity, radius, a constraint type and value.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0
Syntax
C# |
---|
public AlignmentArc AddFloatingCurve(
double radius,
double paramValue,
CurveParamType paramType,
bool isClockwise,
int nextEntityId
) |
Visual Basic |
---|
Public Function AddFloatingCurve ( _
radius As Double, _
paramValue As Double, _
paramType As CurveParamType, _
isClockwise As Boolean, _
nextEntityId As Integer _
) As AlignmentArc |
Visual C++ |
---|
public:
AlignmentArc^ AddFloatingCurve(
double radius,
double paramValue,
CurveParamType paramType,
bool isClockwise,
int nextEntityId
) |
Parameters
- 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).
- nextEntityId
- Type: System..::..Int32
identifier of the next entity (after the floating arc).
See Also