Simple question about wireframes..

Next
 From:  Jonzker
2384.1 
Is there a way to hide the wireframe in the viewport so i can just see the plain surface of the model im creating?

ill apreciate any feedback, thanks
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  -ash-
2384.2 In reply to 2384.1 
Hi there, Jonzker.

This script hides edges on selected items or on all if nothing selected:

script:var gd = moi.geometryDatabase; var breps = gd.getSelectedObjects().getBReps(); if ( breps.length == 0 ) breps = gd.getObjects().getBReps(); var hide = true; for ( var i = 0; i < breps.length; ++i ) { var edges = breps.item(i).getEdges(); if ( i == 0 ) hide = !edges.item(0).hidden; edges.setProperty( 'hidden', hide ); }

assign to shortcut of your choice.

Regards
Tony

(aka HamSoles)

  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
 From:  Jonzker
2384.3 In reply to 2384.2 
worked gr8t, thx a bunch
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged
 

Reply to All Reply to All