Export STL dans Emptycanvas ou Générer des fichiers STL pour imprimantes 3D

Voici un exemple de script pour générer un fichier STL. La qualité des fichiers générés n’est pas garantie et vous pourriez avoir besoin d’un logiciel de visualisation 3D :

package be.ibiiztera.md.pmatrix.test.pushmatrix.newtest;import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;

import be.ibiiztera.md.pmatrix.pushmatrix.Point3D;
import be.ibiiztera.md.pmatrix.pushmatrix.Scene;
import be.ibiiztera.md.pmatrix.pushmatrix.export.STLExport;
import be.ibiiztera.md.pmatrix.pushmatrix.generator.TRISphere;

public class TestSTL {
public static void main(String [] args)
{
Scene s = new Scene();

s.add(new TRISphere(Point3D.O0, 10));

try {
STLExport.save(new File(args[0]), s);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

}
}

 

(sera inclus dans la version 10.0)


Comments

Laisser un commentaire

Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *