AddFixedCurve Method (Point3d, Double, Boolean)

Creates an AlignmentArc entity defined by a center point, radius, and boolean value that specifies whether the direction is clockwise.

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

Syntax

C#

public AlignmentArc AddFixedCurve(
	Point3d centerPoint,
	double radius,
	bool isClockwise
)

Visual Basic

Public Function AddFixedCurve ( _
	centerPoint As Point3d, _
	radius As Double, _
	isClockwise As Boolean _
) As AlignmentArc

Visual C++

public:
AlignmentArc^ AddFixedCurve(
	Point3d centerPoint, 
	double radius, 
	bool isClockwise
)

Parameters

centerPoint
Type: Point3d
Center point of the AlignmentArc entity.
radius
Type: System.Double
Radius of the AlignmentArc entity.
isClockwise
Type: System.Boolean
Specifies whether the AlignmentArc entity is created clockwise (True) or counter-clockwise (False).

See Also