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

AVL.SurfaceSinglePointsAlongAxis

Returns single array of surface points along X or Y axis.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

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

Parameters

Name Type Range Default Description
inSurfaceAvlNet.SurfaceInput surface.
inAxisAvlNet.AxisAxis along which the points are extracted.
inCoordinateValuedoubleDetermines the coordinate the points will be extracted from.
inSmoothRadiusint<0, INF>Increases the number of neighbouring points taken into account.
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<AvlNet.Point3D>The resulting surface points.

Function Overrides

See also