示例#1
0
        public ISphereEntity SphereByCenterPointRadius(IPointEntity centerPoint, double radius)
        {
            DSGeometryApplication.Check();
            ISphereEntity sph = new SphereEntity(centerPoint, radius);

            return(sph);
        }
示例#2
0
 public ISphereEntity SphereByCenterPointRadius(IPointEntity centerPoint, double radius)
 {
     DSGeometryApplication.Check();
     ISphereEntity sph = new SphereEntity();
     sph.UpdateSphere(centerPoint, radius);
     return sph;
 }