Skip to content

Commit bf13f33

Browse files
committed
Fix Plasma_Cloud template
After importing ij.ImagePlus, should reference with just "ImagePlus" and not use the package prefix.
1 parent d17879f commit bf13f33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/resources/script-templates/Ruby/Plasma_Cloud.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# Create an ImagePlus
99
cp = ColorProcessor.new(w, h)
10-
i = ij.ImagePlus.new "Plasma Cloud", cp
10+
i = ImagePlus.new "Plasma Cloud", cp
1111

1212
# Set Image's pixels
1313
pixels = cp.getPixels;

0 commit comments

Comments
 (0)