You are here: Start » FIL.NET » Function Reference » Surface » Surface Spatial Transforms » FIL.CropSurfaceToBox3D

FIL.CropSurfaceToBox3D

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

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void CropSurfaceToBox3D
(
	FilNet.Surface inSurface,
	NullableRef<FilNet.Region> inRoi,
	FilNet.Box3D inBox3D,
	bool inPreserveDimensions,
	FilNet.Surface outSurface,
	NullableRef<FilNet.Region> outRejected
)

Parameters

Name Type Range Default Description
inSurfaceFilNet.SurfaceInput surface.
inRoiFilNet.NullableRef<FilNet.Region>Region of interest. Default value: ftl::NIL.
inBox3DFilNet.Box3DBox defining a subspace to be cropped.
inPreserveDimensionsboolFalseFlag indicating whether the surface dimensions should be preserved or not. Default value: False.
outSurfaceFilNet.SurfaceOutput surface.
outRejectedFilNet.NullableRef<FilNet.Region>Region of locations where points are not contained in a given box in 3D. Can be null to skip this parameter calculation.

Errors

List of possible exceptions:

Error type Description
DomainError Region of interest exceeds an input surface in CropSurfaceToBox3D.

Function Overrides

See also