<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<p>I think the description in Tcl/scriptingScalarField3D.tcl is inconsistent with the coding(line 404 405 406 vs line 408):</p>
<blockquote>
<p>402 "-basalplane" {<br>
403 switch $option {<br>
404 1 { set iplane 1 }<br>
405 2 { set iplane 2 }<br>
406 3 { set iplane 3 }<br>
407 default {<br>
408 ErrorDialog "the value of -basalplane must be 0, 1, or 2, but got $option"<br>
409 continue<br>
410 }<br>
411 }<br>
412 set scalarField3D(basalplane) $iplane<br>
413 set t .iso<br>
414 set ft $t.ft<br>
415 set fb1 $t.fb1<br>
416 set fb2 $t.fb2<br>
417 IsoControl_Show colorplane$iplane $fb1 $fb2 $ft.b1 $ft.b2 $ft.b3 $ft.b4<br>
418 }<br>
</p>
</blockquote>
<p>I think line 404 405 406 should be changed to:</p>
<blockquote>
<p>404 0 { set iplane 1 }<br>
405 1 { set iplane 2 }<br>
406 2 { set iplane 3 }</p>
</blockquote>
<p>Best regards!<br>
</p>
</body>
</html>