Creates a fixed Tangent defined by 2 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 ProfileTangent AddFixedTangent(
	Point3d startPoint,
	Point3d endPoint
)
Visual Basic
<ObsoleteAttribute("Use the overload method which takes Point2d as parameter(s).",  _
	False)> _
Public Function AddFixedTangent ( _
	startPoint As Point3d, _
	endPoint As Point3d _
) As ProfileTangent
Visual C++
public:
[ObsoleteAttribute(L"Use the overload method which takes Point2d as parameter(s).", 
	false)]
ProfileTangent^ AddFixedTangent(
	Point3d startPoint, 
	Point3d endPoint
)

Parameters

startPoint
Type: Point3d
The first pass-through point.
endPoint
Type: Point3d
The second pass-through point.

See Also