Returns true if the Minimum Cover is violated.

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

Syntax

C#
public bool IsMinCoverViolated(
	double minCover,
	ref Point3d[] pointsViolated,
	ref double[] differences,
	ref double[] params
)
Visual Basic
Public Function IsMinCoverViolated ( _
	minCover As Double, _
	ByRef pointsViolated As Point3d(), _
	ByRef differences As Double(), _
	ByRef params As Double() _
) As Boolean
Visual C++
public:
bool IsMinCoverViolated(
	double minCover, 
	array<Point3d>^% pointsViolated, 
	array<double>^% differences, 
	array<double>^% params
)

Parameters

minCover
Type: System..::..Double
Min cover.
pointsViolated
Type: array<Point3d>[]()[][]%
The points which are on pipe and their distances to surface are shorter than minCover.
differences
Type: array<System..::..Double>[]()[][]%
The distances of pointsViolated to surface.
params
Type: array<System..::..Double>[]()[][]%
The scales of pointsViolated on the pipe.

See Also