You are here: Start » AVL.NET » AVL.CropSurface

AVL.CropSurface

Removes from the surface points that are not contained in a given rectangular box.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void CropSurface
(
	AvlNet.Surface inSurface,
	AvlNet.Region inRoi,
	double? inMinX,
	double? inMaxX,
	double? inMinY,
	double? inMaxY,
	double? inMinZ,
	double? inMaxZ,
	bool inPreserveDimensions,
	out AvlNet.Surface outSurface,
	out AvlNet.Region outRejected
)

Parameters

Name Type Range Default Description
inSurfaceAvlNet.SurfaceInput surface.
inRoiAvlNet.RegionRegion of interest. Default value: atl::NIL, or null.
inMinXdouble?
inMaxXdouble?
inMinYdouble?
inMaxYdouble?
inMinZdouble?
inMaxZdouble?
inPreserveDimensionsboolFalseFlag indicating whether the surface dimensions should be preserved or not. Default value: False.
outSurfaceAvlNet.SurfaceOutput surface.
outRejectedAvlNet.RegionRegion of locations where points are not contained in a given rectangular box

See also