Différences
Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentes Révision précédente Prochaine révision | Révision précédente | ||
|
ressource:logiciel:wings3d [2020/04/23 16:38] emoc [Ressources] |
ressource:logiciel:wings3d [2020/11/16 10:59] (Version actuelle) emoc [Installation sur Debian stretch 9.5] |
||
|---|---|---|---|
| Ligne 9: | Ligne 9: | ||
| Site principal : http://www.wings3d.com/ | Site principal : http://www.wings3d.com/ | ||
| + | ===== Installation ===== | ||
| + | |||
| + | ==== Installation sur Debian stretch 9.5 ==== | ||
| + | |||
| + | L'installation se fait simplement par apt : | ||
| + | |||
| + | sudo apt-get install wings3d | ||
| + | | ||
| + | Pour compléter, on peut installer un moteur de rendu comme [[https://en.wikipedia.org/wiki/POV-Ray|POV-ray]] | ||
| + | |||
| + | sudo apt-get install povray | ||
| + | # et adapter en créant les fichiers de configuration personnalisés | ||
| + | cd ~ | ||
| + | mkdir ./.povray | ||
| + | cd .povray | ||
| + | mkdir ./3.7 | ||
| + | cd ./3.7 | ||
| + | cp /etc/povray/3.7/povray.conf povray.conf | ||
| + | cp /etc/povray/3.7/povray.ini povray.ini | ||
| + | nano ~/.povray/3.7/povray.conf # ou avec un autre éditeur de texte | ||
| + | | ||
| + | Dans le fichier povray.conf, modifier les lignes suivantes (d'après : http://www.wings3d.com/forum/showthread.php?tid=2899&pid=15215#pid15215 ) | ||
| + | |||
| + | <code> | ||
| + | [Permitted Paths] | ||
| + | ;read = "/this/directory/contains space caracters" | ||
| + | read* = %INSTALLDIR%/include | ||
| + | read* = %INSTALLDIR%/scenes | ||
| + | read* = %INSTALLDIR%/../../etc | ||
| + | read* = /usr/share/doc/povray/examples | ||
| + | read* = /etc/povray | ||
| + | read+write* = %HOME% | ||
| + | read+write* = /tmp | ||
| + | read+write = . | ||
| + | </code> | ||
| + | |||
| + | En alternative à POV-Ray, on peut aussi installer Yafaray, cf. https://github.com/YafaRay/Core/tree/master/building/linux | ||
| + | | ||
| + | Une fois POV-Ray installé, il faut ajouter des lumières (cliquer sur une zone sans objet sélectionnable) puis demander un rendu de l'image (File > Render), dans la version que j'utilise, plusieurs définitions de rendu font crasher wings3d :/ | ||
| ===== Ressources ===== | ===== Ressources ===== | ||
| Ligne 28: | Ligne 67: | ||
| https://en.wikibooks.org/wiki/Wings_3D/Tutorials/Modeling_the_Junkers_F13 \\ | https://en.wikibooks.org/wiki/Wings_3D/Tutorials/Modeling_the_Junkers_F13 \\ | ||
| https://forum.thegamecreators.com/thread/138078 \\ | https://forum.thegamecreators.com/thread/138078 \\ | ||
| + | sur le rendu avec POV-Ray / Yafaray : http://www.digitaldung.com/Wings3D%20Rendering.html \\ | ||