BBoolType.KeepEdge Method

A decision function that us used to decide if an edge is to be added to the result of a boolean operation.
Public MustOverride Function KeepEdge( _ 
ByVal set As Integer, _ 
ByVal leftedge As Boolean, _ 
ByVal totcnt As Integer, _ 
ByVal cnt1 As Integer, _ 
ByVal cnt2 As Integer
) As Boolean
This language is not supported or no code example is available.
public abstract bool KeepEdge( 
int set
bool leftedge
int totcnt
int cnt1
int cnt2 
)
This language is not supported or no code example is available.
public:  
virtual bool KeepEdge( 
int set
bool leftedge
int totcnt
int cnt1
int cnt2 
) abstract
This language is not supported or no code example is available.
public abstract function KeepEdge( 
set : int
leftedge : boolean
totcnt : int
cnt1 : int
cnt2 : int 
) : boolean;
This language is not supported or no code example is available.

Parameters

set
int

The set this edge belong to 0=set1 or 1=set2.

leftedge
bool

A leftedge or rightedge.

totcnt
int

Every time a leftedge is passed this counter is increased and every time a rightedge is passed this counter is decreased.

cnt1
int

Same as totcnt but only with edges from set1.

cnt2
int

Same as totcnt but only with edges from set2.

Return Value

bool

true if edge should be added false otherwise.

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition