Returns true if the Maximum Cover is violated.

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

Syntax

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

Parameters

maxCover
Type: System..::..Double
Max cover.
pointsViolated
Type: array<Point3d>[]()[][]%
The points which are on pipe and their distances to surface are shorter than maxCover.
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