#!/bin/sh

#Edit this variable to run "grapher-3d" from any directory.

INSTALL_DIR="."
#INSTALL_DIR="/usr/local"

#Set Tcl/Tk environment and location of cube.data example.

TCL_LIBRARY=$INSTALL_DIR/lib/grapher-3d/tcl7.4; export TCL_LIBRARY
TK_LIBRARY=$INSTALL_DIR/lib/grapher-3d/tk4.0; export TK_LIBRARY
WISH=$INSTALL_DIR/bin/grapher-wish; export WISH
CUBE=$INSTALL_DIR/lib/grapher-3d/cube.example; export CUBE 

#Launch the driver.

$INSTALL_DIR/bin/grapher-driver 

