Creates an AlignmentArc entity defined by an initial pass-through point, a second pass-through point, the radius, a boolean specifying whether the curve direction is clockwise and a boolean specifying whether the AlignmentArc entity is greater than 180 degrees.

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

Syntax

C#
public AlignmentArc AddFixedCurve(
	int previousEntityId,
	Point3d passThroughPoint1,
	Point3d passThroughPoint2,
	double radius,
	bool isClockwise,
	bool isGreaterThan180
)
Visual Basic
Public Function AddFixedCurve ( _
	previousEntityId As Integer, _
	passThroughPoint1 As Point3d, _
	passThroughPoint2 As Point3d, _
	radius As Double, _
	isClockwise As Boolean, _
	isGreaterThan180 As Boolean _
) As AlignmentArc
Visual C++
public:
AlignmentArc^ AddFixedCurve(
	int previousEntityId, 
	Point3d passThroughPoint1, 
	Point3d passThroughPoint2, 
	double radius, 
	bool isClockwise, 
	bool isGreaterThan180
)

Parameters

previousEntityId
Type: System..::..Int32
Previous entity identifier.
passThroughPoint1
Type: Point3d
First pass-through point of the AlignmentArc entity (point #1).
passThroughPoint2
Type: Point3d
Second pass-through point of the AlignmentArc entity (point #2).
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).
isGreaterThan180
Type: System..::..Boolean
Specifies whether the AlignmentArc entity is greater than 180 degrees.

See Also