Poincaré disk Inversion script

 From:  Michael Gibson
6550.8 In reply to 6550.7 
Hi Brian ,

> Is there a way to script getting the center point of a circle, without picking the
> center point with the mouse?
> The center point needs to be the same data type as a picked center of a circle.

Sorry no there isn't currently any way to get the center point by script as a "picked point"... I guess you could get the x,y,z location by doing:

var bbox = circle.getBoundingBox( true /* true = use high accuracy bounding box */ );

var cen = bbox.center;

That will give a generic point, not a "picked point" which has things like object snap information included along with it though.

- Michael