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#
[ObsoleteAttribute("Use the overload method which takes Point2d as parameter(s).", 
	false)]
public ProfileParabolaSymmetric AddFixedSymmetricParabolaByTwoPointsAndK(
	Point3d point1,
	Point3d point2,
	VerticalCurveType curveType,
	double k
)
Visual Basic
<ObsoleteAttribute("Use the overload method which takes Point2d as parameter(s).",  _
	False)> _
Public Function AddFixedSymmetricParabolaByTwoPointsAndK ( _
	point1 As Point3d, _
	point2 As Point3d, _
	curveType As VerticalCurveType, _
	k As Double _
) As ProfileParabolaSymmetric
Visual C++
public:
[ObsoleteAttribute(L"Use the overload method which takes Point2d as parameter(s).", 
	false)]
ProfileParabolaSymmetric^ AddFixedSymmetricParabolaByTwoPointsAndK(
	Point3d point1, 
	Point3d point2, 
	VerticalCurveType curveType, 
	double k
)

Parameters

point1
Type: Point3d
The first pass-through point.
point2
Type: Point3d
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.

See Also