#include <stdio.h>
#include <stdlib.h>
#include "ptwX.h"
 
Go to the source code of this file.
      
        
          | void ptwX_simplePrint  | 
          ( | 
          ptwXPoints const *  | 
          ptwX,  | 
        
        
           | 
           | 
          char const *  | 
          format  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Definition at line 29 of file ptwX_misc.cc.
void ptwX_simpleWrite(ptwXPoints const *ptwX, FILE *f, char const *format)
 
 
 
 
      
        
          | void ptwX_simpleWrite  | 
          ( | 
          ptwXPoints const *  | 
          ptwX,  | 
        
        
           | 
           | 
          FILE *  | 
          f,  | 
        
        
           | 
           | 
          char const *  | 
          format  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Definition at line 19 of file ptwX_misc.cc.
   22     double *p1 = ptwX->points;
 
   24     for( i1 = 0; i1 < ptwX->length; ++i1, ++p1 ) fprintf( f, format, *p1 );