Send Topic Feedback | See Object Hierarchy Chart
PC-DMIS 2023.2 Object Library
PCDLRN ActiveX DLL > BasicScan Object : GetFilterParams Method
Required Long variable that gets the cut axis. Returns non-zero only for axis filters. For axis filters, 0 means the X axis, 1 means the Y-axis, and 2 means the Z-axis.
Required Double variable that gets the maximum increment. For fixed-length filters, this is simply the fixed increment for Variable Distance Filters.
Required Double variable that gets the minimum increment.
Required Double variable that gets the maximum angle used in Variable Distance Filters.
Required Double variable that gets the minimum angle used in Variable Distance Filters.
GetFilterParams Method
Description
Gets parameters used in filtering of scan data
Syntax
Visual Basic
Public Function GetFilterParams( _
   ByRef dCutAxisLocation As Double, _
   ByRef nAxis As Long, _
   ByRef dMaxIncrement As Double, _
   ByRef dMinIncrement As Double, _
   ByRef dMaxAngle As Double, _
   ByRef dMinAngle As Double _
) As Boolean
Parameters
dCutAxisLocation
nAxis
Required Long variable that gets the cut axis. Returns non-zero only for axis filters. For axis filters, 0 means the X axis, 1 means the Y-axis, and 2 means the Z-axis.
dMaxIncrement
Required Double variable that gets the maximum increment. For fixed-length filters, this is simply the fixed increment for Variable Distance Filters.
dMinIncrement
Required Double variable that gets the minimum increment.
dMaxAngle
Required Double variable that gets the maximum angle used in Variable Distance Filters.
dMinAngle
Required Double variable that gets the minimum angle used in Variable Distance Filters.
Return Type
Boolean value. Boolean returns true if the function succeeds, false if it fails.
Remarks

Filter

GetFilterParams (dCutAxisLocation, nAxis, dMaxIncrement, dMinIncrement, dMaxAngle, dMinAngle)

Distance

,,dMaxIncrement

BodyAxisDistance

,nAxis, dMaxIncrement

VariableDistance

,,dMaxIncrement, dMinIncrement, dMaxAngle, dMinAngle

See Also