You are here: Start » AVL.NET » Function Reference » Surface » Surface Features » AVL.SurfaceMultiplePointsAlongAxis

AVL.SurfaceMultiplePointsAlongAxis

Returns multiple arrays of surface points along X or Y axis.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void SurfaceMultiplePointsAlongAxis
(
	AvlNet.Surface inSurface,
	AvlNet.Axis inAxis,
	int inSmoothRadius,
	double? inMinOutputCoordinate,
	double? inMaxOutputCoordinate,
	IList<List<AvlNet.Point3D>> outPoints
)

Parameters

Name Type Range Default Description
inSurfaceAvlNet.SurfaceInput surface.
inAxisAvlNet.AxisAxis along which the points are extracted.
inSmoothRadiusint<0, INF>Increases the number of neighbouring points taken into account extracting a single row of points.
inMinOutputCoordinatedouble?Minimal second coordinate of the output points. Default value: atl::NIL.
inMaxOutputCoordinatedouble?Maximal second coordinate of the output points. Default value: atl::NIL.
outPointsSystem.Collections.Generic.IList<System.Collections.Generic.List<AvlNet.Point3D>>The resulting surface points.

Function Overrides

See also