#!/usr/bin/python
# $Id: pyformex 1994 2011-07-09 12:44:12Z bverheg $
##
##  This file is part of pyFormex 0.8.4 Release Sat Jul  9 14:43:11 2011
##  pyFormex is a tool for generating, manipulating and transforming 3D
##  geometrical models by sequences of mathematical operations.
##  Homepage: http://pyformex.org   (http://pyformex.berlios.de)
##  Copyright (C) Benedict Verhegghe (benedict.verhegghe@ugent.be) 
##  Distributed under the GNU General Public License version 3 or later.
##
##
##  This program is free software: you can redistribute it and/or modify
##  it under the terms of the GNU General Public License as published by
##  the Free Software Foundation, either version 3 of the License, or
##  (at your option) any later version.
##
##  This program is distributed in the hope that it will be useful,
##  but WITHOUT ANY WARRANTY; without even the implied warranty of
##  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
##  GNU General Public License for more details.
##
##  You should have received a copy of the GNU General Public License
##  along with this program.  If not, see http://www.gnu.org/licenses/.
##
"""pyFormex, a free program for creating and manipulating 3D geometry.

pyFormex is a powerful tool for generating, manipulating, transforming and
displaying large structural models of 3D geometry.
Based on a powerful scripting language, pyFormex is exceptionally suited for
generating parametric models and for the automization of tedious and recurring
tasks in the handling of geometrical models.
Built around a fully open architecture pyFormex allows the user to combine the
program with nearly any other software and to extend the program to suit his
own needs.

pyFormex is being developed at the IBiTech, Ghent University, and can be
distributed under the GNU General Public License, version 3 or later.
(C) 2004-2009 Benedict Verhegghe (benedict.verhegghe@ugent.be)) 
"""

# Get the pyformex dir and put it on the head of sys.path
import sys,os
_scriptdir = sys.path[0]

# In case we execute the pyformex script from inside the
# pyformex package dir: add the parent to the front of sys.path
# to pick up this package by preference

if _scriptdir.endswith('pyformex'):
    sys.path[:0] = [ os.path.dirname(_scriptdir) ]
    
try:
    import pyformex
    pyformex.scriptdir = _scriptdir
    # we could remove the sys.path[0] again?
except:
    print("Could not import pyformex.")
    print("This probably means that pyFormex was not properly installed.")

# Put the pyformex path in front.
sys.path = [ pyformex.__path__[0] ] + sys.path

#from pyformex.main import run
from main import run

if __name__ == "__main__":
    sys.exit(run(sys.argv[1:]))

# End
