MoI discussion forum
MoI discussion forum

Full Version: Lots of unkown

Show messages:  1-17  …  258-277  278-297  298-317  318-337  338-357  358-372

From: Cemortan_Tudor
26 Sep 2021   [#318]
idk if fillets will be changed for v5
~ an addition - last created on fillet failed, but building the supported faces - to select new created faces
From: Michael Gibson
26 Sep 2021   [#319] In reply to [#318]
Hi Tudor, you can select faces that were created by the last run command by using this script in v4:

script: /* Select fillet surfaces */ moi.geometryDatabase.deselectAll(); var breps = moi.geometryDatabase.getLastCreated().getBReps();
for ( var i = 0; i < breps.length; ++i ) { var faces = breps.item(i).getFaces(); for ( var j = 0; j < faces.length; ++j )
{ var f = faces.item(j); if ( f.isNew ) f.selected = true; } }

So for example after doing a fillet that will select all the fillet surfaces.

- Michael
From: Frenchy Pilou (PILOU)
26 Sep 2021   [#320] In reply to [#319]
Cool !

And something for select only "Flat Faces" ? (not especially after the last function)
From: Michael Gibson
26 Sep 2021   [#321] In reply to [#320]
Hi Pilou, planar faces can be selected using the detailed object properties dialog.

Select the solid first, then click "Details...", then click the label where it shows the number of faces, then click the label that shows the number of planar faces.

There will be another way in v5 using the Types section of the scene browser.

- Michael
From: Frenchy Pilou (PILOU)
26 Sep 2021   [#322] In reply to [#321]
Ah excellent i have totally forgotten this!


From: Phiro
26 Sep 2021   [#323]
Idem

I forgot this possibility I knew.
But when I don't use it often, I forget to use this trick.

Thanks for this Michael !
From: Cemortan_Tudor
23 Oct 2021   [#324]
Ohayo
Is it possible to bind hotkeys to mouse 4/5 and combinations with those ?
~ default moi doesnt support that, any other softwares ?
From: Michael Gibson
23 Oct 2021   [#325] In reply to [#324]
Hi Tudor, sorry no MoI does not itself have any way to use extra mouse buttons.

> ~ default moi doesnt support that, any other softwares ?

Probably some kind of utility could be used for this, what operating system are you using?

- Michael
From: Cemortan_Tudor
23 Oct 2021   [#326] In reply to [#325]
win 10
From: Michael Gibson
23 Oct 2021   [#327] In reply to [#326]
There's a utility program called AutoHotKey that can do that type of stuff.

- Michael
From: Cemortan_Tudor
24 Oct 2021   [#328]
expanding boolDifference

1. for closed curves
if curves aren't on same frame(missdraw or random snap) will perform boolD to first plane
2. for selection of breps and curves, curves will be ignored - boolean will be applied only to breps

Attachments:
BooleanDifference.js


From: Cemortan_Tudor
24 Oct 2021   [#329]
fillet
c - swap between constant distance and circular

Attachments:
Fillet.js


From: Cemortan_Tudor
25 Oct 2021   [#330]
example of swapping from hard edge to soft(circular)
edge can be trimmed with a line, after chamfer - trimmed edges will remain & can be selected for next fillet
https://gifyu.com/image/eWdv
From: Cemortan_Tudor
25 Oct 2021   [#331]
ohayo !
sweep question, how can a rect automatch a sweep profile ? or any other curved shape(planar) ?
panneling or border workflow
From: Michael Gibson
25 Oct 2021   [#332] In reply to [#331]
Hi Tudor, I'm sorry I don't really understand the question. Are you asking about the "autoplace" mode for Sweep? That is turned on if a sweep profile is outside of the rail curve's bounding box. When it's on the sweep profile will be moved to the rail and rotated to align with the rail's tangent and then swept along the rail path.

If the profile curve is inside the bounding box of the rail curve then it will not be moved and will be swept from it's current position.

- Michael
From: Cemortan_Tudor
27 Oct 2021   [#333]
run out of forum's disc space, outside link
https://easyupload.io/bloyl4
~ if combined with object library I could easily define border/paneling options
From: Cemortan_Tudor
2 Nov 2021   [#334]
~ for implementation
when "transform tool" is enabled and picking from corner to scale -> option to rotate from that view -> ctrl + shift is still free

and a question -> is it possible to activate transform rotate tool from 3d view ?
From: Michael Gibson
2 Nov 2021   [#335] In reply to [#334]
Hi Tudor,

re:
> when "transform tool" is enabled and picking from corner to scale -> option to rotate from that
> view -> ctrl + shift is still free

Sorry I'm not understanding this request. Ctrl+shift is currently used to force window selection without any click selection.


re:
> and a question -> is it possible to activate transform rotate tool from 3d view ?

If you have a planar object selected you can see the rotation grip in the 3d view and click it to turn on wheel mode. But otherwise no.

- Michael
From: Cemortan_Tudor
2 Nov 2021   [#336]
as soon as red -> corner is activated - option for green - "ctrl + shift" rotation transform from that corner

Image Attachments:
corner.png 


From: Cemortan_Tudor
2 Nov 2021   [#337]
extend working only in 1 direction

Attachments:
extend.3dm


Show messages:  1-17  …  258-277  278-297  298-317  318-337  338-357  358-372