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

Invoke.SurfaceSingleProfileAlongAxis

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

Namespace:Fil
Assembly:FilNet.dll

Syntax

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

Parameters

Name Type Range Default Description
inSurfaceFil.SurfaceInput surface.
inAxisFil.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.
inProfileDomainStartFtl.Optional<double>Minimal X coordinate of the output profile. Default value: ftl::NIL.
inProfileDomainEndFtl.Optional<double>Maximal X coordinate of the output profile. Default value: ftl::NIL.
inMaxInterpolationLengthFtl.Optional<int><0, INF>Maximal number of consecutive not existing profile points to be interpolated. Default value: ftl::NIL.
inDefaultValuefloatDefault value of the not existing and not interpolated surface point.
outProfileFil.ProfileThe resulting profile of the surface height.
outCoordinateValueFtl.Optional<double>The coordinate the output profile was extracted from.

See also