Skip to content
Snippets Groups Projects
Commit f084898b authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

Merge branch 'pranay_36/purr-data-pd-l2ork_double'

parents aba5e411 5bceb502
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -9,6 +9,13 @@
#include <stdio.h>
#include <string.h>
// an attempt to align floating point numbers in columns
#if PD_FLOATSIZE == 32
#define FLOAT_SPECIFIER "%#-.6g \t"
#elif PD_FLOATSIZE == 64
#define FLOAT_SPECIFIER "%#-.9lg \t"
#endif
/* ------------------------- print~ -------------------------- */
static t_class *print_class;
......@@ -30,8 +37,8 @@ static t_int *print_perform(t_int *w)
int i=0;
startpost("%s:", x->x_sym->s_name);
for(i=0; i<n; i++) {
if(i%8==0)endpost();
startpost("%-8.5g", in[i]);
if(i%4==0)endpost();
startpost(FLOAT_SPECIFIER, in[i]);
}
endpost();
x->x_count--;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment