AddFixedCurve Method (Int32, Point3d, Point3d, Point3d)

Creates an AlignmentArc entity defined by a start point, middle point, and end point.

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

Syntax

C#

public AlignmentArc AddFixedCurve(
	int previousEntityId,
	Point3d startPoint,
	Point3d middlePoint,
	Point3d endPoint
)

Visual Basic

Public Function AddFixedCurve ( _
	previousEntityId As Integer, _
	startPoint As Point3d, _
	middlePoint As Point3d, _
	endPoint As Point3d _
) As AlignmentArc

Visual C++

public:
AlignmentArc^ AddFixedCurve(
	int previousEntityId, 
	Point3d startPoint, 
	Point3d middlePoint, 
	Point3d endPoint
)

Parameters

previousEntityId
Type: System.Int32
Previous entity identifier.
startPoint
Type: Point3d
Start point of the AlignmentArc entity.
middlePoint
Type: Point3d
Middle point of the AlignmentArc entity.
endPoint
Type: Point3d
End point of the AlignmentArc entity.

Remarks

If possible, connect to the previous entity.

See Also