"Return the maximal distance from the center to a vertex."
Shouldn't this be translation invariant? Doesn't seem like any of these are answers right. sage: sq=polytopes.n_cube(2) sage: sq.vertices() [[1, 1], [-1, 1], [1, -1], [-1, -1]] sage: sq.radius() 2*sqrt(2) sage: Polyhedron([[p0+1,p1] for p0,p1 in sq.vertices()]).radius() 2*sqrt(3) sage: Polyhedron([[p0+10,p1] for p0,p1 in sq.vertices()]).radius() 2*sqrt(102) -- To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org
