Creates PipeCurveGeometry by start point, end Point, and direction of tangent on end point.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.5.1584.0
Syntax
| C# |
|---|
public PipeCurveGeometry(
Point3d startPoint,
Point3d endPoint,
Vector2d endDirection
) |
| Visual Basic |
|---|
Public Sub New ( _
startPoint As Point3d, _
endPoint As Point3d, _
endDirection As Vector2d _
) |
| Visual C++ |
|---|
public:
PipeCurveGeometry(
Point3d startPoint,
Point3d endPoint,
Vector2d endDirection
) |
Parameters
- startPoint
- Type: Point3d
- endPoint
- Type: Point3d
- endDirection
- Type: Vector2d
Exceptions
| Exception | Condition |
|---|
| System..::..ArgumentException |
Thrown when the input parameters can't generate an arc on x,y plane.
|
See Also