MoI discussion forum
MoI discussion forum

Full Version: Parametric design in MoI?

Show messages:  1-4  …  445-464  465-484  485-504  505-524  525-544  545-564  565-584  …  905-912

From: bemfarmer
11 Oct 2016   [#505]
Is there a recommended software for creating User Guides or Manuals?
(Free versions preferred:-)
(I've googled for about a dozen...)

Which wiki software does MoI site use?
Is MediaWiki good?

- Brian
From: Frenchy Pilou (PILOU)
11 Oct 2016   [#506] In reply to [#505]
A simple Web page creator can be also sufficient! ;)

Two free ones
https://www.weebly.com very easy!
I have used it for this :
http://manuelgrobotovf.weebly.com/
http://zibifr.weebly.com/
http://profilbuilder2vf.weebly.com/
http://sketchupsubd.weebly.com/manuels.html
(etc...an half thousand...)

www.wix.com a little more elaborated but very easy also!
I have used it for this : http://schmoll8.wixsite.com/monolithfr
From: bemfarmer
11 Oct 2016   [#507] In reply to [#506]
Thank you Pilou.
I'll have a look.
- Brian
From: BurrMan
11 Oct 2016   [#508] In reply to [#505]
Hey bemfarmer,
Use "docbook" as your search point.

Alot of times you can find docbook filters for whatever editor you already use. Like word, openoffice, notepad++.... (havent researched myself)
From: Michael Gibson
11 Oct 2016   [#509] In reply to [#505]
Hi Brian, the MoI wiki does use MediaWiki and it is good and familiar to a lot of people. It needs PHP and MySQL set up on the web server which are usually already set up on many hosting services.

- Michael
From: bemfarmer
11 Oct 2016   [#510] In reply to [#508]
Thank you Burr, and Michael.
- Brian
From: adamio
11 Oct 2016   [#511] In reply to [#505]
https://github.com/lord/slate

https://community.algolia.com/docsearch/
From: chippwalters
11 Oct 2016   [#512] In reply to [#505]
FWIW, I like using Markdown for manuals because it can be rendered out as HTML and PDF + it's easy to read plainly. So, you end up separating the content from the display which is great as it will make migrating in the future easier.

IMO, the wikis aren't nearly as nice as they're pretty slow, and rarely render acceptable PDF output. Plus, there's always too much added functionality and content on how to use the wiki, and all other sorts of confusing information. Lastly, IMO, their design is just not so nice.

Here's an interesting little Jscript WIKI called MDWIKI which if you put on your server (or I put on my dropbox folder) can automatically convert an existing .md (markdown) file AS IT'S RUN, so you don't have to always do the .md -> HTML conversion each time you edit your .md file.

Check out this site I created using only .md and MDWIKI:
https://altuit.cloud/web/dbpub/markdown/MoiObjLibDontMove/mdwiki.html#!index.md
and here's the markdown:
https://altuit.cloud/web/dbpub/markdown/MoiObjLibDontMove/index.md

and here's another one with a different theme:

https://altuit.cloud/web/dbpub/markdown/LiveCodePublicDontMove/mdwiki.html#!altIconSplashBuilder.md

HTH.
From: bemfarmer
12 Oct 2016   [#513] In reply to [#512]
Thank you chippwalters.
So that is what an .md file is.
I've just purchased MarkdownPad2Pro for $14.95, and installed Writage, for MS Word, and Pandoc.
I have not located "good" ms word templates, nor identified what fonts to use, for a "User Manual."
- Brian
From: chippwalters
12 Oct 2016   [#514]
Hi Brian,

Please check out http://StackEdit.io
It may be one of the best markdown tools out there. It also can render HTML (different templates) as well as PDF.
From: bemfarmer
13 Oct 2016   [#515] In reply to [#514]
Thank you Chippwalters.

Stackedit looks powerful, but the install with yum, bower, npm, gulp, ... is very confusing, as I've never done such before.

- Brian
From: speedy (AL2000)
13 Oct 2016   [#516] In reply to [#515]
Hello Friends
another little example to share with you;

Karsten, I have loaded your Node ... congratulations
Just a question...
Can I put them in the Node editor with the original Max's Node
v.085?
Many thanks for your response
best
al

Attachments:
CP-Cosine Arrangement.nod

Image Attachments:
Cosine Arrangement.jpg  Cosine Arrangement2.jpg 


From: mkdm
13 Oct 2016   [#517] In reply to [#516]
Hi speedy (AL2000),

What a fantastic job!

One further step to Jewelry Design in Moi!

Thanks,

- Marco (mkdm)
From: Karsten (KMRQUS)
13 Oct 2016   [#518] In reply to [#516]
Hello Al,
I always try not to touch Max original code, only for some experiments. Nodes are normally additions, to purpose functionallity.
Have a nice day
Karsten
From: chippwalters
13 Oct 2016   [#519] In reply to [#515]
Hi Brian,

Not sure I understand. I just use it in the Chrome browser window. No need to download any app.
From: James (JFH)
15 Oct 2016   [#520] In reply to [#517]
Hi Marco,

I tried to install your PatternSelectArray node into new version of node editor without success.
The problem seems to be that there is a conflict with existing function "pointArray.prototype.getElement".
I tried renaming it, but still no luck.

Have you rewritten node for v0.85?

One suggestion I think would be useful is for node input to accept number series (disregarding commas).
In that way for example a random pattern could be generated: range/random/interp/PatternSelectArray.
Also inputs may, in later development, be generated by boolean (True/false) queries with outputs of ones & zeros.
Just a thought!

Thanks,
-James
From: mkdm
15 Oct 2016   [#521] In reply to [#520]
Hi James,

and thanks for your reply and suggestions. Much appreciated!

Right now, regarding the rewriting of the Array utility nodes that I was writing some time ago,
I decided to wait the next official stable release of Project Elephant.

Best,

- Marco (mkdm)
From: Karsten (KMRQUS)
16 Oct 2016   [#522] In reply to [#520]
Hello James,

to run PatternSelArray in V0.85 please replace the following:

source_elem.pt.x,
source_elem.pt.y,
source_elem.pt.z,
source_elem.AngleX,
source_elem.AngleY,
source_elem.AngleZ,
source_elem.Size

With:
source_elem.data[0],
source_elem.data[1],
source_elem.data[2],
source_elem.data[3],
source_elem.data[4],
source_elem.data[5],
source_elem.data[6]

at two places in the file! It seems that Max has changed the internal structure since the Node was created!

Have a nice day
Karsten
From: James (JFH)
16 Oct 2016   [#523] In reply to [#522]
Hi Karsten,

Thanks for that, it works!
Now if only we could input array to dynamically generate the pattern.

I recall you stating that you were not a "Pattern Man" [#319]
http://moi3d.com/forum/lmessages.php?webtag=MOI&msg=7713.319

IMHO the manipulation of num & pt arrays (interlacing, flipping shifting etc)
lies at the very heart of parametric design. i.e. pattern.

Anyway, thanks again
- James
From: mkdm
17 Oct 2016   [#524] In reply to [#522]
Hi Karsten,

Thanks a lot for updating PatternSelArray for V0.85. I hope it works.

Have a nice day,

- Marco (mkdm)

Show messages:  1-4  …  445-464  465-484  485-504  505-524  525-544  545-564  565-584  …  905-912