AddFixedSymmetricParabolaByTwoPointsAndRadius Method (Point2d, Point2d, VerticalCurveType, Double)

Creates a fixed Symmetric Parabola defined by 2 pass-through points and radius.

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

Syntax

C#

public ProfileParabolaSymmetric AddFixedSymmetricParabolaByTwoPointsAndRadius(
	Point2d point1,
	Point2d point2,
	VerticalCurveType curType,
	double radius
)

Visual Basic

Public Function AddFixedSymmetricParabolaByTwoPointsAndRadius ( _
	point1 As Point2d, _
	point2 As Point2d, _
	curType As VerticalCurveType, _
	radius As Double _
) As ProfileParabolaSymmetric

Visual C++

public:
ProfileParabolaSymmetric^ AddFixedSymmetricParabolaByTwoPointsAndRadius(
	Point2d point1, 
	Point2d point2, 
	VerticalCurveType curType, 
	double radius
)

Parameters

point1
Type: Point2d
The first pass-through point.
point2
Type: Point2d
The second pass-through point.
curType
Type: Autodesk.Civil.DatabaseServices.VerticalCurveType
Specifies the vertical curve type, crest or sag.
radius
Type: System.Double
The radius value.

Remarks

Point2d.X and Point2d.Y are the profile's station and elevation respectively.

See Also