Skip to content

Commit

Permalink
sort the name of postln to be vanilla sc compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
tremblap committed Feb 22, 2022
1 parent 23a0d12 commit f171d57
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions release-packaging/HelpSource/Classes/FluidPlotter.schelp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ d = ~dummy_data.value;
// d.postln;
~fp = FluidPlotter(bounds:Rect(200,200,600,600),dict:d,mouseMoveAction:{
arg view, x, y, modifiers;
[view, x, y, modifiers].dopostln;
[view, x, y, modifiers].postln;
"".postln;
},xmin:20,xmax:20000,ymin:-130,ymax:0);
)
Expand Down Expand Up @@ -288,7 +288,7 @@ d = Dictionary.newFrom([
w = Window("test",Rect(50,50,800,600)).front;
~fp = FluidPlotter(w,Rect(50,50,400,400),dict:d,mouseMoveAction:{
arg view, x, y, modifiers;
[view, x, y, modifiers].dopostln;
[view, x, y, modifiers].postln;
"".postln;
},xmin:20,xmax:20000,ymin:-130,ymax:0);
)
Expand Down
8 changes: 4 additions & 4 deletions test/FluidPlotter_test.scd
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ d = ~dummy_data.value;
// d.postln;
~fp = FluidPlotter(bounds:Rect(200,200,600,600),dict:d,mouseMoveAction:{
arg view, x, y, modifiers;
[view, x, y, modifiers].dopostln;
[view, x, y, modifiers].postln;
"".postln;
},xmin:20,xmax:20000,ymin:-130,ymax:0);
)
Expand Down Expand Up @@ -131,7 +131,7 @@ d = Dictionary.newFrom([
w = Window("test",Rect(50,50,800,600)).front;
~fp = FluidPlotter(w,Rect(50,50,400,400),dict:d,mouseMoveAction:{
arg view, x, y, modifiers;
[view, x, y, modifiers].dopostln;
[view, x, y, modifiers].postln;
"".postln;
},xmin:20,xmax:20000,ymin:-130,ymax:0);
)
Expand Down Expand Up @@ -192,7 +192,7 @@ s.boot;
// always be a Symbol)
~ds.dump({
arg dict;
// dict.at("data").dopostln;
// dict.at("data").postln;
~fp = FluidPlotter(bounds:Rect(200,200,600,600),dict:dict,mouseMoveAction:{
arg view, x, y, modifiers;
// [x,y].postln;
Expand All @@ -202,7 +202,7 @@ s.boot;
nearest.postln;
view.highlight_(nearest);
});
// [view, x, y, modifiers].dopostln;
// [view, x, y, modifiers].postln;
// "".postln;
});
});
Expand Down

0 comments on commit f171d57

Please sign in to comment.