Creates a fixed Symmetric Parabola defined by 3 pass-through points.

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

Syntax

C#
public ProfileParabolaSymmetric AddFixedSymmetricParabolaByThreePoints(
	Point2d point,
	Point2d point2,
	Point2d point3
)
Visual Basic
Public Function AddFixedSymmetricParabolaByThreePoints ( _
	point As Point2d, _
	point2 As Point2d, _
	point3 As Point2d _
) As ProfileParabolaSymmetric
Visual C++
public:
ProfileParabolaSymmetric^ AddFixedSymmetricParabolaByThreePoints(
	Point2d point, 
	Point2d point2, 
	Point2d point3
)

Parameters

point
Type: Point2d
The first pass-through point.
point2
Type: Point2d
The second pass-through point.
point3
Type: Point2d
The third pass-through point.

Remarks

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

See Also