You are here: Start » AVL.NET » Function Reference » Point3DGrid » Point3DGrid Basics » AVL.SkipEmptyPoint3DGrid

AVL.SkipEmptyPoint3DGrid

If the input Point3DGrid has at least one point defined, then it is copied to the output; otherwise Nil is returned.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void SkipEmptyPoint3DGrid
(
	AvlNet.Point3DGrid inPoint3DGrid,
	INullable<AvlNet.Point3DGrid> outNotEmptyPoint3DGrid,
	out bool outIsNotEmpty
)

Parameters

Name Type Range Default Description
inPoint3DGridAvlNet.Point3DGrid
outNotEmptyPoint3DGridAvlNet.INullable<AvlNet.Point3DGrid>A copy of the input grid, if it is not empty, or Nil otherwise. This parameter cannot be null.
outIsNotEmptyboolIndication if the input grid is not empty.

See also