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