One Conflict object exists for each couple of products that are colliding. This value is the penetration lengh in case of a clash or the minimum distance in case of clearance violation.
Properties
The first example gets the comment of NewConflict Conflict.
Dim aComment As String
aComment = NewConflict.Comment
NewConflict.Comment = "OK : plastic part"
This example retrieves the comparison information of the NewConflict Conflict.
Dim anInfo As CatConflictComparison
anInfo = NewConflict.ComparisonInfo
This example retrieves the first product involved in the NewConflict Conflict.
Dim aProduct As Product
Set aProduct = NewConflict.FirstProduct
This example retrieves the second product involved in the NewConflict Conflict.
Dim aProduct As Product
Set aProduct = NewConflict.SecondProduct
The first example gets the status of NewConflict Conflict.
Dim aStatus As CatConflictStatus
aStatus = NewConflict.Status
NewConflict.Status = CatConflictStatusIrrelevant
This example retrieves the type of the NewConflict Conflict.
Dim conflictType As CatConflictType
conflictType = NewConflict.Type
This example retrieves the value of the NewConflict Conflict.
Dim conflictValue As double
conflictValue = NewConflict.Value
Methods
dd>
This example retrieves the first product involved in the NewConflict Conflict.
Dim Coordinates (2)
NewConflict.GetFirstPointCoordinates Coordinates
dd>
This example retrieves the coordinates in the NewConflict Conflict.
Dim Coordinates (2)
NewConflict.GetSecondPointCoordinates Coordinates