You are here: Start » FIL.NET » Invoke.SurfaceMultiplePointsAlongAxis
Returns multiple arrays of surface points along X or Y axis.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void SurfaceMultiplePointsAlongAxis ( Fil.Surface inSurface, Optional<Fil.Surface> inSurface2, Fil.Axis inAxis, Optional<double> inCoordinateValueStart, Optional<double> inCoordinateValueEnd, Optional<double> inCoordinateValueStep, int inSmoothRadius, Optional<double> inMinOutputCoordinate, Optional<double> inMaxOutputCoordinate, Optional<int> inMaxInterpolationLength, List<List<Fil.Point3D>> outPoints, Optional<List<double>> outCoordinateValues )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inSurface | Fil.Surface | Input surface. | ||
![]() | inSurface2 | Ftl.Optional<Fil.Surface> | Optional second input surface. Default value: ftl::NIL. | ||
![]() | inAxis | Fil.Axis | Axis along which the points are extracted. | ||
![]() | inCoordinateValueStart | Ftl.Optional<double> | Determines the coordinate the first row of points will be extracted from. Default value: ftl::NIL. | ||
![]() | inCoordinateValueEnd | Ftl.Optional<double> | Limits the coordinate the last row of points will be extracted from. Default value: ftl::NIL. | ||
![]() | inCoordinateValueStep | Ftl.Optional<double> | <0, INF> | Determines the distance between consecutive extracted row of points. Default value: ftl::NIL. | |
![]() | inSmoothRadius | int | <0, INF> | Increases the number of neighbouring points taken into account extracting a single row of points. | |
![]() | inMinOutputCoordinate | Ftl.Optional<double> | Minimal second coordinate of the output points. Default value: ftl::NIL. | ||
![]() | inMaxOutputCoordinate | Ftl.Optional<double> | Maximal second coordinate of the output points. Default value: ftl::NIL. | ||
![]() | inMaxInterpolationLength | Ftl.Optional<int> | <0, INF> | 0 | Maximal number of consecutive not existing points to be interpolated. Default value: 0. |
![]() | outPoints | System.Collections.Generic.List<System.Collections.Generic.List<Fil.Point3D>> | The resulting surface points. | ||
![]() | outCoordinateValues | Ftl.Optional<System.Collections.Generic.List<double>> | The coordinates the output points were extracted from. |