You are here: Start » AVL.NET » Invoke.SurfaceMultipleProfilesAlongAxis

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
inSurfaceAvl.SurfaceInput surface.
inAxisAvl.AxisAxis along which the profile is extracted.
inCoordinateValueStartAtl.Optional<double>Determines the coordinate the first profile will be extracted from. Default value: atl::NIL.
inCoordinateValueEndAtl.Optional<double>Limits the coordinate the last profile will be extracted from. Default value: atl::NIL.
inCoordinateValueStepAtl.Optional<double><0, INF>Determines the distance between consecutive extracted profiles. Default value: atl::NIL.
inSmoothRadiusint<0, INF>Increases the number of neighbouring profiles taken into account extracting a single profile.
inProfileDomainStartAtl.Optional<double>Minimal X coordinate of the output profiles. Default value: atl::NIL.
inProfileDomainEndAtl.Optional<double>Maximal X coordinate of the output profiles. Default value: atl::NIL.
inMaxInterpolationLengthAtl.Optional<int><0, INF>Maximal number of consecutive not existing profile points to be interpolated. Default value: atl::NIL.
inDefaultValuefloatDefault value of the not existing and not interpolated surface point.
outProfilesSystem.Collections.Generic.List<Avl.Profile>The resulting profiles of the surface height.
outCoordinateValuesAtl.Optional<System.Collections.Generic.List<double>>The coordinates the output profiles were extracted from.

See also