summaryrefslogtreecommitdiff
path: root/trunk/reprap/miscellaneous/python-beanshell-scripts/skeinforge_tools/skeinforge_utilities/__init__.py
blob: 67ff00a2b23109de78cab718654895041687b5d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
__all__ = ['euclidean', 'gcodec', 'intercircle', 'preferences', 'trianglemesh', 'vec3']

#This is required to workaround the python import bug where relative imports don't work if the module is imported as a main module.

import os
import sys

numberOfLevelsDeepInPackageHierarchy = 2
packageFilePath = os.path.abspath( __file__ )
for level in range( numberOfLevelsDeepInPackageHierarchy + 1 ):
	packageFilePath = os.path.dirname( packageFilePath )
if packageFilePath not in sys.path:
	sys.path.insert( 0, packageFilePath )