Parametric design in MoI?
 1-2  …  83-102  103-122  123-142  143-162  163-182  …  903-912

Previous
Next
 From:  James (JFH)
7713.123 In reply to 7713.122 
Pilou

I have been aware of you for many years, going back at least to the old Silo days.
It is weird to be communicating with your directly. It could be even further back
than that: did you post on EIAS (Electric Image) forum?

Anyway it is good to make you acquaintance.

RE: "Better if you can put the entiere drawing image of the Nodes! ;)"

I understand, but the node graphs are growing in such complexity that
they often do not fit within the limits of my screen and hence can't be screen-grabbed.

Is it not enough to just include the .nod file?

James
  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)
7713.124 In reply to 7713.123 
:)
<< than that: did you post on EIAS (Electric Image) forum?
No Sorry I have not this program

<< Is it not enough to just include the .nod file?
Yes it's sufficient !
I reload it and make an image of it! :)
So you don't lost time for that and you can concentrate you on the code!
My old brain is a little slow for this sort of sport (Nodes creation) and unlucky i begin in the same time a return to another languages! :)
(Processing world... :)

But wish that Max make a zoom because make some images of a big Nodes will be maybe a little painful! :)

EDITED: 12 Dec 2015 by PILOU

  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:  James (JFH)
7713.125 In reply to 7713.124 
Pilou / Karsten

RE: "My old brain is a little slow for this sort of sport (Nodes creation)"

Yeah me too. My meagre contribution to the node set has exhausted my coding limits.
Not surprising, considering how limited they are.

I have been trying without success to create a extrude node. Perhaps Karsten, you
could turn your mind to this.

It would be greatly appreciated.
James
  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
7713.126 In reply to 7713.125 
Was wondering if it was possible for Max to make an additional feature of this. Basically an addition for "external factories"..

At this point, modifying one of the fundamental cores of the plug, will get out of hand pretty quick... The regular factories file could be kept for agreed upon, fully implemented additions, where the "external factories" would be a place to load whatever is coded for the day.....

Just a thought.....
  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:  Max Smirnov (SMIRNOV)
7713.127 
Hi guys
I didn't have enough free time last week.
Finally today I continued to write the program. I made significant changes in nodeeditor core.
Point and Frame data types is obsolete now. I replaced them with unified pointarray type. Most of the nodes should be rewritten.
Also I added droplists properties, and Math/Function node. This node based on my FxGraph script and supports any math expressions.

Please remember that nodeedior is currently at alpha stage. This means that I can change everything in the main core. And every change may cause that every node must be rewritten from the beginning. Be ready to do it again and again. Or wait until a beta version will be released.

Pilou
>> But wish that Max make a zoom because make some images of a big Nodes will be maybe a little painful
Zooming will be enabled in the next alpha-release.

EDITED: 7 Mar 2022 by SMIRNOV

  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:  Karsten (KMRQUS)
7713.128 In reply to 7713.127 
Hello Max,

that's really good news - especially the flexible Math-Node - it will reduce the wiring a lot. For me it was clear that most of the nodes has to be rewritten or will some day obsolete. I saw and I see it, as an exercise in JavaScript and the moi-api and I have a lot of fun with it. My intention is to clarify what can to be done with such a system, check limitations and what is most needed. So see me as one of elephants alpha-test-users:-).
In the last hours I fail about the problem to make the link of "Selected" persitent/permanent. The idea was to evaluate the name of the selected object, if it has no name, give it one (simple UUID-routine - example from stackoverflow.com) put it in the label. After store and reload evaluate from label (it seems the informations are in the node file.) But I fail - My limitations:-( - any ideas?

Nevertheless I will show another approach for using such a node-editor:-)


It can also be expanded for clash detection:-)

Thank You very much Max, Pilou, James, Michael, .....

Kind regards
Karsten
Attachments:

  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:  christian (CHRI)
7713.129 In reply to 7713.128 
Hi Karsten

Your new approach with nodes and dynamic assembly is incredible .
What a surprise for me to see that in Moment Of Inspiration .

With Max, Pilou, James, Michael , YOU and others brilliant people , we can talk about DREAM TEAM

Many thanks for your job
  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)
7713.130 
Brilliant ideas!
And cool zoom, maths projects!
  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:  Karsten (KMRQUS)
7713.131 In reply to 7713.128 
Hi Max,

I found a solution for my problem!

Kind regards
Karsten
  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)
7713.132 
All actual nodes of the animation above! ;)
---
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:  Sharif (SR13765)
7713.133 
Hi;

