First time here? Check out the Help page!
1 | initial version |
I donĀ“t know if it is possible by another measure. But perhaps you can translate this code to ruby, then you can use the measure, add some arguments etc. and run it:
OpenStudio.Path Path = new Path("YourMeasurePath");
BCLMeasure.load(Path);
or:
OpenStudio.Path Path = new Path("YourMeasurePath");
BCLMeasure measure = new BCLMeasure(Path);
measure.doSomething();
I think it would be possible to read a Path in a Measure and load it to OS.