FPS
18 MS (3-83)
xxxxxxxxxx
35
 
1
function field(x, c, size3, n) {
2
// Use JavaScript to define variables here.
3
var t, u, v;
4
5
for (var i=0,j=0; i<size3; i++,j+=n) {
6
// Write your code inside the FOR loop.
7
// Coefficients are stored in c[].
8
// Coordinates are stored in x[].
9
// They are flat, zero-indexed arrays, so
10
//   x[j+0] is the first dimension, and
11
//   x[j+3] is the fourth dimension.
12
13
  t = x[j+0] * x[j+0];
14
  t += x[j+1] * x[j+1];
15
  t -= c[0];
16
  t = Math.sqrt(Math.abs( t ));
17
  t -= c[1];
18
  t *= t;
19
20
  u = x[j+2] * x[j+2];
21
  u += x[j+3] * x[j+3];
22
  u -= c[2];
23
  u = Math.sqrt(Math.abs( u ));
24
  u -= c[3];
25
  u *= u;
26
27
// You will need to push a new transform
28
// using the fifth dimension before
29
// this line will do anything...
30
  v = c[4] * Math.sin(c[5] * x[j+4]);
31
32
// Store output into the global values[]
33
  values[i] = t + u + v;
34
} // End for-loop.
35
} // End function.
Close Controls
Close Controls