# set_support

Set support conditions to shapes

# Parameters

shapes : ShapeList
list of shapes. ShapeType must be 'edge' in 2D and 'face' in 3D
type : str
Type of support. type='normal', 'tangential', 'full'

# See also

# Examples

model2d.add_rectangle([0,0],[5,5])
sel = model2d.select([0,1],types='edge')
model2d.set_support(sel,type='normal')
sel = model2d.select([1,0],types='edge')
model2d.set_support(sel,type='tangential')
sel = model2d.select([1,5],types='edge')
model2d.set_support(sel,type='full')
model3d.add_box([0,0,0],[5,5,5])
sel = model3d.select([3,0,1],types='face')
model3d.set_support(sel,type='full')