From 86f9eee53fb488f2fd5da37e43b7147e5c5eb32b Mon Sep 17 00:00:00 2001 From: Patrick Hammer <patham9@gmail.com> Date: Mon, 9 Apr 2018 01:16:59 -0400 Subject: [PATCH] Attaching the sensation to the term --- nars_core/nars/plugin/perception/VisionChannel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nars_core/nars/plugin/perception/VisionChannel.java b/nars_core/nars/plugin/perception/VisionChannel.java index aa0a3b9426..90c5d241eb 100644 --- a/nars_core/nars/plugin/perception/VisionChannel.java +++ b/nars_core/nars/plugin/perception/VisionChannel.java @@ -73,7 +73,7 @@ public class VisionChannel extends SensoryChannel { float[][] cpy = new float[height][width]; for(int i=0;i<height;i++) { for(int j=0;j<width;j++) { - cpy[height][width] = cpy[height][width]; + cpy[i][j] = cpy[i][j]; } } VisualSpace vspace = new VisualSpace(nar, cpy, py, px, height, width); -- GitLab