Share

AlignmentEntityCollection.AddFixedCurve(Point3d, Vector3d, Double, Boolean) Method

Creates an AlignmentArc entity defined by an initial pass-through point, a direction at the second pass-through point, the radius, and a boolean indicating whether the curve direction is clockwise.



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

Syntax

C#

public AlignmentArc AddFixedCurve(
	Point3d passThroughPoint1,
	Vector3d directionAtPassThroughPoint1,
	double radius,
	bool isClockwise
)

VB

Public Function AddFixedCurve ( 
	passThroughPoint1 As Point3d,
	directionAtPassThroughPoint1 As Vector3d,
	radius As Double,
	isClockwise As Boolean
) As AlignmentArc

C++

public:
AlignmentArc^ AddFixedCurve(
	Point3d passThroughPoint1, 
	Vector3d directionAtPassThroughPoint1, 
	double radius, 
	bool isClockwise
)

Parameters

passThroughPoint1  Point3d
Passthrough point of the AlignmentArc entity.
directionAtPassThroughPoint1  Vector3d
Direction at pass-through point.
radius  Double
Radius of the AlignmentArc entity.
isClockwise  Boolean
Specifies whether the AlignmentArc entity is created clockwise (True) or counter-clockwise (False).

Return Value

AlignmentArc

See Also

Reference

Was this information helpful?