You are here: Start » FIL.NET » Invoke.SurfaceSinglePointsAlongAxis

Invoke.SurfaceSinglePointsAlongAxis

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

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void SurfaceSinglePointsAlongAxis
(
	Fil.Surface inSurface,
	Optional<Fil.Surface> inSurface2,
	Fil.Axis inAxis,
	double inCoordinateValue,
	int inSmoothRadius,
	Optional<double> inMinOutputCoordinate,
	Optional<double> inMaxOutputCoordinate,
	Optional<int> inMaxInterpolationLength,
	List<Fil.Point3D> outPoints,
	Optional<double> outCoordinateValue
)

Parameters

Name Type Range Default Description
inSurfaceFil.SurfaceInput surface.
inSurface2Ftl.Optional<Fil.Surface>Optional second input surface. Default value: ftl::NIL.
inAxisFil.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.
inMinOutputCoordinateFtl.Optional<double>Minimal second coordinate of the output points. Default value: ftl::NIL.
inMaxOutputCoordinateFtl.Optional<double>Maximal second coordinate of the output points. Default value: ftl::NIL.
inMaxInterpolationLengthFtl.Optional<int><0, INF>0Maximal number of consecutive not existing points to be interpolated. Default value: 0.
outPointsSystem.Collections.Generic.List<Fil.Point3D>The resulting surface points.
outCoordinateValueFtl.Optional<double>The coordinate the output points were extracted from.

See also