Illustrates the use of BoundingBoxFromEntity().
scene.RemoveAll()
sdh=io.LoadPDB('data/sdh.pdb')
helix=sdh.Select('rnum=99:128 and cname=A and aname=CA,C,N,O')
go=gfx.Entity('helix', gfx.SIMPLE, helix)
scene.Add(go)
bbox=mol.BoundingBoxFromEntity(helix)
bb=gfx.Cuboid('xxx', bbox)
bb.SetFillColor(gfx.Color(0.5, 0.8, 0.5, 0.2))
scene.Add(bb)
scene.center=go.center