You are here: Start » AVL.NET » AVS.SurfaceMultiplePointsAlongAxis Method

AVS.SurfaceMultiplePointsAlongAxis Method

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

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void SurfaceMultiplePointsAlongAxis
(
	AvlNet.Surface inSurface,
	NullableRef<AvlNet.Surface> inSurface2,
	AvlNet.Axis inAxis,
	double? inCoordinateValueStart,
	double? inCoordinateValueEnd,
	double? inCoordinateValueStep,
	int inSmoothRadius,
	double? inMinOutputCoordinate,
	double? inMaxOutputCoordinate,
	int? inMaxInterpolationLength,
	IList<List<AvlNet.Point3D>> outPoints
)

Parameters

Name Type Range Default Description
inSurfaceAvlNet.SurfaceInput surface.
inSurface2AvlNet.NullableRef<AvlNet.Surface>Optional second input surface. Default value: atl::NIL.
inAxisAvlNet.AxisAxis along which the points are extracted.
inCoordinateValueStartdouble?Determines the coordinate the first row of points will be extracted from. Default value: atl::NIL.
inCoordinateValueEnddouble?Limits the coordinate the last row of points will be extracted from. Default value: atl::NIL.
inCoordinateValueStepdouble?<0, INF>Determines the distance between consecutive extracted row of points. Default value: atl::NIL.
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.
inMaxInterpolationLengthint?<0, INF>0Maximal number of consecutive not existing points to be interpolated. Default value: 0.
outPointsSystem.Collections.Generic.IList<System.Collections.Generic.List<AvlNet.Point3D>>The resulting surface points.

Function Overrides

See also