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