Adds standard breaklines to the surface from a collection of 3d points.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.3.1717.0
Syntax
C#
public SurfaceOperationAddBreakline AddStandardBreaklines( Point3dCollection points, double midOrdinateDistance, double maximumDistance, double weedingDistance, double weedingAngle )
Visual Basic
Public Function AddStandardBreaklines ( _ points As Point3dCollection, _ midOrdinateDistance As Double, _ maximumDistance As Double, _ weedingDistance As Double, _ weedingAngle As Double _ ) As SurfaceOperationAddBreakline
Visual C++
public: SurfaceOperationAddBreakline^ AddStandardBreaklines( Point3dCollection^ points, double midOrdinateDistance, double maximumDistance, double weedingDistance, double weedingAngle )
Parameters
- points
- Type: Point3dCollection
A collection of 3d points used to create breaklines.
- midOrdinateDistance
- Type: System.Double
When the breakline is defined from a polyline with curves, the midOrdinateDistance value is used to tessellate the arcs in the polyline.
- maximumDistance
- Type: System.Double
Specifies the maximum distance between vertices. If the distance between vertices on a breakline is greater than the maximumDistance, then points are added along the breakline at equal intervals that are less than or equal to the maximumDistance.
- weedingDistance
- Type: System.Double
The distance value for the weeding factor.
- weedingAngle
- Type: System.Double
The angle value for the weeding factor.
Remarks
- The weeding factors ignore both vertices that are closer together than the distance factor and vertices that deflect less than the angle factor.
- Set a parameter to 0 to ignore it.
Exceptions
Exception | Condition |
---|---|
System.ArgumentException |
Thrown when:
|