@alvis said:
Hi everyone Sketchup guru. I want to ask you, whether there is a plugin that can find the center of the model (group, component) by axes length, width or height?
Do you mean the real world coordinate, the component local coordinate, or something else?
If it is the real world coordinate then this one-liner pasted into the Ruby Console will give you that of a selected component or group.
s=Sketchup.active_model.selection;s.first.bounds.center
If it is the local coordinate then
s=Sketchup.active_model.selection;s.first.bounds.center.transform! s.first.transformation.inverse