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

Invoke.SurfaceSingleProfileAlongAxis

Creates the profile of point Z values along X or Y axis.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void SurfaceSingleProfileAlongAxis
(
	Avl.Surface inSurface,
	Avl.Axis inAxis,
	double inCoordinateValue,
	int inSmoothRadius,
	Optional<double> inProfileDomainStart,
	Optional<double> inProfileDomainEnd,
	Optional<int> inMaxInterpolationLength,
	float inDefaultValue,
	Avl.Profile outProfile,
	Optional<double> outCoordinateValue
)

Parameters

Name Type Range Default Description
inSurfaceAvl.SurfaceInput surface.
inAxisAvl.AxisAxis along which the profile is extracted.
inCoordinateValuedoubleDetermines the coordinate the profile will be extracted from.
inSmoothRadiusint<0, INF>Increases the number of neighbouring profiles taken into account extracting a profile.
inProfileDomainStartAtl.Optional<double>Minimal X coordinate of the output profile. Default value: atl::NIL.
inProfileDomainEndAtl.Optional<double>Maximal X coordinate of the output profile. 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.
outProfileAvl.ProfileThe resulting profile of the surface height.
outCoordinateValueAtl.Optional<double>The coordinate the output profile was extracted from.

See also