public CExtent(BinaryReader br)
 {
     Radius = br.ReadSingle();
     Extent = new CBox(br);
 }
 public CExtent()
 {
     Extent = new CBox();
 }