#!/bin/sh

jarpath="`dirname $0`/projections.jar"

if test "$OSTYPE" = cygwin && test -x /usr/bin/cygpath 
then
  jarpath=`/usr/bin/cygpath -w -a $jarpath`
fi

java -ms100000000 -mx512000000 \
  -classpath $jarpath \
  projections.gui.MainWindow $*
