Creates a fixed Symmetric Parabola defined by 2 pass-through points and the grade at the start point.

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

Syntax

C#
public ProfileParabolaSymmetric AddFixedSymmetricParabolaByTwoPointsAndStartGrade(
	Point2d point1,
	Point2d point2,
	double startGrade
)
Visual Basic
Public Function AddFixedSymmetricParabolaByTwoPointsAndStartGrade ( _
	point1 As Point2d, _
	point2 As Point2d, _
	startGrade As Double _
) As ProfileParabolaSymmetric
Visual C++
public:
ProfileParabolaSymmetric^ AddFixedSymmetricParabolaByTwoPointsAndStartGrade(
	Point2d point1, 
	Point2d point2, 
	double startGrade
)

Parameters

point1
Type: Point2d
The first pass-through point.
point2
Type: Point2d
The second pass-through point.
startGrade
Type: System..::..Double
The grade at the start point.

Remarks

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

See Also