You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-16Lines changed: 9 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,6 @@ LDViewer is a Google Web Toolkit (GWT) widget containing a [processingjs][0] ske
8
8
9
9
Following steps are required:
10
10
11
-
12
-
Either create new interface that extends or create a class that implements the base interface `ProcessingInstance` and annotate it with `@JsType`. To interact with methods on the processing sketch define methods on that interface (i.e. `testMethod`):
To display data following information users have to call the `showLDValues()` function with following parameter:
26
-
-position: Array of integer
27
-
- r2Values: multi-dimensional array of floats in a [triangular matrix][7] form.
28
-
- start: start position (should be the first position of the position array)
29
-
- end: end position (should be the last position of the position array)
22
+
To display data following information users have to call the `showLDValues(int[] positions,float[][] r2Values, int start, int end)` function with following parameter:
23
+
-`positions`: Array of integer
24
+
-`r2Values`: multi-dimensional array of floats in a [triangular matrix][2] form.
25
+
-`start`: start position (should be the first position of the position array)
26
+
-`end`: end position (should be the last position of the position array)
30
27
31
-
An [example of this data][8] can be found in the sample application and one could load it this way:
28
+
An [example of this data][3] can be found in the sample application and one could load it this way:
0 commit comments