MoI discussion forum
MoI discussion forum

Full Version: V5 Wish List

Show messages:  1-4  …  105-124  125-144  145-164  165-184  185-204  205-224  225-244  …  545-550

From: Michael Gibson
15 May 2021   [#165] In reply to [#164]
Hi Ed, for percent I was thinking you would do: 102%

- Michael
From: Matadem
17 May 2021   [#166]
One future request would be a script or option to quickly and efficiently add shape profiles to your drawn objects.
Something like Aspire has this would be good for signmaking at 16:24 > https://www.youtube.com/watch?v=1lY0WpAVstA

If you have drawn an object or text to quickly balloon or bulge the top with a few shape options without the need to network, sweep etc.

Thank you!
From: Michael Gibson
17 May 2021   [#167] In reply to [#166]
Hi Matadem,

re:
> Something like Aspire has this would be good for signmaking

It's much more difficult to do this with NURBS geometry like MoI uses. Aspire uses polygon mesh type geometry for doing these types of shapes.

- Michael
From: Psygorn (DRILLBIT)
19 May 2021   [#168]
Hello Michael,

I have got a question! In MOI when I use Extrusion in tapered I cannot see it getting converged to a single point! and when I pass the focal point MOI doesn't produce an object, it just produces a surface. could we have the ability to create converged extruded objects that would end on a single focal point? (Example: user extrudes a circle in tapered mode and he/she ends up with a cone )
From: Michael Gibson
19 May 2021   [#169] In reply to [#168]
Hi Psygorn,

re:
> could we have the ability to create converged extruded objects that would end on a single focal point?

Yes, that is already available in the Extrude command using the "To point" option:



- Michael
From: Psygorn (DRILLBIT)
20 May 2021   [#170] In reply to [#169]
Using Tpoint U cannot control the angle.

Edit: I mean u cannot control it precisely! (but of course I could use guidelines)

Thank you Michael :)
From: Michael Gibson
20 May 2021   [#171] In reply to [#170]
Hi Psygorn,

re:
> Using Tpoint U cannot control the angle.

If you need to create a cone to a point of a specific angle, I would recommend using the Draw solid > Cone command to do that job, not Extrude.

The Cone drawing command has an option in it for making a specific angle.

- Michael
From: Psygorn (DRILLBIT)
23 May 2021   [#172]
Hi Michael,

Do we have Switch concept in MOI? If No, could we have it?

Also Select similar (For faces, edges and objects)

I tried to explain in below image:


From: Michael Gibson
23 May 2021   [#173] In reply to [#172]
Hi Psygorn,

re:
> Do we have Switch concept in MOI? If No, could we have it?

No there isn't a concept like that currently. But you may want to try the node editor to define your object as a series of steps which could be applied to different surfaces, that might fit with what you describe.

Just in general models that have a lot of repetitive structures in them are good candidates for building with a procedural mechanism like the node editor rather than a regular "drawing with the mouse" type mechanism like regular MoI operation is focused on.

You also might want to check out Grasshopper or Houdini which are focused on that type of thing.

- Michael
From: Psygorn (DRILLBIT)
23 May 2021   [#174] In reply to [#173]
Hi Michael,

>No there isn't a concept like that currently.

Does this mean we might have it in future? I personally believe it will give users an opportunity to modify some complex models in speedy manner :)

*I am a newbie user of Node editor, Although I found it easy to learn but I still am a newbie* & I just thought having such "Select + Switch concept " would be cool!
From: Michael Gibson
23 May 2021   [#175] In reply to [#174]
Hi Psygorn,

re:
> Does this mean we might have it in future? I personally believe it will give users an opportunity to
> modify some complex models in speedy manner :)

I don't know if MoI will have that in the future, it's hard to say. It does seem somewhat outside of MoI's main focus area which is more about making models using 2D profile curves. What you show there does not seem to be very aligned with that.

- Michael
From: Psygorn (DRILLBIT)
23 May 2021   [#176] In reply to [#175]
Hi Michael,

I think I understand, but let me show you why I actually wished for such an ability.
Take a look at the below photo.



When I was making those stitches for the soccer ball using mouse method due to the special geometry of soccer ball I had hard time to put those stitches on it! And because I know the philosophy behind MOI is speed! ( well I am sure its one of the main philosophies behind its creation!) I just thought it would be so cool if we had an ability which I described in my previous post.

All in all I got your point and I know it might be out of the current scope of MOI.

*Note* I'd be happy if any of you guys who are more experienced with Nodeeditor step forth and teach me how I could achieve such an effect using Nodeeditor if it is possible to be achieved by Nodeeditor.

Tanx
From: Frenchy Pilou (PILOU)
23 May 2021   [#177]
that you can do when you build your object : name a face! (or style color)
Construct your object

So when your object is finished it's very easy to select element by color, name...

other thing : put a diagonal on each different faces
so with script: /* Select by Length */ var min = 1.0, max = 5.0; var crvs = moi.geometryDatabase.getObjects().getCurves(); for ( var i = 0; i < crvs.length; ++i ) { var crv = crvs.item(i); var len = crv.getLength(); if ( len>= min && len <= max ) { crv.selected = true; } }

it's very easy to select each faces concerned...you will be very unlucky if diagonal are sames measures from different faces! :)

etc...
From: Michael Gibson
23 May 2021   [#178] In reply to [#176]
Hi Psygorn - small bumpy details like the stitching are just in general not a good fit with CAD geometry. It's usually better to construct something that has those kinds of features in a poly modeling program, not in MoI. ZBrush or 3D-Coat might be good candidates.

- Michael
From: Psygorn (DRILLBIT)
23 May 2021   [#179] In reply to [#177]
Hi PILOU,

I did name Pentagonal faces, So, later I could select them with more ease! But I don't understand what you want me to do now?

> script: /* Select by Length */ var min = 1.0, max = 5.0; var crvs = moi.geometryDatabase.getObjects().getCurves(); for ( var i = 0; i < crvs.length; ++i ) { var crv = crvs.item(i); var len = crv.getLength(); if ( len>= min && len <= max ) { crv.selected = true; } }

What does the above script do? ( I suppose it will select curves with lengths between 1 & 5) but it did not work. And how it is going to make it easier to put stiches in their desired place?

->I have other question now ( Where did you learn to write MOI scripts? How can I learn it?)
How people create plug-ins for MOI? Why plug-ins usually are accompanied by *.htm file? what does this *.htm file do? I thought only *.js file would be enough.

:)
From: Michael Gibson
23 May 2021   [#180] In reply to [#179]
Hi Psygorn, the .htm file contains the user interface for a command. When a command is launched, if it has an .htm file that is first loaded into the command UI area of the side pane and then the .js file is executed. There are some commands that don't show any user interface and they can have just a .js file and no separate .htm file.

- Michael
From: Psygorn (DRILLBIT)
23 May 2021   [#181] In reply to [#180]
Hi Michael,

Ok and tanx. If you could guide me to where I could start learning to create my own plugins that would be awesome! ( Well I know it is not an easy task but I know it would be fun to be able to create scripts or plugins :)
From: Michael Gibson
23 May 2021   [#182] In reply to [#181]
Hi Psygorn, re: learning scripting - it's pretty difficult to learn how to do it currently. It's not an area of MoI that is fully developed, documented, and supported as of yet.

The main way people have learned it is by examining existing commands. There is a little bit of information here: http://moi3d.com/wiki/Scripting .

- Michael
From: Psygorn (DRILLBIT)
23 May 2021   [#183] In reply to [#182]
Tanx Michael

:-)
From: Frenchy Pilou (PILOU)
23 May 2021   [#184] In reply to [#179]
Alas i don't script ...too difficult for my old brain!
I just use some ready made and edit some values inside...

So you can use a certain length for select only diagonal of a faces...so put manually your objects on these faces...

Show messages:  1-4  …  105-124  125-144  145-164  165-184  185-204  205-224  225-244  …  545-550