Creates PipeCurveGeometry by start point, second point, center point of arc, end Point, and isClockwise flag.

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

Syntax

C#
public PipeCurveGeometry(
	Point3d startPoint,
	Point2d centerPoint,
	Point3d endPoint,
	bool isClockwise
)
Visual Basic
Public Sub New ( _
	startPoint As Point3d, _
	centerPoint As Point2d, _
	endPoint As Point3d, _
	isClockwise As Boolean _
)
Visual C++
public:
PipeCurveGeometry(
	Point3d startPoint, 
	Point2d centerPoint, 
	Point3d endPoint, 
	bool isClockwise
)

Parameters

startPoint
Type: Point3d
centerPoint
Type: Point2d
endPoint
Type: Point3d
isClockwise
Type: System..::..Boolean

Exceptions

ExceptionCondition
System..::..ArgumentException Thrown when the input parameters can't generate an arc on x,y plane.

See Also