[PD-cvs] externals/markex tripleRand-help.pd, 1.1, 1.2 tripleRand.c, 1.4, 1.5

IOhannes m zmölnig zmoelnig at users.sourceforge.net
Mon Dec 17 21:32:49 CET 2007


Update of /cvsroot/pure-data/externals/markex
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16176

Modified Files:
	tripleRand-help.pd tripleRand.c 
Log Message:
fixed bug that was exposed in help-patch; added example for list-ranges
in help-patch


Index: tripleRand-help.pd
===================================================================
RCS file: /cvsroot/pure-data/externals/markex/tripleRand-help.pd,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** tripleRand-help.pd	2 Oct 2003 03:39:51 -0000	1.1
--- tripleRand-help.pd	17 Dec 2007 20:32:47 -0000	1.2
***************
*** 1,4 ****
  #N canvas 132 108 604 504 10;
- #X text 124 68 GEM object;
  #X obj 136 234 unpack 0 0 0;
  #X floatatom 136 280 4 0 0 0 - - -;
--- 1,3 ----
***************
*** 10,19 ****
  #X obj 136 184 tripleRand 5;
  #X floatatom 215 146 5 0 0 0 - - -;
! #X obj 136 134 bng 15 250 50 0 empty empty empty 0 -6 32 8 -262144
! -1 -1;
! #X connect 1 0 2 0;
! #X connect 1 1 3 0;
! #X connect 1 2 4 0;
! #X connect 7 0 1 0;
! #X connect 8 0 7 1;
! #X connect 9 0 7 0;
--- 9,21 ----
  #X obj 136 184 tripleRand 5;
  #X floatatom 215 146 5 0 0 0 - - -;
! #X obj 136 134 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1
! -1;
! #X text 123 68 MarkEx object;
! #X msg 278 142 1 5 10;
! #X connect 0 0 1 0;
! #X connect 0 1 2 0;
! #X connect 0 2 3 0;
! #X connect 6 0 0 0;
! #X connect 7 0 6 1;
! #X connect 8 0 6 0;
! #X connect 10 0 6 1;

Index: tripleRand.c
===================================================================
RCS file: /cvsroot/pure-data/externals/markex/tripleRand.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** tripleRand.c	30 Sep 2006 15:56:17 -0000	1.4
--- tripleRand.c	17 Dec 2007 20:32:47 -0000	1.5
***************
*** 92,96 ****
      x->t_out1 = outlet_new(&x->x_obj, 0);
  
!     inlet_new(&x->x_obj, &x->x_obj.ob_pd, &s_list, gensym("newVals"));
      return (x);
  }
--- 92,96 ----
      x->t_out1 = outlet_new(&x->x_obj, 0);
  
!     inlet_new(&x->x_obj, &x->x_obj.ob_pd, &s_float, gensym("newVals"));
      return (x);
  }
***************
*** 100,103 ****
--- 100,104 ----
      tripleRand_class = class_new(gensym("tripleRand"), (t_newmethod)tripleRand_new, 0,
      	sizeof(t_tripleRand), 0, A_DEFFLOAT, A_DEFFLOAT, A_DEFFLOAT, 0);
+ 
      class_addbang(tripleRand_class, (t_method)tripleRand_bang);
      class_addmethod(tripleRand_class, (t_method)setTripleRandVals,





More information about the Pd-cvs mailing list