diff --git a/release-packaging/HelpSource/Classes/FluidPlotter.schelp b/release-packaging/HelpSource/Classes/FluidPlotter.schelp index bc0fb3ee..512d09ea 100644 --- a/release-packaging/HelpSource/Classes/FluidPlotter.schelp +++ b/release-packaging/HelpSource/Classes/FluidPlotter.schelp @@ -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); ) @@ -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); ) diff --git a/test/FluidPlotter_test.scd b/test/FluidPlotter_test.scd index a6440833..1bb75f99 100644 --- a/test/FluidPlotter_test.scd +++ b/test/FluidPlotter_test.scd @@ -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); ) @@ -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); ) @@ -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; @@ -202,7 +202,7 @@ s.boot; nearest.postln; view.highlight_(nearest); }); - // [view, x, y, modifiers].dopostln; + // [view, x, y, modifiers].postln; // "".postln; }); });