pycatia.cat_sch_platform_interfaces.sch_boundary_elem

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-09-25 14:34:21.593357

Warning

The notes denoted “CAA V5 Visual Basic Help” are to be used as reference only. They are there as a guide as to how the visual basic / catscript functions work and thus help debugging in pycatia.

class pycatia.cat_sch_platform_interfaces.sch_boundary_elem.SchBoundaryElem(com_object)

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.AnyObject
SchBoundaryElem

Manage a boundary element of a schematic zone.
get_boundary_points(o_l_db_pts: SchListOfDoubles) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub GetBoundaryPoints(SchListOfDoubles oLDbPts)

Get the definition points (segments end points) of one side of the
boundary. If the side is a curve, these points are the end points of the chords
approximating the curve.

Parameters:

oLDbPts
A list of X-Y coordinates of the points. 2 doubles per point.

Example:

Dim objThisIntf As SchBoundaryElem
Dim objArg1 As SchListOfDoubles
objThisIntf.GetBoundaryPointsobjArg1
Parameters:

o_l_db_pts (SchListOfDoubles) –

Return type:

None

get_end_points(o_l_db4_pts: SchListOfDoubles) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub GetEndPoints(SchListOfDoubles oLDb4Pts)

Get the end points (segments end points) of one side of the
boundary.

Parameters:

oLDb4Pts
An array of 4 doubles.

Example:

Dim objThisIntf As SchBoundaryElem
Dim objArg1 As SchListOfDoubles
objThisIntf.GetEndPointsobjArg1
Parameters:

o_l_db4_pts (SchListOfDoubles) –

Return type:

None

list_grr_zone_owners() SchListOfObjects

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func ListGRRZoneOwners() As SchListOfObjects

Get the list of owners of this zone.

Parameters:

oLGRRZoneOwners
A list of GRRZone which has included this boundary element.

Example:

Dim objThisIntf As SchBoundaryElem
Dim objArg1 As SchListOfObjects
Set objArg1 = objThisIntf.ListGRRZoneOwners
Return type:

SchListOfObjects