#
get_shared_faces
Obtain the shared faces between two lists of shapes.
#
Parameters
- shapeList0 : ShapeList
- list of shapes
- shapeList1 : ShapeList
- list of shapes
#
See also
#
Examples
model3d.add_prism(points=[[1,1,0],[2,1,0],[1,0,0]],height=3)
model3d.add_box([0,0,0],[1,1,3])
sel1 = model3d.select([2,1,0],types='volume')
sel2 = model3d.select([0.5,0.5,0.5],types='volume')
model3d.get_shared_faces(sel1,sel2).values
[face:id=16]