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.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.3.1717.0
Syntax
C#
public AlignmentArc AddFixedCurve( Point3d passThroughPoint1, Vector3d directionAtPassThroughPoint1, double radius, bool isClockwise )
Visual Basic
Public Function AddFixedCurve ( _ passThroughPoint1 As Point3d, _ directionAtPassThroughPoint1 As Vector3d, _ radius As Double, _ isClockwise As Boolean _ ) As AlignmentArc
Visual C++
public: AlignmentArc^ AddFixedCurve( Point3d passThroughPoint1, Vector3d directionAtPassThroughPoint1, double radius, bool isClockwise )
Parameters
- passThroughPoint1
- Type: Point3d
Passthrough point of the AlignmentArc entity.
- directionAtPassThroughPoint1
- Type: Vector3d
Direction at pass-through point.
- 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).