SurfaceMultiplePointsAlongAxis
Returns multiple arrays of surface points along X or Y axis.
Syntax
C++
C#
Python
def SurfaceMultiplePointsAlongAxis( inSurface: Surface, /, *, inSurface2: Surface | None = None, inAxis: Axis = Axis.X, inCoordinateValueStart: float | None = None, inCoordinateValueEnd: float | None = None, inCoordinateValueStep: float | None = None, inSmoothRadius: int = 0, inMinOutputCoordinate: float | None = None, inMaxOutputCoordinate: float | None = None, inMaxInterpolationLength: int | None = 0 ) -> ( outPoints: list[ list[Point3D] ], outCoordinateValues: list[float] )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inSurface | Surface | Input surface | ||
![]() |
inSurface2 | Surface | None | None | Optional second input surface | |
![]() |
inAxis | Axis | Axis.X | Axis along which the points are extracted | |
![]() |
inCoordinateValueStart | float | None | None | Determines the coordinate the first row of points will be extracted from | |
![]() |
inCoordinateValueEnd | float | None | None | Limits the coordinate the last row of points will be extracted from | |
![]() |
inCoordinateValueStep | float | None | 0.0D - ![]() |
None | Determines the distance between consecutive extracted row of points |
![]() |
inSmoothRadius | int | 0 - ![]() |
0 | Increases the number of neighbouring points taken into account extracting a single row of points |
![]() |
inMinOutputCoordinate | float | None | None | Minimal second coordinate of the output points | |
![]() |
inMaxOutputCoordinate | float | None | None | Maximal second coordinate of the output points | |
![]() |
inMaxInterpolationLength | int | None | 0 - ![]() |
0 | Maximal number of consecutive not existing points to be interpolated |
![]() |
outPoints | list[ list[Point3D] ] | The resulting surface points | ||
![]() |
outCoordinateValues | list[float] | The coordinates the output points were extracted from |



