@echo off
|
|
@REM change to the filepath
|
cd %~dp0
|
cd ..
|
|
set aerialpython=%cd%/.env/python.exe
|
set envsetting=%cd%/env/SettingEnv.bat
|
|
@REM Setting the env
|
if not exist %aerialpython% (
|
call %envsetting%
|
)
|
cd %~dp0
|
cd ..
|
|
echo change to path: %cd%
|
|
set PLYfile=./test60120.ply
|
@REM -------------- Usage: plot_ply.py [PLYfile]"
|
%aerialpython% ./scripts/plot_ply.py %PLYfile%
|
pause
|