-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathscannHelp.py
20 lines (19 loc) · 896 Bytes
/
scannHelp.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/python
# Filename : scannHelp.py - 2014/05
#-----------------------------------
## simple 3d scanner - octopusengine.eu
def help():
print("-----------------------------------------------------")
print("simple3dscanner 0.35 --- help --- ")
print("-----------------------------------------------------")
print("scannStart.py [projectName] [numberOfScann]")
print("Correct input example: scannStart.py test 100")
print(">> First argument > test => project name" )
print(" (default: noname)" )
print(" create file projectName-dateTime.xzy" )
print(">> Second argument > 100 => number of scann")
print(" 100 > one step 360/100 degrees")
print(" (default: 6, for quick test)")
print("-----------------------------------------------------")
print("(c) https://github.com/octopusengine/simple3dscanner")
#---end---