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

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

Syntax

C#
public ProfileParabolaSymmetric AddFixedSymmetricParabolaByTwoPointsAndK(
	Point2d point1,
	Point2d point2,
	VerticalCurveType curveType,
	double k
)
Visual Basic
Public Function AddFixedSymmetricParabolaByTwoPointsAndK ( _
	point1 As Point2d, _
	point2 As Point2d, _
	curveType As VerticalCurveType, _
	k As Double _
) As ProfileParabolaSymmetric
Visual C++
public:
ProfileParabolaSymmetric^ AddFixedSymmetricParabolaByTwoPointsAndK(
	Point2d point1, 
	Point2d point2, 
	VerticalCurveType curveType, 
	double k
)

Parameters

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

Remarks

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

See Also