First I want to thank Max for creating such amazing program and others that are contributing to expand beyond. I am trying to create a math conversion node for converting Degree to radian and radian to degree. I created these two nodes by coping other example and modify them.My knowledge of Javascript very limited and I can not figureout why is not converting.

// *************** Math Conversion Degree to radian ****************************

function convertDegtoRad()
{
this.addInput("Deg","number");
this.addOutput("Rad","number");
this.properties = {Deg:0};
}

convertDegtoRad.title = "DegreeToRad";
convertDegtoRad.desc = "Degree to Radian";

convertDegtoRad.prototype.onExecute = function()
{

this.properties.Deg = this.getInputData(0, this.properties.Deg);
var outValue = (this.properties.Deg * 2 * Math.Pi) / 360;
this.setOutputData(0, outValue);
}

LiteGraph.registerNodeType("MathBasic/DegreeToRad", convertDegtoRad);

// *************** Math Conversion Radian to degree ****************************

function convertRadToDegree()
{
this.addInput("Rad","number");
this.addOutput("Deg","number");
this.properties = {Rad:0};
}

convertRadToDegree.title = "RadToDegree";
convertRadToDegree.desc = "Radian To Degree";

convertRadToDegree.prototype.onExecute = function()

{

this.properties.Rad = this.getInputData(0, this.properties.Rad);
var outValue = (this.properties.Rad * 180) / Math.pi;
this.setOutputData(0, outValue);
}

LiteGraph.registerNodeType("MathBasic/RadToDegree", convertRadToDegree);

// *************** ***************************


thanks
-sharif
Image Attachments:
Size: 19.1 KB, Downloaded: 69 times, Dimensions: 771x572px
  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:  James (JFH)
7713.134 In reply to 7713.133 
sharif

Try "PI" instead of "Pi"

I think it then should work.
Let us know

- James
  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:  Sharif (SR13765)
7713.135 In reply to 7713.134 
Thanks! It worked
  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:  guyver (DAVGIAN)
7713.136 
  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)
7713.137 In reply to 7713.136 
Maybe you will be more speedy productive with this free one! ;)

Free for students, enthusiasts, hobbyists, and startups
http://www.autodesk.com/products/fusion-360/try-buy

(Step and Sat from Moi)

---
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:  Karsten (KMRQUS)
7713.138 In reply to 7713.136 
Hello guyver,

It's not possible - I think - at the moment, but maybe some day:-) Because I have only a 3-Axis router I use HeeksCNC for generating G-Code (supports -3-Axes). I read something about a plugIn for GMax called CNC-Toolkit that should do the Job also (5-Axes), but I never had a tryout. Free stuff for that is rare:-(

Kind regards
Karsten
  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:  Karsten (KMRQUS)
7713.139 In reply to 7713.136 
p.s.: The shown example isn't extreme 5-Axis - That can be done - with respect to the milling time and a lesser quality - with 3-Axes :-)
  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:  Barry-H
7713.140 
Hi,
can someone show me how to do a grid array using this plugin.
I can produce a line of objects space them rotate them and offset them
but for the life of me can't work out how to produce more than one line.
Attached is my effort so far.

Thanks
Barry-H



Attachments:

  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:  Karsten (KMRQUS)
7713.141 In reply to 7713.140 
Hi Barry,

the Node is not easy to understand, because the inputs can be interpreted differently, so I want to explain how it works. First the node generates only a 1D-Array. The amount of copies depends on the N value of of your intput Array. So you have to make sure that on every input has to be the same number of values from the arrays. start value and step controls the start and distance from Inputobject to the next generated. You can control x(n) y(n) z(n) independent from each other. If you take an array of constant values (step=0) in x(n) the direction in x is fixed for your arrayed object. If you use step > 0 you will get a linear array. If you put your linear array as an input for a mathematical function and use it as input, the distance between the objects will be controlled by the function. Please make sure that all inputs are connected, because the node is not very stable. If you want to make a grid (2D), you can use the output of a first generative array as the input of a second one. With the sin und cos functions you can also generate spirals or helix. The node is not easy to use but, I think, very flexible. The example shows a grid with a linear and a quadratic growth. I hope you can load it:-), because I play a lot with the code.

Good luck
Karsten

p.s.: All nodes I made are only drafts, to check the possibilites;-) I'm not a native speaker, so the naming may not fortunate.
Attachments:

  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:  Barry-H
7713.142 In reply to 7713.141 
Hi Karsten,
thanks for your quick reply unfortunately I cannot run Array2 it comes up with the attached error.
I will try to create an array based on the information you have given me.
Many Thanks
Barry


Attachments:

  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

 

 
Show messages:  1-2  …  63-82  83-102  103-122  123-142  143-162  163-182  183-202  …  903-912