You are here: Start » FIL.NET » Function Reference » Surface » Surface Features » FIL.SurfaceSingleProfileAlongAxis

FIL.SurfaceSingleProfileAlongAxis

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

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void SurfaceSingleProfileAlongAxis
(
	FilNet.Surface inSurface,
	FilNet.Axis inAxis,
	double inCoordinateValue,
	int inSmoothRadius,
	double? inProfileDomainStart,
	double? inProfileDomainEnd,
	int? inMaxInterpolationLength,
	float inDefaultValue,
	FilNet.Profile outProfile
)

Parameters

Name Type Range Default Description
inSurfaceFilNet.SurfaceInput surface.
inAxisFilNet.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.
inProfileDomainStartdouble?Minimal X coordinate of the output profile. Default value: ftl::NIL.
inProfileDomainEnddouble?Maximal X coordinate of the output profile. Default value: ftl::NIL.
inMaxInterpolationLengthint?<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.
outProfileFilNet.ProfileThe resulting profile of the surface height.

Errors

List of possible exceptions:

Error type Description
DomainError Incorrect output profile domain in SurfaceSingleProfileAlongAxis.
DomainError Input coordinate value exceeds surface in SurfaceSingleProfileAlongAxis.
DomainError Unknown axis type in SurfaceSingleProfileAlongAxis.

Function Overrides

See also