# Test sub pixel positioning (A round about way of getting an iso surface.)
# See cubed sphere for the surface before sub pixel poisitioning.

catch {load vtktcl}
if { [catch {set VTK_TCL $env(VTK_TCL)}] != 0} { set VTK_TCL "../../examplesTcl" }
if { [catch {set VTK_DATA $env(VTK_DATA)}] != 0} { set VTK_DATA "../../../vtkdata" }

source $VTK_TCL/vtkInt.tcl

vtkSphere sphere
    sphere SetCenter 1 1 1
    sphere SetRadius 0.9

vtkSampleFunction sample
    sample SetImplicitFunction sphere
    sample SetModelBounds  0 2 0 2 0 2
    sample SetSampleDimensions 30 30 30
    sample ComputeNormalsOff


vtkThreshold threshold
    threshold SetInput [sample GetOutput]
    threshold ThresholdByLower 0.001

vtkGeometryFilter geometry
  geometry SetInput [threshold GetOutput]

vtkImageGradient grad
grad SetDimensionality 3
grad SetInput [sample GetOutput]

vtkImageMathematics mult
mult SetOperationToMultiply
mult SetInput1 [sample GetOutput]
mult SetInput2 [sample GetOutput]

vtkImageToStructuredPoints itosp
itosp SetInput [mult GetOutput]
itosp SetVectorInput [grad GetOutput]

vtkSubPixelPositionEdgels sub
sub SetInput [geometry GetOutput]
sub SetGradMaps [itosp GetOutput]


vtkDataSetMapper mapper
  mapper SetInput [sub GetOutput]

vtkActor actor
  actor SetMapper mapper

# Create renderer stuff
#
vtkRenderer ren1
vtkRenderWindow renWin
    renWin AddRenderer ren1
vtkRenderWindowInteractor iren
    iren SetRenderWindow renWin

# Add the actors to the renderer, set the background and size
#
ren1 AddActor actor
[ren1 GetActiveCamera] Azimuth 20
[ren1 GetActiveCamera] Elevation 30
ren1 SetBackground 0.1 0.2 0.4
renWin SetSize 450 450

# render the image
#
iren SetUserMethod {wm deiconify .vtkInteract}
set cam1 [ren1 GetActiveCamera]
$cam1 Zoom 1.4
iren Initialize

#renWin SetFileName "valid/imageWarp.tcl.ppm"
#renWin SaveImageAsPPM

# prevent the tk window from showing up then start the event loop
wm withdraw .


