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

FIL.SurfaceMultiplePointsAlongAxis

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

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

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

Parameters

Name Type Range Default Description
inSurfaceFilNet.SurfaceInput surface.
inAxisFilNet.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: ftl::NIL.
inMaxOutputCoordinatedouble?Maximal second coordinate of the output points. Default value: ftl::NIL.
outPointsSystem.Collections.Generic.IList<System.Collections.Generic.List<FilNet.Point3D>>The resulting surface points.

Function Overrides

See also