@dan rathbun said:
- Select the group instance
- Open the Ruby Console
- In the console type:
> sel = Sketchup;;active_model.selection
> g = sel[0]
> a = X_AXIS.angle_between(g.transformation.xaxis)
>
The angle will be in radians.
To display degrees:
> a.radians
>
Thank you! Exactly what I needed!