Loading...
Logo
Processing Forum
Hi everyone, I am having a few problems replicating a fantastic example of a DXF Export. I've included 2 lots of code below, the first being the original example, the second being a copy of the code I have tried to implement it into. The problem regards exporting a complex 3d shape. The first example builds a complex shape with a for loop and is able to export the shape as a whole. I have tried to do this in the second example but just end up being able to export one single instance of box and not the whole shape as it appears on my screen, i.e several boxes of varying heights in a line. Here is a screen shot of the output of processing with the resulting DXF export:




Notice how the Processing output (on the left) is made of loads of boxes and the DFX output, when opened in another program (Solidworks eDrawing), is reduced to just a single instance of a box. The original example code, listed first below, works fine in both programs. 

Any help would be appreciated!

Copy code
  1. import peasy.*;
  2. import processing.dxf.*;
  3.  
  4. /*-------------------------------------------------------
  5.  *** GLOBAL VARIABLES ***
  6.  --------------------------------------------------------*/
  7. // Variable to store boolean 'export' toggle
  8. boolean dxfExport;
  9. PeasyCam theCamera;
  10. float BBOX = 400;
  11. /*-------------------------------------------------------
  12.  *** GLOBAL SETUP ***
  13.  --------------------------------------------------------*/
  14. void setup() {
  15.  
  16.   //--------------------- general things
  17.   size(600, 600, P3D);
  18.   background(0);
  19.   theCamera = new PeasyCam(this, 2*BBOX);
  20.   theCamera.lookAt(BBOX/2,BBOX/2,BBOX/2);
  21. }
  22.  
  23. /*-------------------------------------------------------
  24.  *** GLOBAL SETUP ***
  25.  --------------------------------------------------------*/
  26. void draw() {
  27.  
  28.   //--------------------- general things
  29.   background(0);
  30.   lights();
  31.  
  32.   //--------------------- if export is TRUE
  33.   if (dxfExport) {
  34.     beginRaw(DXF, "output.dxf");
  35.   }
  36.  
  37.   //--------------------- do all your drawing here
  38.   stroke(120);
  39.   fill(120);
  40.   pushMatrix();
  41.   for(int i = 0; i < 100; ++i) {
  42.     translate(BBOX/2,BBOX/2,BBOX/2);  
  43.     rotateX(i*5);
  44.     rotateY(i*7);
  45.     rotateZ(i*12);
  46.     box (BBOX +(5*i) );
  47.   }
  48.   popMatrix();
  49.  
  50.   //--------------------- finish export and set dxfExport to FALSE
  51.   if(dxfExport) {
  52.     endRaw();
  53.     dxfExport = false;
  54.   }
  55. }
  56.  
  57. /*-------------------------------------------------------
  58.  *** GLOBAL KEYSTOKE EVENTS ***
  59.  --------------------------------------------------------*/
  60. void keyPressed() {
  61.   // use a key press so that it doesn't make a million files
  62.   switch (key) {
  63.  
  64.     case 'x':
  65.     dxfExport = true;
  66.     println("DXF export complete!");
  67.     break;
  68.  
  69.     case 's':
  70.     saveFrame("boxes.jpg");
  71.     println("screen grab made");
  72.     break;
  73.   }
  74.  
  75. }

 Here's my code:

Copy code
  1. import krister.Ess.*;
  2. import peasy.*;
  3. import processing.dxf.*;
  4. //---------------------------------------------------------//Declare Array
  5. ArrayList myArrayList;

  6. AudioChannel myChannel;
  7. FFT myFFT;
  8.   int d=30;
  9.   int bufferSize=256;
  10.   boolean writeToArray;
  11.   boolean drawFromArray;
  12.   boolean dxfExport;
  13.   PeasyCam theCamera;
  14.   float BBOX = 400;


  15. void setup() {
  16.   size(1000,500,P3D);
  17.   background(0);
  18.   theCamera = new PeasyCam(this, 2*BBOX);
  19.   theCamera.lookAt(BBOX/2,BBOX/2,BBOX/2);
  20.   Ess.start(this);  // start up Ess
  21. //--------------------------------------------------------//Create Array  
  22.   myArrayList = new ArrayList();
  23.   
  24. //--------------------------------------------------------//Setup FFT 

  25.   myChannel=new AudioChannel("cell.aif");// load "cell.aif" into a new AudioChannel
  26.   myFFT=new FFT(bufferSize*2); // set FFT size
  27.   myFFT.damp(.1); // damp our spectrum data
  28.   myChannel.play(1);  // start the sound looping once
  29.   
  30.   fill(#B2B0B0);
  31. }


  32. void draw() {
  33.   lights();
  34.    background (0);
  35. //--------------------- if export is TRUE
  36.   if (dxfExport) {
  37.     beginRaw(DXF, "output.dxf");
  38.   }
  39.   
  40. //------------------------------------------------------------------------------------------------------------//If 'W/w" is pressed, write to array
  41.    if(keyPressed) {
  42.    if (key == 'w' || key == 'W') {
  43.       writeToArray = true;}
  44.   } else {
  45.       writeToArray = false;}
  46.       if(writeToArray){
  47. //-------------------------------------------------------//get our spectrum data
  48.       myFFT.getSpectrum(myChannel);
  49. //-------------------------------------------------------//write values to our ArrayList
  50.       myArrayList.add(myFFT.spectrum[1]);
  51.   }
  52. //------------------------------------------------------------------------------------------------------------//Draw from array        
  53.     for(int i = 0; i < myArrayList.size(); i++){ 
  54. //-------------------------------------------------------//map each number from the array to a useful range
  55.     float x = map((Float)myArrayList.get(i), 0.0, 0.05, 0, 100);    
  56. //-------------------------------------------------------//draw something
  57.     pushMatrix();
  58.     translate(i*5, height/2, i*2-500);
  59.     box(5, x, 5);
  60.     popMatrix();
  61. //-------------------------------------------------------//finish export and set dxfExport to FALSE
  62.     if(dxfExport) {
  63.     endRaw();
  64.     dxfExport = false;
  65.   }
  66.  }
  67. }
  68.  
  69. void keyPressed() {
  70.   // use a key press so that it doesn't make a million files
  71.   switch (key) {
  72.  
  73.     case 'x':
  74.     dxfExport = true;
  75.     println("DXF export complete!");
  76.     break;
  77.  
  78.     case 's':
  79.     saveFrame("boxes.jpg");
  80.     println("screen grab made");
  81.     break;
  82.   }
  83. }
  84. //-------------------------------------------------------//we are done, clean up Ess
  85. public void stop() {
  86.   Ess.stop();
  87.   super.stop();
  88. }