You are here: Start » AVL.NET » Invoke.SurfaceMultipleProfilesAlongAxis
Creates the profiles of point Z values along X or Y axis.
Namespace: | Avl |
---|---|
Assembly: | AvlNet.dll |
Syntax
C++
C#
public static void SurfaceMultipleProfilesAlongAxis ( Avl.Surface inSurface, Avl.Axis inAxis, Optional<double> inCoordinateValueStart, Optional<double> inCoordinateValueEnd, Optional<double> inCoordinateValueStep, int inSmoothRadius, Optional<double> inProfileDomainStart, Optional<double> inProfileDomainEnd, Optional<int> inMaxInterpolationLength, float inDefaultValue, List<Avl.Profile> outProfiles, Optional<List<double>> outCoordinateValues )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inSurface | Avl.Surface | Input surface. | ||
![]() | inAxis | Avl.Axis | Axis along which the profile is extracted. | ||
![]() | inCoordinateValueStart | Atl.Optional<double> | Determines the coordinate the first profile will be extracted from. Default value: atl::NIL. | ||
![]() | inCoordinateValueEnd | Atl.Optional<double> | Limits the coordinate the last profile will be extracted from. Default value: atl::NIL. | ||
![]() | inCoordinateValueStep | Atl.Optional<double> | <0, INF> | Determines the distance between consecutive extracted profiles. Default value: atl::NIL. | |
![]() | inSmoothRadius | int | <0, INF> | Increases the number of neighbouring profiles taken into account extracting a single profile. | |
![]() | inProfileDomainStart | Atl.Optional<double> | Minimal X coordinate of the output profiles. Default value: atl::NIL. | ||
![]() | inProfileDomainEnd | Atl.Optional<double> | Maximal X coordinate of the output profiles. Default value: atl::NIL. | ||
![]() | inMaxInterpolationLength | Atl.Optional<int> | <0, INF> | Maximal number of consecutive not existing profile points to be interpolated. Default value: atl::NIL. | |
![]() | inDefaultValue | float | Default value of the not existing and not interpolated surface point. | ||
![]() | outProfiles | System.Collections.Generic.List<Avl.Profile> | The resulting profiles of the surface height. | ||
![]() | outCoordinateValues | Atl.Optional<System.Collections.Generic.List<double>> | The coordinates the output profiles were extracted from. |