edges

Next
 From:  Andrei Samardac
5718.1 
Hallo Michael, tell me pleas is it way to hide edges only on selected objects, or styles?
  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:  Michael Gibson
5718.2 In reply to 5718.1 
Hi mir4ea,

> Hallo Michael, tell me pleas is it way to hide edges only on selected objects, or styles?

Here's a script that you can set on a shortcut key, then when you push that key the edges of the selected objects will be hidden:

script: /* Hide edges of selected objects */ var breps = moi.geometryDatabase.getSelectedObjects().getBreps(); for ( var i = 0; i < breps.length; ++i ) breps.item(i).getEdges().setProperty( 'hidden', true ); moi.ui.redrawViewports();

- Michael
  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:  Frenchy Pilou (PILOU)
5718.3 In reply to 5718.2 
Does all these little scripts are automatically move over somewhere?
Pet'r page?
  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:  BurrMan
5718.4 In reply to 5718.3 
""""""""Does all these little scripts are automatically move over somewhere?"""""""""

A folder on Burr's computer.... :o
  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:  Michael Gibson
5718.5 In reply to 5718.3 
Hi Pilou,

> Does all these little scripts are automatically move over somewhere?
> Pet'r page?

It's not automatic, but Petr collects most of them up on his page so that's usually a good place to look first.

Also they all remain in the forum so for example if you search for "Hide edges" in the forum you can find the script above.

If you can't find one in particular, just ask.

Someday I will make some kind of centralized and browsable repository for scripts but I'm not sure when that will happen, I'm more focused on working on modeling tools first before doing that kind of work.

- Michael
  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:  Frenchy Pilou (PILOU)
5718.6 In reply to 5718.5 
So I will ask to Burr! :)

Because I have some lateness on my French site about Scripts !

http://moiscript.weebly.com/
---
Pilou
Is beautiful that please without concept!
My Gallery
  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:  Andrei Samardac
5718.7 
Thanx Michael, but I can't find this script Petr's page)
  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:  Michael Gibson
5718.8 In reply to 5718.7 
Hi mir4ea, that's correct this one isn't on Petr's page, that's why I posted the script here instead of a link to there.

I don't think anyone has happened to ask for that particular specific thing before so there was not any previously written script to do it, so I wrote a new one and posted it here for you.

If you need a script, it is a good idea to check Petr's page first since he has collected a bunch of the most frequently requested ones over there but if you do not find the particular thing that you need that could mean that you need a new script that has not been cooked up before.

- Michael
  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:  Andrei Samardac
5718.9 In reply to 5718.8 
Yes, I alwas look peter's page first)
And I think this script is very useful, becouse if you work on a big models it make life a lot easer, but a lot of people don't know about hiding edges to speed up moi on big models. I think it's one of main approach to work on big projects except Mesh Angle and add detail.. )

And the show edges on selected objects:

script: /* Show edges of selected objects */ var breps = moi.geometryDatabase.getSelectedObjects().getBreps(); for ( var i = 0; i < breps.length; ++i ) breps.item(i).getEdges().setProperty( 'hidden', false ); moi.ui.redrawViewports();

EDITED: 16 Feb 2013 by ANDREI SAMARDAC

  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