SurfaceSinglePointsAlongAxis
Returns single array of surface points along X or Y axis.
Syntax
C++
C#
Python
def SurfaceSinglePointsAlongAxis( inSurface: Surface, /, *, inSurface2: Surface | None = None, inAxis: Axis = Axis.X, inCoordinateValue: float = 0, inSmoothRadius: int = 0, inMinOutputCoordinate: float | None = None, inMaxOutputCoordinate: float | None = None, inMaxInterpolationLength: int | None = 0 ) -> ( outPoints: list[Point3D], outCoordinateValue: 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 | |
![]() |
inCoordinateValue | float | 0 | Determines the coordinate the points will be extracted from | |
![]() |
inSmoothRadius | int | 0 - ![]() |
0 | Increases the number of neighbouring points taken into account |
![]() |
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[Point3D] | The resulting surface points | ||
![]() |
outCoordinateValue | float | The coordinate the output points were extracted from |



