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

Parameters

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

See Also