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


