You are here: Start » FIL.NET » Function Reference » Surface » Surface Spatial Transforms » FIL.JoinSurfaces
Combines two surfaces into one.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void JoinSurfaces ( FilNet.Surface inSurface1, FilNet.Surface inSurface2, FilNet.Surface outSurface )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inSurface1 | FilNet.Surface | First input surface to join. | ||
![]() | inSurface2 | FilNet.Surface | Second input surface to join. | ||
![]() | outSurface | FilNet.Surface | Combination of two input surfaces. |
Remarks
The joined surfaces must be compatible. Their scales must be equal and the difference between the corresponding offsets must be equal to the multiple of the related scale.
The filter will return the mean of the points where the surfaces overlap each other.
The filter will return the mean of the points where the surfaces overlap each other.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Different axis scales in JoinSurfaces. |
DomainError | Different Surface types in JoinSurfaces. |
DomainError | Incompatible axis offsets in JoinSurfaces. |