Sub Object selection count Info in vewport

Sub Object selection count Info in vewport

altup1515
Explorer Explorer
868 Views
3 Replies
Message 1 of 4

Sub Object selection count Info in vewport

altup1515
Explorer
Explorer

Is it possible SubObject selection (vertexes/edges/polygons) count Info/statistics display on the viewport?

0 Likes
869 Views
3 Replies
  • UI
Replies (3)
Message 3 of 4

altup1515
Explorer
Explorer

may be it can be on center of screen?

0 Likes
Message 4 of 4

denisT.MaxDoctor
Advisor
Advisor

@altup1515 wrote:

may be it can be on center of screen?


unregisterRedrawViewsCallback GW_displayObjectNames
fn GW_displayObjectNames =
(
  gw.setTransform (matrix3 1)
  for o in objects where not o.isHiddenInVpt do
    gw.text o.pos (o as string) color:yellow
  gw.enlargeUpdateRect #whole  
)
registerRedrawViewsCallback GW_displayObjectNames

this is an example from the MXS Help (gw Graphic Window Drawing Methods)

... 

 

tweak it a little for yourself, and write what you want where you want. 😉
because there is no built-in option to display scene statistics on the screen.

 

0 Likes