diff --git a/behave-lib/behave-mirror b/behave-lib/behave-mirror index 49a1a248..4b1d745e 160000 --- a/behave-lib/behave-mirror +++ b/behave-lib/behave-mirror @@ -1 +1 @@ -Subproject commit 49a1a24883d50711a73a98ed94b65410cab37d13 +Subproject commit 4b1d745e8aa3bea53e29dda4c39c6558b546bbeb diff --git a/behave-lib/include/cpp/emscripten/glue.cpp b/behave-lib/include/cpp/emscripten/glue.cpp index 308318ac..455ae01b 100644 --- a/behave-lib/include/cpp/emscripten/glue.cpp +++ b/behave-lib/include/cpp/emscripten/glue.cpp @@ -1,34 +1,35 @@ #include -#include -EM_JS_DEPS(webidl_binder, "$intArrayFromString,$UTF8ToString,$alignMemory,$addOnInit"); +EM_JS_DEPS(webidl_binder, "$intArrayFromString"); extern "C" { -// Define custom allocator functions that we can force export using -// EMSCRIPTEN_KEEPALIVE. This avoids all webidl users having to add -// malloc/free to -sEXPORTED_FUNCTIONS. -EMSCRIPTEN_KEEPALIVE void webidl_free(void* p) { free(p); } -EMSCRIPTEN_KEEPALIVE void* webidl_malloc(size_t len) { return malloc(len); } +// Not using size_t for array indices as the values used by the javascript code are signed. +EM_JS(void, array_bounds_check_error, (size_t idx, size_t size), { + throw 'Array index ' + idx + ' out of bounds: [0,' + size + ')'; +}); -// Interface: VoidPtr +void array_bounds_check(const int array_size, const int array_idx) { + if (array_idx < 0 || array_idx >= array_size) { + array_bounds_check_error(array_idx, array_size); + } +} +// VoidPtr void EMSCRIPTEN_KEEPALIVE emscripten_bind_VoidPtr___destroy___0(void** self) { delete self; } -// Interface: DoublePtr - +// DoublePtr void EMSCRIPTEN_KEEPALIVE emscripten_bind_DoublePtr___destroy___0(DoublePtr* self) { delete self; } -// Interface: BoolVector - +// BoolVector BoolVector* EMSCRIPTEN_KEEPALIVE emscripten_bind_BoolVector_BoolVector_0() { return new BoolVector(); @@ -58,8 +59,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_BoolVector___destroy___0(BoolVector* s delete self; } -// Interface: CharVector - +// CharVector CharVector* EMSCRIPTEN_KEEPALIVE emscripten_bind_CharVector_CharVector_0() { return new CharVector(); @@ -89,8 +89,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_CharVector___destroy___0(CharVector* s delete self; } -// Interface: IntVector - +// IntVector IntVector* EMSCRIPTEN_KEEPALIVE emscripten_bind_IntVector_IntVector_0() { return new IntVector(); @@ -120,8 +119,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_IntVector___destroy___0(IntVector* sel delete self; } -// Interface: DoubleVector - +// DoubleVector DoubleVector* EMSCRIPTEN_KEEPALIVE emscripten_bind_DoubleVector_DoubleVector_0() { return new DoubleVector(); @@ -151,8 +149,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_DoubleVector___destroy___0(DoubleVecto delete self; } -// Interface: SpeciesMasterTableRecordVector - +// SpeciesMasterTableRecordVector SpeciesMasterTableRecordVector* EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0() { return new SpeciesMasterTableRecordVector(); @@ -182,263 +179,245 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeciesMasterTableRecordVector___destr delete self; } -// Interface: AreaUnits - +// AreaUnits -double EMSCRIPTEN_KEEPALIVE emscripten_bind_AreaUnits_toBaseUnits_2(double value, AreaUnits_AreaUnitsEnum units) { - return AreaUnits::toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_AreaUnits_toBaseUnits_2(AreaUnits* self, double value, AreaUnits_AreaUnitsEnum units) { + return self->toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_AreaUnits_fromBaseUnits_2(double value, AreaUnits_AreaUnitsEnum units) { - return AreaUnits::fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_AreaUnits_fromBaseUnits_2(AreaUnits* self, double value, AreaUnits_AreaUnitsEnum units) { + return self->fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_AreaUnits___destroy___0(AreaUnits* self) { delete self; } -// Interface: BasalAreaUnits - +// BasalAreaUnits -double EMSCRIPTEN_KEEPALIVE emscripten_bind_BasalAreaUnits_toBaseUnits_2(double value, BasalAreaUnits_BasalAreaUnitsEnum units) { - return BasalAreaUnits::toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_BasalAreaUnits_toBaseUnits_2(BasalAreaUnits* self, double value, BasalAreaUnits_BasalAreaUnitsEnum units) { + return self->toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_BasalAreaUnits_fromBaseUnits_2(double value, BasalAreaUnits_BasalAreaUnitsEnum units) { - return BasalAreaUnits::fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_BasalAreaUnits_fromBaseUnits_2(BasalAreaUnits* self, double value, BasalAreaUnits_BasalAreaUnitsEnum units) { + return self->fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_BasalAreaUnits___destroy___0(BasalAreaUnits* self) { delete self; } -// Interface: FractionUnits +// FractionUnits - -double EMSCRIPTEN_KEEPALIVE emscripten_bind_FractionUnits_toBaseUnits_2(double value, FractionUnits_FractionUnitsEnum units) { - return FractionUnits::toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_FractionUnits_toBaseUnits_2(FractionUnits* self, double value, FractionUnits_FractionUnitsEnum units) { + return self->toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_FractionUnits_fromBaseUnits_2(double value, FractionUnits_FractionUnitsEnum units) { - return FractionUnits::fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_FractionUnits_fromBaseUnits_2(FractionUnits* self, double value, FractionUnits_FractionUnitsEnum units) { + return self->fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_FractionUnits___destroy___0(FractionUnits* self) { delete self; } -// Interface: LengthUnits - +// LengthUnits -double EMSCRIPTEN_KEEPALIVE emscripten_bind_LengthUnits_toBaseUnits_2(double value, LengthUnits_LengthUnitsEnum units) { - return LengthUnits::toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_LengthUnits_toBaseUnits_2(LengthUnits* self, double value, LengthUnits_LengthUnitsEnum units) { + return self->toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_LengthUnits_fromBaseUnits_2(double value, LengthUnits_LengthUnitsEnum units) { - return LengthUnits::fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_LengthUnits_fromBaseUnits_2(LengthUnits* self, double value, LengthUnits_LengthUnitsEnum units) { + return self->fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_LengthUnits___destroy___0(LengthUnits* self) { delete self; } -// Interface: LoadingUnits +// LoadingUnits - -double EMSCRIPTEN_KEEPALIVE emscripten_bind_LoadingUnits_toBaseUnits_2(double value, LoadingUnits_LoadingUnitsEnum units) { - return LoadingUnits::toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_LoadingUnits_toBaseUnits_2(LoadingUnits* self, double value, LoadingUnits_LoadingUnitsEnum units) { + return self->toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_LoadingUnits_fromBaseUnits_2(double value, LoadingUnits_LoadingUnitsEnum units) { - return LoadingUnits::fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_LoadingUnits_fromBaseUnits_2(LoadingUnits* self, double value, LoadingUnits_LoadingUnitsEnum units) { + return self->fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_LoadingUnits___destroy___0(LoadingUnits* self) { delete self; } -// Interface: SurfaceAreaToVolumeUnits - +// SurfaceAreaToVolumeUnits -double EMSCRIPTEN_KEEPALIVE emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2(double value, SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum units) { - return SurfaceAreaToVolumeUnits::toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2(SurfaceAreaToVolumeUnits* self, double value, SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum units) { + return self->toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2(double value, SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum units) { - return SurfaceAreaToVolumeUnits::fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2(SurfaceAreaToVolumeUnits* self, double value, SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum units) { + return self->fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0(SurfaceAreaToVolumeUnits* self) { delete self; } -// Interface: SpeedUnits - +// SpeedUnits -double EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeedUnits_toBaseUnits_2(double value, SpeedUnits_SpeedUnitsEnum units) { - return SpeedUnits::toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeedUnits_toBaseUnits_2(SpeedUnits* self, double value, SpeedUnits_SpeedUnitsEnum units) { + return self->toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeedUnits_fromBaseUnits_2(double value, SpeedUnits_SpeedUnitsEnum units) { - return SpeedUnits::fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeedUnits_fromBaseUnits_2(SpeedUnits* self, double value, SpeedUnits_SpeedUnitsEnum units) { + return self->fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeedUnits___destroy___0(SpeedUnits* self) { delete self; } -// Interface: PressureUnits +// PressureUnits - -double EMSCRIPTEN_KEEPALIVE emscripten_bind_PressureUnits_toBaseUnits_2(double value, PressureUnits_PressureUnitsEnum units) { - return PressureUnits::toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_PressureUnits_toBaseUnits_2(PressureUnits* self, double value, PressureUnits_PressureUnitsEnum units) { + return self->toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_PressureUnits_fromBaseUnits_2(double value, PressureUnits_PressureUnitsEnum units) { - return PressureUnits::fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_PressureUnits_fromBaseUnits_2(PressureUnits* self, double value, PressureUnits_PressureUnitsEnum units) { + return self->fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_PressureUnits___destroy___0(PressureUnits* self) { delete self; } -// Interface: SlopeUnits - +// SlopeUnits -double EMSCRIPTEN_KEEPALIVE emscripten_bind_SlopeUnits_toBaseUnits_2(double value, SlopeUnits_SlopeUnitsEnum units) { - return SlopeUnits::toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_SlopeUnits_toBaseUnits_2(SlopeUnits* self, double value, SlopeUnits_SlopeUnitsEnum units) { + return self->toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_SlopeUnits_fromBaseUnits_2(double value, SlopeUnits_SlopeUnitsEnum units) { - return SlopeUnits::fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_SlopeUnits_fromBaseUnits_2(SlopeUnits* self, double value, SlopeUnits_SlopeUnitsEnum units) { + return self->fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_SlopeUnits___destroy___0(SlopeUnits* self) { delete self; } -// Interface: DensityUnits - +// DensityUnits -double EMSCRIPTEN_KEEPALIVE emscripten_bind_DensityUnits_toBaseUnits_2(double value, DensityUnits_DensityUnitsEnum units) { - return DensityUnits::toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_DensityUnits_toBaseUnits_2(DensityUnits* self, double value, DensityUnits_DensityUnitsEnum units) { + return self->toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_DensityUnits_fromBaseUnits_2(double value, DensityUnits_DensityUnitsEnum units) { - return DensityUnits::fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_DensityUnits_fromBaseUnits_2(DensityUnits* self, double value, DensityUnits_DensityUnitsEnum units) { + return self->fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_DensityUnits___destroy___0(DensityUnits* self) { delete self; } -// Interface: HeatOfCombustionUnits +// HeatOfCombustionUnits - -double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2(double value, HeatOfCombustionUnits_HeatOfCombustionUnitsEnum units) { - return HeatOfCombustionUnits::toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2(HeatOfCombustionUnits* self, double value, HeatOfCombustionUnits_HeatOfCombustionUnitsEnum units) { + return self->toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2(double value, HeatOfCombustionUnits_HeatOfCombustionUnitsEnum units) { - return HeatOfCombustionUnits::fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2(HeatOfCombustionUnits* self, double value, HeatOfCombustionUnits_HeatOfCombustionUnitsEnum units) { + return self->fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatOfCombustionUnits___destroy___0(HeatOfCombustionUnits* self) { delete self; } -// Interface: HeatSinkUnits - +// HeatSinkUnits -double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSinkUnits_toBaseUnits_2(double value, HeatSinkUnits_HeatSinkUnitsEnum units) { - return HeatSinkUnits::toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSinkUnits_toBaseUnits_2(HeatSinkUnits* self, double value, HeatSinkUnits_HeatSinkUnitsEnum units) { + return self->toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSinkUnits_fromBaseUnits_2(double value, HeatSinkUnits_HeatSinkUnitsEnum units) { - return HeatSinkUnits::fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSinkUnits_fromBaseUnits_2(HeatSinkUnits* self, double value, HeatSinkUnits_HeatSinkUnitsEnum units) { + return self->fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSinkUnits___destroy___0(HeatSinkUnits* self) { delete self; } -// Interface: HeatPerUnitAreaUnits - +// HeatPerUnitAreaUnits -double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2(double value, HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum units) { - return HeatPerUnitAreaUnits::toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2(HeatPerUnitAreaUnits* self, double value, HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum units) { + return self->toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2(double value, HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum units) { - return HeatPerUnitAreaUnits::fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2(HeatPerUnitAreaUnits* self, double value, HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum units) { + return self->fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatPerUnitAreaUnits___destroy___0(HeatPerUnitAreaUnits* self) { delete self; } -// Interface: HeatSourceAndReactionIntensityUnits +// HeatSourceAndReactionIntensityUnits - -double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2(double value, HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum units) { - return HeatSourceAndReactionIntensityUnits::toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2(HeatSourceAndReactionIntensityUnits* self, double value, HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum units) { + return self->toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2(double value, HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum units) { - return HeatSourceAndReactionIntensityUnits::fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2(HeatSourceAndReactionIntensityUnits* self, double value, HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum units) { + return self->fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0(HeatSourceAndReactionIntensityUnits* self) { delete self; } -// Interface: FirelineIntensityUnits - +// FirelineIntensityUnits -double EMSCRIPTEN_KEEPALIVE emscripten_bind_FirelineIntensityUnits_toBaseUnits_2(double value, FirelineIntensityUnits_FirelineIntensityUnitsEnum units) { - return FirelineIntensityUnits::toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_FirelineIntensityUnits_toBaseUnits_2(FirelineIntensityUnits* self, double value, FirelineIntensityUnits_FirelineIntensityUnitsEnum units) { + return self->toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2(double value, FirelineIntensityUnits_FirelineIntensityUnitsEnum units) { - return FirelineIntensityUnits::fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2(FirelineIntensityUnits* self, double value, FirelineIntensityUnits_FirelineIntensityUnitsEnum units) { + return self->fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_FirelineIntensityUnits___destroy___0(FirelineIntensityUnits* self) { delete self; } -// Interface: TemperatureUnits +// TemperatureUnits - -double EMSCRIPTEN_KEEPALIVE emscripten_bind_TemperatureUnits_toBaseUnits_2(double value, TemperatureUnits_TemperatureUnitsEnum units) { - return TemperatureUnits::toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_TemperatureUnits_toBaseUnits_2(TemperatureUnits* self, double value, TemperatureUnits_TemperatureUnitsEnum units) { + return self->toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_TemperatureUnits_fromBaseUnits_2(double value, TemperatureUnits_TemperatureUnitsEnum units) { - return TemperatureUnits::fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_TemperatureUnits_fromBaseUnits_2(TemperatureUnits* self, double value, TemperatureUnits_TemperatureUnitsEnum units) { + return self->fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_TemperatureUnits___destroy___0(TemperatureUnits* self) { delete self; } -// Interface: TimeUnits - +// TimeUnits -double EMSCRIPTEN_KEEPALIVE emscripten_bind_TimeUnits_toBaseUnits_2(double value, TimeUnits_TimeUnitsEnum units) { - return TimeUnits::toBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_TimeUnits_toBaseUnits_2(TimeUnits* self, double value, TimeUnits_TimeUnitsEnum units) { + return self->toBaseUnits(value, units); } -double EMSCRIPTEN_KEEPALIVE emscripten_bind_TimeUnits_fromBaseUnits_2(double value, TimeUnits_TimeUnitsEnum units) { - return TimeUnits::fromBaseUnits(value, units); +double EMSCRIPTEN_KEEPALIVE emscripten_bind_TimeUnits_fromBaseUnits_2(TimeUnits* self, double value, TimeUnits_TimeUnitsEnum units) { + return self->fromBaseUnits(value, units); } void EMSCRIPTEN_KEEPALIVE emscripten_bind_TimeUnits___destroy___0(TimeUnits* self) { delete self; } -// Interface: FireSize - +// FireSize double EMSCRIPTEN_KEEPALIVE emscripten_bind_FireSize_getBackingSpreadRate_1(FireSize* self, SpeedUnits_SpeedUnitsEnum spreadRateUnits) { return self->getBackingSpreadRate(spreadRateUnits); @@ -496,8 +475,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_FireSize___destroy___0(FireSize* self) delete self; } -// Interface: SIGContainAdapter - +// SIGContainAdapter SIGContainAdapter* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGContainAdapter_SIGContainAdapter_0() { return new SIGContainAdapter(); @@ -508,12 +486,12 @@ ContainStatus_ContainStatusEnum EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGContainA } DoubleVector* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGContainAdapter_getFirePerimeterX_0(SIGContainAdapter* self) { - static thread_local DoubleVector temp; + static DoubleVector temp; return (temp = self->getFirePerimeterX(), &temp); } DoubleVector* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGContainAdapter_getFirePerimeterY_0(SIGContainAdapter* self) { - static thread_local DoubleVector temp; + static DoubleVector temp; return (temp = self->getFirePerimeterY(), &temp); } @@ -681,8 +659,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGContainAdapter___destroy___0(SIGCon delete self; } -// Interface: SIGIgnite - +// SIGIgnite SIGIgnite* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGIgnite_SIGIgnite_0() { return new SIGIgnite(); @@ -776,8 +753,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGIgnite___destroy___0(SIGIgnite* sel delete self; } -// Interface: SIGMoistureScenarios - +// SIGMoistureScenarios SIGMoistureScenarios* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0() { return new SIGMoistureScenarios(); @@ -855,8 +831,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGMoistureScenarios___destroy___0(SIG delete self; } -// Interface: SIGSpot - +// SIGSpot SIGSpot* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGSpot_SIGSpot_0() { return new SIGSpot(); @@ -1082,8 +1057,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGSpot___destroy___0(SIGSpot* self) { delete self; } -// Interface: SIGFuelModels - +// SIGFuelModels SIGFuelModels* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGFuelModels_SIGFuelModels_0() { return new SIGFuelModels(); @@ -1181,8 +1155,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGFuelModels___destroy___0(SIGFuelMod delete self; } -// Interface: SIGSurface - +// SIGSurface SIGSurface* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGSurface_SIGSurface_1(SIGFuelModels* fuelModels) { return new SIGSurface(*fuelModels); @@ -2060,8 +2033,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGSurface___destroy___0(SIGSurface* s delete self; } -// Interface: PalmettoGallberry - +// PalmettoGallberry PalmettoGallberry* EMSCRIPTEN_KEEPALIVE emscripten_bind_PalmettoGallberry_PalmettoGallberry_0() { return new PalmettoGallberry(); @@ -2151,8 +2123,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_PalmettoGallberry___destroy___0(Palmet delete self; } -// Interface: WesternAspen - +// WesternAspen WesternAspen* EMSCRIPTEN_KEEPALIVE emscripten_bind_WesternAspen_WesternAspen_0() { return new WesternAspen(); @@ -2222,8 +2193,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_WesternAspen___destroy___0(WesternAspe delete self; } -// Interface: SIGCrown - +// SIGCrown SIGCrown* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGCrown_SIGCrown_1(SIGFuelModels* fuelModels) { return new SIGCrown(*fuelModels); @@ -2673,8 +2643,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGCrown___destroy___0(SIGCrown* self) delete self; } -// Interface: SpeciesMasterTableRecord - +// SpeciesMasterTableRecord SpeciesMasterTableRecord* EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0() { return new SpeciesMasterTableRecord(); @@ -2688,8 +2657,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeciesMasterTableRecord___destroy___0 delete self; } -// Interface: SpeciesMasterTable - +// SpeciesMasterTable SpeciesMasterTable* EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0() { return new SpeciesMasterTable(); @@ -2715,8 +2683,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SpeciesMasterTable___destroy___0(Speci delete self; } -// Interface: SIGMortality - +// SIGMortality SIGMortality* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGMortality_SIGMortality_1(SpeciesMasterTable* speciesMasterTable) { return new SIGMortality(*speciesMasterTable); @@ -3122,8 +3089,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGMortality___destroy___0(SIGMortalit delete self; } -// Interface: WindSpeedUtility - +// WindSpeedUtility WindSpeedUtility* EMSCRIPTEN_KEEPALIVE emscripten_bind_WindSpeedUtility_WindSpeedUtility_0() { return new WindSpeedUtility(); @@ -3141,8 +3107,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_WindSpeedUtility___destroy___0(WindSpe delete self; } -// Interface: SIGFineDeadFuelMoistureTool - +// SIGFineDeadFuelMoistureTool SIGFineDeadFuelMoistureTool* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0() { return new SIGFineDeadFuelMoistureTool(); @@ -3236,8 +3201,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGFineDeadFuelMoistureTool___destroy_ delete self; } -// Interface: SIGSlopeTool - +// SIGSlopeTool SIGSlopeTool* EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGSlopeTool_SIGSlopeTool_0() { return new SIGSlopeTool(); @@ -3387,8 +3351,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SIGSlopeTool___destroy___0(SIGSlopeToo delete self; } -// Interface: VaporPressureDeficitCalculator - +// VaporPressureDeficitCalculator VaporPressureDeficitCalculator* EMSCRIPTEN_KEEPALIVE emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0() { return new VaporPressureDeficitCalculator(); @@ -3414,8 +3377,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_VaporPressureDeficitCalculator___destr delete self; } -// Interface: RelativeHumidityTool - +// RelativeHumidityTool RelativeHumidityTool* EMSCRIPTEN_KEEPALIVE emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0() { return new RelativeHumidityTool(); @@ -3465,8 +3427,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_RelativeHumidityTool___destroy___0(Rel delete self; } -// Interface: SafeSeparationDistanceCalculator - +// SafeSeparationDistanceCalculator SafeSeparationDistanceCalculator* EMSCRIPTEN_KEEPALIVE emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0() { return new SafeSeparationDistanceCalculator(); @@ -3524,7 +3485,7 @@ void EMSCRIPTEN_KEEPALIVE emscripten_bind_SafeSeparationDistanceCalculator___des delete self; } -// $AreaUnits_AreaUnitsEnum +// AreaUnits_AreaUnitsEnum AreaUnits_AreaUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet() { return AreaUnits::SquareFeet; } @@ -3544,7 +3505,7 @@ AreaUnits_AreaUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_AreaUnits_AreaUnits return AreaUnits::SquareKilometers; } -// $BasalAreaUnits_BasalAreaUnitsEnum +// BasalAreaUnits_BasalAreaUnitsEnum BasalAreaUnits_BasalAreaUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre() { return BasalAreaUnits::SquareFeetPerAcre; } @@ -3552,7 +3513,7 @@ BasalAreaUnits_BasalAreaUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_BasalArea return BasalAreaUnits::SquareMetersPerHectare; } -// $FractionUnits_FractionUnitsEnum +// FractionUnits_FractionUnitsEnum FractionUnits_FractionUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction() { return FractionUnits::Fraction; } @@ -3560,7 +3521,7 @@ FractionUnits_FractionUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FractionUni return FractionUnits::Percent; } -// $LengthUnits_LengthUnitsEnum +// LengthUnits_LengthUnitsEnum LengthUnits_LengthUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_LengthUnits_LengthUnitsEnum_Feet() { return LengthUnits::Feet; } @@ -3586,7 +3547,7 @@ LengthUnits_LengthUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_LengthUnits_Len return LengthUnits::Kilometers; } -// $LoadingUnits_LoadingUnitsEnum +// LoadingUnits_LoadingUnitsEnum LoadingUnits_LoadingUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot() { return LoadingUnits::PoundsPerSquareFoot; } @@ -3600,7 +3561,7 @@ LoadingUnits_LoadingUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_LoadingUnits_ return LoadingUnits::KilogramsPerSquareMeter; } -// $SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum +// SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet() { return SurfaceAreaToVolumeUnits::SquareFeetOverCubicFeet; } @@ -3614,7 +3575,7 @@ SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum EMSCRIPTEN_KEEPALIVE emscr return SurfaceAreaToVolumeUnits::SquareCentimetersOverCubicCentimeters; } -// $SpeedUnits_SpeedUnitsEnum +// SpeedUnits_SpeedUnitsEnum SpeedUnits_SpeedUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute() { return SpeedUnits::FeetPerMinute; } @@ -3634,7 +3595,7 @@ SpeedUnits_SpeedUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpeedUnits_SpeedU return SpeedUnits::KilometersPerHour; } -// $PressureUnits_PressureUnitsEnum +// PressureUnits_PressureUnitsEnum PressureUnits_PressureUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal() { return PressureUnits::Pascal; } @@ -3663,7 +3624,7 @@ PressureUnits_PressureUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_PressureUni return PressureUnits::PoundPerSquareInch; } -// $SlopeUnits_SlopeUnitsEnum +// SlopeUnits_SlopeUnitsEnum SlopeUnits_SlopeUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees() { return SlopeUnits::Degrees; } @@ -3671,7 +3632,7 @@ SlopeUnits_SlopeUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SlopeUnits_SlopeU return SlopeUnits::Percent; } -// $DensityUnits_DensityUnitsEnum +// DensityUnits_DensityUnitsEnum DensityUnits_DensityUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot() { return DensityUnits::PoundsPerCubicFoot; } @@ -3679,7 +3640,7 @@ DensityUnits_DensityUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_DensityUnits_ return DensityUnits::KilogramsPerCubicMeter; } -// $HeatOfCombustionUnits_HeatOfCombustionUnitsEnum +// HeatOfCombustionUnits_HeatOfCombustionUnitsEnum HeatOfCombustionUnits_HeatOfCombustionUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound() { return HeatOfCombustionUnits::BtusPerPound; } @@ -3687,7 +3648,7 @@ HeatOfCombustionUnits_HeatOfCombustionUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_ return HeatOfCombustionUnits::KilojoulesPerKilogram; } -// $HeatSinkUnits_HeatSinkUnitsEnum +// HeatSinkUnits_HeatSinkUnitsEnum HeatSinkUnits_HeatSinkUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot() { return HeatSinkUnits::BtusPerCubicFoot; } @@ -3695,7 +3656,7 @@ HeatSinkUnits_HeatSinkUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_HeatSinkUni return HeatSinkUnits::KilojoulesPerCubicMeter; } -// $HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum +// HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot() { return HeatPerUnitAreaUnits::BtusPerSquareFoot; } @@ -3706,7 +3667,7 @@ HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_en return HeatPerUnitAreaUnits::KilowattSecondsPerSquareMeter; } -// $HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum +// HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute() { return HeatSourceAndReactionIntensityUnits::BtusPerSquareFootPerMinute; } @@ -3723,7 +3684,7 @@ HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum EMSC return HeatSourceAndReactionIntensityUnits::KilowattsPerSquareMeter; } -// $FirelineIntensityUnits_FirelineIntensityUnitsEnum +// FirelineIntensityUnits_FirelineIntensityUnitsEnum FirelineIntensityUnits_FirelineIntensityUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond() { return FirelineIntensityUnits::BtusPerFootPerSecond; } @@ -3740,7 +3701,7 @@ FirelineIntensityUnits_FirelineIntensityUnitsEnum EMSCRIPTEN_KEEPALIVE emscripte return FirelineIntensityUnits::KilowattsPerMeter; } -// $TemperatureUnits_TemperatureUnitsEnum +// TemperatureUnits_TemperatureUnitsEnum TemperatureUnits_TemperatureUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit() { return TemperatureUnits::Fahrenheit; } @@ -3751,7 +3712,7 @@ TemperatureUnits_TemperatureUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_Tempe return TemperatureUnits::Kelvin; } -// $TimeUnits_TimeUnitsEnum +// TimeUnits_TimeUnitsEnum TimeUnits_TimeUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes() { return TimeUnits::Minutes; } @@ -3762,7 +3723,7 @@ TimeUnits_TimeUnitsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_TimeUnits_TimeUnits return TimeUnits::Hours; } -// $ContainTactic_ContainTacticEnum +// ContainTactic_ContainTacticEnum ContainTactic_ContainTacticEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack() { return ContainTactic::HeadAttack; } @@ -3770,7 +3731,7 @@ ContainTactic_ContainTacticEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_ContainTact return ContainTactic::RearAttack; } -// $ContainStatus_ContainStatusEnum +// ContainStatus_ContainStatusEnum ContainStatus_ContainStatusEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_ContainStatus_ContainStatusEnum_Unreported() { return ContainStatus::Unreported; } @@ -3799,7 +3760,7 @@ ContainStatus_ContainStatusEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_ContainStat return ContainStatus::TimeLimitExceeded; } -// $ContainFlank_ContainFlankEnum +// ContainFlank_ContainFlankEnum ContainFlank_ContainFlankEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank() { return ContainFlank::LeftFlank; } @@ -3813,7 +3774,7 @@ ContainFlank_ContainFlankEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_ContainFlank_ return ContainFlank::NeitherFlank; } -// $ContainMode +// ContainMode ContainMode EMSCRIPTEN_KEEPALIVE emscripten_enum_ContainMode_Default() { return ContainMode::Default; } @@ -3821,7 +3782,7 @@ ContainMode EMSCRIPTEN_KEEPALIVE emscripten_enum_ContainMode_ComputeWithOptimalR return ContainMode::ComputeWithOptimalResource; } -// $IgnitionFuelBedType_IgnitionFuelBedTypeEnum +// IgnitionFuelBedType_IgnitionFuelBedTypeEnum IgnitionFuelBedType_IgnitionFuelBedTypeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter() { return IgnitionFuelBedType::PonderosaPineLitter; } @@ -3847,7 +3808,7 @@ IgnitionFuelBedType_IgnitionFuelBedTypeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum return IgnitionFuelBedType::PeatMoss; } -// $LightningCharge_LightningChargeEnum +// LightningCharge_LightningChargeEnum LightningCharge_LightningChargeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_LightningCharge_LightningChargeEnum_Negative() { return LightningCharge::Negative; } @@ -3858,7 +3819,7 @@ LightningCharge_LightningChargeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_Lightni return LightningCharge::Unknown; } -// $SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum +// SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED() { return SpotDownWindCanopyMode::CLOSED; } @@ -3866,7 +3827,7 @@ SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum EMSCRIPTEN_KEEPALIVE emscripte return SpotDownWindCanopyMode::OPEN; } -// $SpotTreeSpecies_SpotTreeSpeciesEnum +// SpotTreeSpecies_SpotTreeSpeciesEnum SpotTreeSpecies_SpotTreeSpeciesEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE() { return SpotTreeSpecies::ENGELMANN_SPRUCE; } @@ -3910,7 +3871,7 @@ SpotTreeSpecies_SpotTreeSpeciesEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpotTre return SpotTreeSpecies::LOBLOLLY_PINE; } -// $SpotFireLocation_SpotFireLocationEnum +// SpotFireLocation_SpotFireLocationEnum SpotFireLocation_SpotFireLocationEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD() { return SpotFireLocation::MIDSLOPE_WINDWARD; } @@ -3924,7 +3885,7 @@ SpotFireLocation_SpotFireLocationEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpotF return SpotFireLocation::RIDGE_TOP; } -// $FuelLifeState_FuelLifeStateEnum +// FuelLifeState_FuelLifeStateEnum FuelLifeState_FuelLifeStateEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead() { return FuelLifeState::Dead; } @@ -3932,7 +3893,7 @@ FuelLifeState_FuelLifeStateEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FuelLifeSta return FuelLifeState::Live; } -// $FuelConstantsEnum_FuelConstantsEnum +// FuelConstantsEnum_FuelConstantsEnum FuelConstantsEnum_FuelConstantsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates() { return FuelConstants::MaxLifeStates; } @@ -3952,7 +3913,7 @@ FuelConstantsEnum_FuelConstantsEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FuelCon return FuelConstants::MaxFuelModels; } -// $AspenFireSeverity_AspenFireSeverityEnum +// AspenFireSeverity_AspenFireSeverityEnum AspenFireSeverity_AspenFireSeverityEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low() { return AspenFireSeverity::Low; } @@ -3960,7 +3921,7 @@ AspenFireSeverity_AspenFireSeverityEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_Asp return AspenFireSeverity::Moderate; } -// $ChaparralFuelType_ChaparralFuelTypeEnum +// ChaparralFuelType_ChaparralFuelTypeEnum ChaparralFuelType_ChaparralFuelTypeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet() { return ChaparralFuelType::NotSet; } @@ -3971,7 +3932,7 @@ ChaparralFuelType_ChaparralFuelTypeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_Cha return ChaparralFuelType::MixedBrush; } -// $ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum +// ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad() { return ChaparralFuelLoadInputMode::DirectFuelLoad; } @@ -3979,7 +3940,7 @@ ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum EMSCRIPTEN_KEEPALIVE e return ChaparralFuelLoadInputMode::FuelLoadFromDepthAndChaparralType; } -// $MoistureInputMode_MoistureInputModeEnum +// MoistureInputMode_MoistureInputModeEnum MoistureInputMode_MoistureInputModeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass() { return MoistureInputMode::BySizeClass; } @@ -3996,7 +3957,7 @@ MoistureInputMode_MoistureInputModeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_Moi return MoistureInputMode::MoistureScenario; } -// $MoistureClassInput_MoistureClassInputEnum +// MoistureClassInput_MoistureClassInputEnum MoistureClassInput_MoistureClassInputEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour() { return MoistureClassInput::OneHour; } @@ -4019,7 +3980,7 @@ MoistureClassInput_MoistureClassInputEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_M return MoistureClassInput::LiveAggregate; } -// $SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum +// SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint() { return SurfaceFireSpreadDirectionMode::FromIgnitionPoint; } @@ -4027,7 +3988,7 @@ SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum EMSCRIPTEN_KEE return SurfaceFireSpreadDirectionMode::FromPerimeter; } -// $TwoFuelModelsMethod_TwoFuelModelsMethodEnum +// TwoFuelModelsMethod_TwoFuelModelsMethodEnum TwoFuelModelsMethod_TwoFuelModelsMethodEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod() { return TwoFuelModelsMethod::NoMethod; } @@ -4041,7 +4002,7 @@ TwoFuelModelsMethod_TwoFuelModelsMethodEnum EMSCRIPTEN_KEEPALIVE emscripten_enum return TwoFuelModelsMethod::TwoDimensional; } -// $WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum +// WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered() { return WindAdjustmentFactorShelterMethod::Unsheltered; } @@ -4049,7 +4010,7 @@ WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum EMSCRIPT return WindAdjustmentFactorShelterMethod::Sheltered; } -// $WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum +// WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput() { return WindAdjustmentFactorCalculationMethod::UserInput; } @@ -4060,7 +4021,7 @@ WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum return WindAdjustmentFactorCalculationMethod::DontUseCrownRatio; } -// $WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum +// WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope() { return WindAndSpreadOrientationMode::RelativeToUpslope; } @@ -4068,7 +4029,7 @@ WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum EMSCRIPTEN_KEEPALI return WindAndSpreadOrientationMode::RelativeToNorth; } -// $WindHeightInputMode_WindHeightInputModeEnum +// WindHeightInputMode_WindHeightInputModeEnum WindHeightInputMode_WindHeightInputModeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame() { return WindHeightInputMode::DirectMidflame; } @@ -4079,7 +4040,7 @@ WindHeightInputMode_WindHeightInputModeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum return WindHeightInputMode::TenMeter; } -// $WindUpslopeAlignmentMode +// WindUpslopeAlignmentMode WindUpslopeAlignmentMode EMSCRIPTEN_KEEPALIVE emscripten_enum_WindUpslopeAlignmentMode_NotAligned() { return WindUpslopeAlignmentMode::NotAligned; } @@ -4087,7 +4048,7 @@ WindUpslopeAlignmentMode EMSCRIPTEN_KEEPALIVE emscripten_enum_WindUpslopeAlignme return WindUpslopeAlignmentMode::Aligned; } -// $SurfaceRunInDirectionOf +// SurfaceRunInDirectionOf SurfaceRunInDirectionOf EMSCRIPTEN_KEEPALIVE emscripten_enum_SurfaceRunInDirectionOf_MaxSpread() { return SurfaceRunInDirectionOf::MaxSpread; } @@ -4098,7 +4059,7 @@ SurfaceRunInDirectionOf EMSCRIPTEN_KEEPALIVE emscripten_enum_SurfaceRunInDirecti return SurfaceRunInDirectionOf::HeadingBackingFlanking; } -// $FireType_FireTypeEnum +// FireType_FireTypeEnum FireType_FireTypeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FireType_FireTypeEnum_Surface() { return FireType::Surface; } @@ -4112,7 +4073,7 @@ FireType_FireTypeEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FireType_FireTypeEnum return FireType::Crowning; } -// $BeetleDamage +// BeetleDamage BeetleDamage EMSCRIPTEN_KEEPALIVE emscripten_enum_BeetleDamage_not_set() { return BeetleDamage::not_set; } @@ -4123,7 +4084,7 @@ BeetleDamage EMSCRIPTEN_KEEPALIVE emscripten_enum_BeetleDamage_yes() { return BeetleDamage::yes; } -// $CrownFireCalculationMethod +// CrownFireCalculationMethod CrownFireCalculationMethod EMSCRIPTEN_KEEPALIVE emscripten_enum_CrownFireCalculationMethod_rothermel() { return CrownFireCalculationMethod::rothermel; } @@ -4131,7 +4092,7 @@ CrownFireCalculationMethod EMSCRIPTEN_KEEPALIVE emscripten_enum_CrownFireCalcula return CrownFireCalculationMethod::scott_and_reinhardt; } -// $CrownDamageEquationCode +// CrownDamageEquationCode CrownDamageEquationCode EMSCRIPTEN_KEEPALIVE emscripten_enum_CrownDamageEquationCode_not_set() { return CrownDamageEquationCode::not_set; } @@ -4169,7 +4130,7 @@ CrownDamageEquationCode EMSCRIPTEN_KEEPALIVE emscripten_enum_CrownDamageEquation return CrownDamageEquationCode::douglas_fir; } -// $CrownDamageType +// CrownDamageType CrownDamageType EMSCRIPTEN_KEEPALIVE emscripten_enum_CrownDamageType_not_set() { return CrownDamageType::not_set; } @@ -4183,7 +4144,7 @@ CrownDamageType EMSCRIPTEN_KEEPALIVE emscripten_enum_CrownDamageType_crown_kill( return CrownDamageType::crown_kill; } -// $EquationType +// EquationType EquationType EMSCRIPTEN_KEEPALIVE emscripten_enum_EquationType_not_set() { return EquationType::not_set; } @@ -4197,7 +4158,7 @@ EquationType EMSCRIPTEN_KEEPALIVE emscripten_enum_EquationType_crown_damage() { return EquationType::crown_damage; } -// $FireSeverity +// FireSeverity FireSeverity EMSCRIPTEN_KEEPALIVE emscripten_enum_FireSeverity_not_set() { return FireSeverity::not_set; } @@ -4208,7 +4169,7 @@ FireSeverity EMSCRIPTEN_KEEPALIVE emscripten_enum_FireSeverity_low() { return FireSeverity::low; } -// $FlameLengthOrScorchHeightSwitch +// FlameLengthOrScorchHeightSwitch FlameLengthOrScorchHeightSwitch EMSCRIPTEN_KEEPALIVE emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length() { return FlameLengthOrScorchHeightSwitch::flame_length; } @@ -4216,7 +4177,7 @@ FlameLengthOrScorchHeightSwitch EMSCRIPTEN_KEEPALIVE emscripten_enum_FlameLength return FlameLengthOrScorchHeightSwitch::scorch_height; } -// $GACC +// GACC GACC EMSCRIPTEN_KEEPALIVE emscripten_enum_GACC_NotSet() { return GACC::NotSet; } @@ -4248,7 +4209,7 @@ GACC EMSCRIPTEN_KEEPALIVE emscripten_enum_GACC_Southwest() { return GACC::Southwest; } -// $RequiredFieldNames +// RequiredFieldNames RequiredFieldNames EMSCRIPTEN_KEEPALIVE emscripten_enum_RequiredFieldNames_region() { return RequiredFieldNames::region; } @@ -4292,7 +4253,7 @@ RequiredFieldNames EMSCRIPTEN_KEEPALIVE emscripten_enum_RequiredFieldNames_num_i return RequiredFieldNames::num_inputs; } -// $FDFMToolAspectIndex_AspectIndexEnum +// FDFMToolAspectIndex_AspectIndexEnum FDFMToolAspectIndex_AspectIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH() { return FDFMToolAspectIndex::NORTH; } @@ -4306,7 +4267,7 @@ FDFMToolAspectIndex_AspectIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToo return FDFMToolAspectIndex::WEST; } -// $FDFMToolDryBulbIndex_DryBulbIndexEnum +// FDFMToolDryBulbIndex_DryBulbIndexEnum FDFMToolDryBulbIndex_DryBulbIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F() { return FDFMToolDryBulbIndex::TEN_TO_TWENTY_NINE_DEGREES_F; } @@ -4326,7 +4287,7 @@ FDFMToolDryBulbIndex_DryBulbIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMT return FDFMToolDryBulbIndex::GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F; } -// $FDFMToolElevationIndex_ElevationIndexEnum +// FDFMToolElevationIndex_ElevationIndexEnum FDFMToolElevationIndex_ElevationIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT() { return FDFMToolElevationIndex::BELOW_1000_TO_2000_FT; } @@ -4337,7 +4298,7 @@ FDFMToolElevationIndex_ElevationIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_F return FDFMToolElevationIndex::ABOVE_1000_TO_2000_FT; } -// $FDFMToolMonthIndex_MonthIndexEnum +// FDFMToolMonthIndex_MonthIndexEnum FDFMToolMonthIndex_MonthIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY() { return FDFMToolMonthIndex::MAY_JUNE_JULY; } @@ -4348,7 +4309,7 @@ FDFMToolMonthIndex_MonthIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolM return FDFMToolMonthIndex::NOV_DEC_JAN; } -// $FDFMToolRHIndex_RHIndexEnum +// FDFMToolRHIndex_RHIndexEnum FDFMToolRHIndex_RHIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT() { return FDFMToolRHIndex::ZERO_TO_FOUR_PERCENT; } @@ -4413,7 +4374,7 @@ FDFMToolRHIndex_RHIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolRHIndex return FDFMToolRHIndex::ONE_HUNDRED_PERCENT; } -// $FDFMToolShadingIndex_ShadingIndexEnum +// FDFMToolShadingIndex_ShadingIndexEnum FDFMToolShadingIndex_ShadingIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED() { return FDFMToolShadingIndex::EXPOSED; } @@ -4421,7 +4382,7 @@ FDFMToolShadingIndex_ShadingIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMT return FDFMToolShadingIndex::SHADED; } -// $FDFMToolSlopeIndex_SlopeIndexEnum +// FDFMToolSlopeIndex_SlopeIndexEnum FDFMToolSlopeIndex_SlopeIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT() { return FDFMToolSlopeIndex::ZERO_TO_THIRTY_PERCENT; } @@ -4429,7 +4390,7 @@ FDFMToolSlopeIndex_SlopeIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolS return FDFMToolSlopeIndex::GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT; } -// $FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum +// FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE() { return FDFMToolTimeOfDayIndex::EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE; } @@ -4449,7 +4410,7 @@ FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_F return FDFMToolTimeOfDayIndex::EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET; } -// $RepresentativeFraction_RepresentativeFractionEnum +// RepresentativeFraction_RepresentativeFractionEnum RepresentativeFraction_RepresentativeFractionEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY() { return RepresentativeFraction::NINTEEN_HUNDRED_EIGHTY; } @@ -4505,7 +4466,7 @@ RepresentativeFraction_RepresentativeFractionEnum EMSCRIPTEN_KEEPALIVE emscripte return RepresentativeFraction::ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY; } -// $HorizontalDistanceIndex_HorizontalDistanceIndexEnum +// HorizontalDistanceIndex_HorizontalDistanceIndexEnum HorizontalDistanceIndex_HorizontalDistanceIndexEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES() { return HorizontalDistanceIndex::UPSLOPE_ZERO_DEGREES; } @@ -4528,7 +4489,7 @@ HorizontalDistanceIndex_HorizontalDistanceIndexEnum EMSCRIPTEN_KEEPALIVE emscrip return HorizontalDistanceIndex::CROSS_SLOPE_NINETY_DEGREES; } -// $BurningCondition_BurningConditionEnum +// BurningCondition_BurningConditionEnum BurningCondition_BurningConditionEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_BurningCondition_BurningConditionEnum_Low() { return BurningCondition::Low; } @@ -4539,7 +4500,7 @@ BurningCondition_BurningConditionEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_Burni return BurningCondition::Extreme; } -// $SlopeClass_SlopeClassEnum +// SlopeClass_SlopeClassEnum SlopeClass_SlopeClassEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SlopeClass_SlopeClassEnum_Flat() { return SlopeClass::Flat; } @@ -4550,7 +4511,7 @@ SlopeClass_SlopeClassEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SlopeClass_SlopeC return SlopeClass::Steep; } -// $SpeedClass_SpeedClassEnum +// SpeedClass_SpeedClassEnum SpeedClass_SpeedClassEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpeedClass_SpeedClassEnum_Light() { return SpeedClass::Light; } @@ -4561,7 +4522,7 @@ SpeedClass_SpeedClassEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SpeedClass_SpeedC return SpeedClass::High; } -// $SafetyCondition_SafetyConditionEnum +// SafetyCondition_SafetyConditionEnum SafetyCondition_SafetyConditionEnum EMSCRIPTEN_KEEPALIVE emscripten_enum_SafetyCondition_SafetyConditionEnum_Low() { return SafetyCondition::Low; } diff --git a/behave-lib/include/js/glue.js b/behave-lib/include/js/glue.js index fe0a3c26..ee26b812 100644 --- a/behave-lib/include/js/glue.js +++ b/behave-lib/include/js/glue.js @@ -74,15 +74,15 @@ var ensureCache = { temps: [], // extra allocations needed: 0, // the total size we need next time - prepare() { + prepare: function() { if (ensureCache.needed) { // clear the temps for (var i = 0; i < ensureCache.temps.length; i++) { - Module['_webidl_free'](ensureCache.temps[i]); + Module['_free'](ensureCache.temps[i]); } ensureCache.temps.length = 0; // prepare to allocate a bigger buffer - Module['_webidl_free'](ensureCache.buffer); + Module['_free'](ensureCache.buffer); ensureCache.buffer = 0; ensureCache.size += ensureCache.needed; // clean up @@ -90,22 +90,22 @@ var ensureCache = { } if (!ensureCache.buffer) { // happens first time, or when we need to grow ensureCache.size += 128; // heuristic, avoid many small grow events - ensureCache.buffer = Module['_webidl_malloc'](ensureCache.size); + ensureCache.buffer = Module['_malloc'](ensureCache.size); assert(ensureCache.buffer); } ensureCache.pos = 0; }, - alloc(array, view) { + alloc: function(array, view) { assert(ensureCache.buffer); var bytes = view.BYTES_PER_ELEMENT; var len = array.length * bytes; - len = alignMemory(len, 8); // keep things aligned to 8 byte boundaries + len = (len + 7) & -8; // keep things aligned to 8 byte boundaries var ret; if (ensureCache.pos + len >= ensureCache.size) { // we failed to allocate in the buffer, ensureCache time around :( assert(len > 0); // null terminator, at least ensureCache.needed += len; - ret = Module['_webidl_malloc'](len); + ret = Module['_malloc'](len); ensureCache.temps.push(ret); } else { // we can allocate in the buffer @@ -114,8 +114,14 @@ var ensureCache = { } return ret; }, - copy(array, view, offset) { - offset /= view.BYTES_PER_ELEMENT; + copy: function(array, view, offset) { + offset >>>= 0; + var bytes = view.BYTES_PER_ELEMENT; + switch (bytes) { + case 2: offset >>>= 1; break; + case 4: offset >>>= 2; break; + case 8: offset >>>= 3; break; + } for (var i = 0; i < array.length; i++) { view[offset + i] = array[i]; } @@ -132,7 +138,6 @@ function ensureString(value) { } return value; } - /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureInt8(value) { if (typeof value === 'object') { @@ -142,7 +147,6 @@ function ensureInt8(value) { } return value; } - /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureInt16(value) { if (typeof value === 'object') { @@ -152,7 +156,6 @@ function ensureInt16(value) { } return value; } - /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureInt32(value) { if (typeof value === 'object') { @@ -162,7 +165,6 @@ function ensureInt32(value) { } return value; } - /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureFloat32(value) { if (typeof value === 'object') { @@ -172,7 +174,6 @@ function ensureFloat32(value) { } return value; } - /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureFloat64(value) { if (typeof value === 'object') { @@ -183,906 +184,772 @@ function ensureFloat64(value) { return value; } -// Interface: VoidPtr -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function VoidPtr() { throw "cannot construct a VoidPtr, no constructor in IDL" } +// VoidPtr +/** @suppress {undefinedVars, duplicate} @this{Object} */function VoidPtr() { throw "cannot construct a VoidPtr, no constructor in IDL" } VoidPtr.prototype = Object.create(WrapperObject.prototype); VoidPtr.prototype.constructor = VoidPtr; VoidPtr.prototype.__class__ = VoidPtr; VoidPtr.__cache__ = {}; Module['VoidPtr'] = VoidPtr; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -VoidPtr.prototype['__destroy__'] = VoidPtr.prototype.__destroy__ = function() { + VoidPtr.prototype['__destroy__'] = VoidPtr.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_VoidPtr___destroy___0(self); }; - -// Interface: DoublePtr - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function DoublePtr() { throw "cannot construct a DoublePtr, no constructor in IDL" } +// DoublePtr +/** @suppress {undefinedVars, duplicate} @this{Object} */function DoublePtr() { throw "cannot construct a DoublePtr, no constructor in IDL" } DoublePtr.prototype = Object.create(WrapperObject.prototype); DoublePtr.prototype.constructor = DoublePtr; DoublePtr.prototype.__class__ = DoublePtr; DoublePtr.__cache__ = {}; Module['DoublePtr'] = DoublePtr; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DoublePtr.prototype['__destroy__'] = DoublePtr.prototype.__destroy__ = function() { + DoublePtr.prototype['__destroy__'] = DoublePtr.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_DoublePtr___destroy___0(self); }; - -// Interface: BoolVector - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function BoolVector(size) { +// BoolVector +/** @suppress {undefinedVars, duplicate} @this{Object} */function BoolVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_BoolVector_BoolVector_0(); getCache(BoolVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_BoolVector_BoolVector_1(size); getCache(BoolVector)[this.ptr] = this; -}; - +};; BoolVector.prototype = Object.create(WrapperObject.prototype); BoolVector.prototype.constructor = BoolVector; BoolVector.prototype.__class__ = BoolVector; BoolVector.__cache__ = {}; Module['BoolVector'] = BoolVector; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -BoolVector.prototype['resize'] = BoolVector.prototype.resize = function(size) { + +BoolVector.prototype['resize'] = BoolVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_BoolVector_resize_1(self, size); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -BoolVector.prototype['get'] = BoolVector.prototype.get = function(i) { +BoolVector.prototype['get'] = BoolVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return !!(_emscripten_bind_BoolVector_get_1(self, i)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -BoolVector.prototype['set'] = BoolVector.prototype.set = function(i, val) { +BoolVector.prototype['set'] = BoolVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_BoolVector_set_2(self, i, val); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -BoolVector.prototype['size'] = BoolVector.prototype.size = function() { +BoolVector.prototype['size'] = BoolVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_BoolVector_size_0(self); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -BoolVector.prototype['__destroy__'] = BoolVector.prototype.__destroy__ = function() { + BoolVector.prototype['__destroy__'] = BoolVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_BoolVector___destroy___0(self); }; - -// Interface: CharVector - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function CharVector(size) { +// CharVector +/** @suppress {undefinedVars, duplicate} @this{Object} */function CharVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_CharVector_CharVector_0(); getCache(CharVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_CharVector_CharVector_1(size); getCache(CharVector)[this.ptr] = this; -}; - +};; CharVector.prototype = Object.create(WrapperObject.prototype); CharVector.prototype.constructor = CharVector; CharVector.prototype.__class__ = CharVector; CharVector.__cache__ = {}; Module['CharVector'] = CharVector; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -CharVector.prototype['resize'] = CharVector.prototype.resize = function(size) { + +CharVector.prototype['resize'] = CharVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_CharVector_resize_1(self, size); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -CharVector.prototype['get'] = CharVector.prototype.get = function(i) { +CharVector.prototype['get'] = CharVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return _emscripten_bind_CharVector_get_1(self, i); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -CharVector.prototype['set'] = CharVector.prototype.set = function(i, val) { +CharVector.prototype['set'] = CharVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_CharVector_set_2(self, i, val); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -CharVector.prototype['size'] = CharVector.prototype.size = function() { +CharVector.prototype['size'] = CharVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_CharVector_size_0(self); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -CharVector.prototype['__destroy__'] = CharVector.prototype.__destroy__ = function() { + CharVector.prototype['__destroy__'] = CharVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_CharVector___destroy___0(self); }; - -// Interface: IntVector - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function IntVector(size) { +// IntVector +/** @suppress {undefinedVars, duplicate} @this{Object} */function IntVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_IntVector_IntVector_0(); getCache(IntVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_IntVector_IntVector_1(size); getCache(IntVector)[this.ptr] = this; -}; - +};; IntVector.prototype = Object.create(WrapperObject.prototype); IntVector.prototype.constructor = IntVector; IntVector.prototype.__class__ = IntVector; IntVector.__cache__ = {}; Module['IntVector'] = IntVector; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -IntVector.prototype['resize'] = IntVector.prototype.resize = function(size) { + +IntVector.prototype['resize'] = IntVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_IntVector_resize_1(self, size); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -IntVector.prototype['get'] = IntVector.prototype.get = function(i) { +IntVector.prototype['get'] = IntVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return _emscripten_bind_IntVector_get_1(self, i); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -IntVector.prototype['set'] = IntVector.prototype.set = function(i, val) { +IntVector.prototype['set'] = IntVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_IntVector_set_2(self, i, val); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -IntVector.prototype['size'] = IntVector.prototype.size = function() { +IntVector.prototype['size'] = IntVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_IntVector_size_0(self); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -IntVector.prototype['__destroy__'] = IntVector.prototype.__destroy__ = function() { + IntVector.prototype['__destroy__'] = IntVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_IntVector___destroy___0(self); }; - -// Interface: DoubleVector - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function DoubleVector(size) { +// DoubleVector +/** @suppress {undefinedVars, duplicate} @this{Object} */function DoubleVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_DoubleVector_DoubleVector_0(); getCache(DoubleVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_DoubleVector_DoubleVector_1(size); getCache(DoubleVector)[this.ptr] = this; -}; - +};; DoubleVector.prototype = Object.create(WrapperObject.prototype); DoubleVector.prototype.constructor = DoubleVector; DoubleVector.prototype.__class__ = DoubleVector; DoubleVector.__cache__ = {}; Module['DoubleVector'] = DoubleVector; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DoubleVector.prototype['resize'] = DoubleVector.prototype.resize = function(size) { + +DoubleVector.prototype['resize'] = DoubleVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_DoubleVector_resize_1(self, size); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DoubleVector.prototype['get'] = DoubleVector.prototype.get = function(i) { +DoubleVector.prototype['get'] = DoubleVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return _emscripten_bind_DoubleVector_get_1(self, i); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DoubleVector.prototype['set'] = DoubleVector.prototype.set = function(i, val) { +DoubleVector.prototype['set'] = DoubleVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_DoubleVector_set_2(self, i, val); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DoubleVector.prototype['size'] = DoubleVector.prototype.size = function() { +DoubleVector.prototype['size'] = DoubleVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_DoubleVector_size_0(self); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DoubleVector.prototype['__destroy__'] = DoubleVector.prototype.__destroy__ = function() { + DoubleVector.prototype['__destroy__'] = DoubleVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_DoubleVector___destroy___0(self); }; - -// Interface: SpeciesMasterTableRecordVector - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SpeciesMasterTableRecordVector(size) { +// SpeciesMasterTableRecordVector +/** @suppress {undefinedVars, duplicate} @this{Object} */function SpeciesMasterTableRecordVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0(); getCache(SpeciesMasterTableRecordVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1(size); getCache(SpeciesMasterTableRecordVector)[this.ptr] = this; -}; - +};; SpeciesMasterTableRecordVector.prototype = Object.create(WrapperObject.prototype); SpeciesMasterTableRecordVector.prototype.constructor = SpeciesMasterTableRecordVector; SpeciesMasterTableRecordVector.prototype.__class__ = SpeciesMasterTableRecordVector; SpeciesMasterTableRecordVector.__cache__ = {}; Module['SpeciesMasterTableRecordVector'] = SpeciesMasterTableRecordVector; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTableRecordVector.prototype['resize'] = SpeciesMasterTableRecordVector.prototype.resize = function(size) { + +SpeciesMasterTableRecordVector.prototype['resize'] = SpeciesMasterTableRecordVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_SpeciesMasterTableRecordVector_resize_1(self, size); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTableRecordVector.prototype['get'] = SpeciesMasterTableRecordVector.prototype.get = function(i) { +SpeciesMasterTableRecordVector.prototype['get'] = SpeciesMasterTableRecordVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return wrapPointer(_emscripten_bind_SpeciesMasterTableRecordVector_get_1(self, i), SpeciesMasterTableRecord); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTableRecordVector.prototype['set'] = SpeciesMasterTableRecordVector.prototype.set = function(i, val) { +SpeciesMasterTableRecordVector.prototype['set'] = SpeciesMasterTableRecordVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_SpeciesMasterTableRecordVector_set_2(self, i, val); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTableRecordVector.prototype['size'] = SpeciesMasterTableRecordVector.prototype.size = function() { +SpeciesMasterTableRecordVector.prototype['size'] = SpeciesMasterTableRecordVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SpeciesMasterTableRecordVector_size_0(self); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTableRecordVector.prototype['__destroy__'] = SpeciesMasterTableRecordVector.prototype.__destroy__ = function() { + SpeciesMasterTableRecordVector.prototype['__destroy__'] = SpeciesMasterTableRecordVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SpeciesMasterTableRecordVector___destroy___0(self); }; - -// Interface: AreaUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function AreaUnits() { throw "cannot construct a AreaUnits, no constructor in IDL" } +// AreaUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function AreaUnits() { throw "cannot construct a AreaUnits, no constructor in IDL" } AreaUnits.prototype = Object.create(WrapperObject.prototype); AreaUnits.prototype.constructor = AreaUnits; AreaUnits.prototype.__class__ = AreaUnits; AreaUnits.__cache__ = {}; Module['AreaUnits'] = AreaUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -AreaUnits.prototype['toBaseUnits'] = AreaUnits.prototype.toBaseUnits = function(value, units) { + +AreaUnits.prototype['toBaseUnits'] = AreaUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_AreaUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_AreaUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -AreaUnits.prototype['fromBaseUnits'] = AreaUnits.prototype.fromBaseUnits = function(value, units) { +AreaUnits.prototype['fromBaseUnits'] = AreaUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_AreaUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_AreaUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -AreaUnits.prototype['__destroy__'] = AreaUnits.prototype.__destroy__ = function() { + AreaUnits.prototype['__destroy__'] = AreaUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_AreaUnits___destroy___0(self); }; - -// Interface: BasalAreaUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function BasalAreaUnits() { throw "cannot construct a BasalAreaUnits, no constructor in IDL" } +// BasalAreaUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function BasalAreaUnits() { throw "cannot construct a BasalAreaUnits, no constructor in IDL" } BasalAreaUnits.prototype = Object.create(WrapperObject.prototype); BasalAreaUnits.prototype.constructor = BasalAreaUnits; BasalAreaUnits.prototype.__class__ = BasalAreaUnits; BasalAreaUnits.__cache__ = {}; Module['BasalAreaUnits'] = BasalAreaUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -BasalAreaUnits.prototype['toBaseUnits'] = BasalAreaUnits.prototype.toBaseUnits = function(value, units) { + +BasalAreaUnits.prototype['toBaseUnits'] = BasalAreaUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_BasalAreaUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_BasalAreaUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -BasalAreaUnits.prototype['fromBaseUnits'] = BasalAreaUnits.prototype.fromBaseUnits = function(value, units) { +BasalAreaUnits.prototype['fromBaseUnits'] = BasalAreaUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_BasalAreaUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_BasalAreaUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -BasalAreaUnits.prototype['__destroy__'] = BasalAreaUnits.prototype.__destroy__ = function() { + BasalAreaUnits.prototype['__destroy__'] = BasalAreaUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_BasalAreaUnits___destroy___0(self); }; - -// Interface: FractionUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function FractionUnits() { throw "cannot construct a FractionUnits, no constructor in IDL" } +// FractionUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function FractionUnits() { throw "cannot construct a FractionUnits, no constructor in IDL" } FractionUnits.prototype = Object.create(WrapperObject.prototype); FractionUnits.prototype.constructor = FractionUnits; FractionUnits.prototype.__class__ = FractionUnits; FractionUnits.__cache__ = {}; Module['FractionUnits'] = FractionUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FractionUnits.prototype['toBaseUnits'] = FractionUnits.prototype.toBaseUnits = function(value, units) { + +FractionUnits.prototype['toBaseUnits'] = FractionUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_FractionUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_FractionUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FractionUnits.prototype['fromBaseUnits'] = FractionUnits.prototype.fromBaseUnits = function(value, units) { +FractionUnits.prototype['fromBaseUnits'] = FractionUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_FractionUnits_fromBaseUnits_2(value, units); -}; - + return _emscripten_bind_FractionUnits_fromBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FractionUnits.prototype['__destroy__'] = FractionUnits.prototype.__destroy__ = function() { + FractionUnits.prototype['__destroy__'] = FractionUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_FractionUnits___destroy___0(self); }; - -// Interface: LengthUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function LengthUnits() { throw "cannot construct a LengthUnits, no constructor in IDL" } +// LengthUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function LengthUnits() { throw "cannot construct a LengthUnits, no constructor in IDL" } LengthUnits.prototype = Object.create(WrapperObject.prototype); LengthUnits.prototype.constructor = LengthUnits; LengthUnits.prototype.__class__ = LengthUnits; LengthUnits.__cache__ = {}; Module['LengthUnits'] = LengthUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -LengthUnits.prototype['toBaseUnits'] = LengthUnits.prototype.toBaseUnits = function(value, units) { + +LengthUnits.prototype['toBaseUnits'] = LengthUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_LengthUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_LengthUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -LengthUnits.prototype['fromBaseUnits'] = LengthUnits.prototype.fromBaseUnits = function(value, units) { +LengthUnits.prototype['fromBaseUnits'] = LengthUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_LengthUnits_fromBaseUnits_2(value, units); -}; - + return _emscripten_bind_LengthUnits_fromBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -LengthUnits.prototype['__destroy__'] = LengthUnits.prototype.__destroy__ = function() { + LengthUnits.prototype['__destroy__'] = LengthUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_LengthUnits___destroy___0(self); }; - -// Interface: LoadingUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function LoadingUnits() { throw "cannot construct a LoadingUnits, no constructor in IDL" } +// LoadingUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function LoadingUnits() { throw "cannot construct a LoadingUnits, no constructor in IDL" } LoadingUnits.prototype = Object.create(WrapperObject.prototype); LoadingUnits.prototype.constructor = LoadingUnits; LoadingUnits.prototype.__class__ = LoadingUnits; LoadingUnits.__cache__ = {}; Module['LoadingUnits'] = LoadingUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -LoadingUnits.prototype['toBaseUnits'] = LoadingUnits.prototype.toBaseUnits = function(value, units) { + +LoadingUnits.prototype['toBaseUnits'] = LoadingUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_LoadingUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_LoadingUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -LoadingUnits.prototype['fromBaseUnits'] = LoadingUnits.prototype.fromBaseUnits = function(value, units) { +LoadingUnits.prototype['fromBaseUnits'] = LoadingUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_LoadingUnits_fromBaseUnits_2(value, units); -}; - + return _emscripten_bind_LoadingUnits_fromBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -LoadingUnits.prototype['__destroy__'] = LoadingUnits.prototype.__destroy__ = function() { + LoadingUnits.prototype['__destroy__'] = LoadingUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_LoadingUnits___destroy___0(self); }; - -// Interface: SurfaceAreaToVolumeUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SurfaceAreaToVolumeUnits() { throw "cannot construct a SurfaceAreaToVolumeUnits, no constructor in IDL" } +// SurfaceAreaToVolumeUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function SurfaceAreaToVolumeUnits() { throw "cannot construct a SurfaceAreaToVolumeUnits, no constructor in IDL" } SurfaceAreaToVolumeUnits.prototype = Object.create(WrapperObject.prototype); SurfaceAreaToVolumeUnits.prototype.constructor = SurfaceAreaToVolumeUnits; SurfaceAreaToVolumeUnits.prototype.__class__ = SurfaceAreaToVolumeUnits; SurfaceAreaToVolumeUnits.__cache__ = {}; Module['SurfaceAreaToVolumeUnits'] = SurfaceAreaToVolumeUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SurfaceAreaToVolumeUnits.prototype['toBaseUnits'] = SurfaceAreaToVolumeUnits.prototype.toBaseUnits = function(value, units) { + +SurfaceAreaToVolumeUnits.prototype['toBaseUnits'] = SurfaceAreaToVolumeUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SurfaceAreaToVolumeUnits.prototype['fromBaseUnits'] = SurfaceAreaToVolumeUnits.prototype.fromBaseUnits = function(value, units) { +SurfaceAreaToVolumeUnits.prototype['fromBaseUnits'] = SurfaceAreaToVolumeUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SurfaceAreaToVolumeUnits.prototype['__destroy__'] = SurfaceAreaToVolumeUnits.prototype.__destroy__ = function() { + SurfaceAreaToVolumeUnits.prototype['__destroy__'] = SurfaceAreaToVolumeUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0(self); }; - -// Interface: SpeedUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SpeedUnits() { throw "cannot construct a SpeedUnits, no constructor in IDL" } +// SpeedUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function SpeedUnits() { throw "cannot construct a SpeedUnits, no constructor in IDL" } SpeedUnits.prototype = Object.create(WrapperObject.prototype); SpeedUnits.prototype.constructor = SpeedUnits; SpeedUnits.prototype.__class__ = SpeedUnits; SpeedUnits.__cache__ = {}; Module['SpeedUnits'] = SpeedUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeedUnits.prototype['toBaseUnits'] = SpeedUnits.prototype.toBaseUnits = function(value, units) { + +SpeedUnits.prototype['toBaseUnits'] = SpeedUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SpeedUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_SpeedUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeedUnits.prototype['fromBaseUnits'] = SpeedUnits.prototype.fromBaseUnits = function(value, units) { +SpeedUnits.prototype['fromBaseUnits'] = SpeedUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SpeedUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_SpeedUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeedUnits.prototype['__destroy__'] = SpeedUnits.prototype.__destroy__ = function() { + SpeedUnits.prototype['__destroy__'] = SpeedUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SpeedUnits___destroy___0(self); }; - -// Interface: PressureUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function PressureUnits() { throw "cannot construct a PressureUnits, no constructor in IDL" } +// PressureUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function PressureUnits() { throw "cannot construct a PressureUnits, no constructor in IDL" } PressureUnits.prototype = Object.create(WrapperObject.prototype); PressureUnits.prototype.constructor = PressureUnits; PressureUnits.prototype.__class__ = PressureUnits; PressureUnits.__cache__ = {}; Module['PressureUnits'] = PressureUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PressureUnits.prototype['toBaseUnits'] = PressureUnits.prototype.toBaseUnits = function(value, units) { + +PressureUnits.prototype['toBaseUnits'] = PressureUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_PressureUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_PressureUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PressureUnits.prototype['fromBaseUnits'] = PressureUnits.prototype.fromBaseUnits = function(value, units) { +PressureUnits.prototype['fromBaseUnits'] = PressureUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_PressureUnits_fromBaseUnits_2(value, units); -}; - + return _emscripten_bind_PressureUnits_fromBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PressureUnits.prototype['__destroy__'] = PressureUnits.prototype.__destroy__ = function() { + PressureUnits.prototype['__destroy__'] = PressureUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_PressureUnits___destroy___0(self); }; - -// Interface: SlopeUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SlopeUnits() { throw "cannot construct a SlopeUnits, no constructor in IDL" } +// SlopeUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function SlopeUnits() { throw "cannot construct a SlopeUnits, no constructor in IDL" } SlopeUnits.prototype = Object.create(WrapperObject.prototype); SlopeUnits.prototype.constructor = SlopeUnits; SlopeUnits.prototype.__class__ = SlopeUnits; SlopeUnits.__cache__ = {}; Module['SlopeUnits'] = SlopeUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SlopeUnits.prototype['toBaseUnits'] = SlopeUnits.prototype.toBaseUnits = function(value, units) { + +SlopeUnits.prototype['toBaseUnits'] = SlopeUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SlopeUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_SlopeUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SlopeUnits.prototype['fromBaseUnits'] = SlopeUnits.prototype.fromBaseUnits = function(value, units) { +SlopeUnits.prototype['fromBaseUnits'] = SlopeUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SlopeUnits_fromBaseUnits_2(value, units); -}; - + return _emscripten_bind_SlopeUnits_fromBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SlopeUnits.prototype['__destroy__'] = SlopeUnits.prototype.__destroy__ = function() { + SlopeUnits.prototype['__destroy__'] = SlopeUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SlopeUnits___destroy___0(self); }; - -// Interface: DensityUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function DensityUnits() { throw "cannot construct a DensityUnits, no constructor in IDL" } +// DensityUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function DensityUnits() { throw "cannot construct a DensityUnits, no constructor in IDL" } DensityUnits.prototype = Object.create(WrapperObject.prototype); DensityUnits.prototype.constructor = DensityUnits; DensityUnits.prototype.__class__ = DensityUnits; DensityUnits.__cache__ = {}; Module['DensityUnits'] = DensityUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DensityUnits.prototype['toBaseUnits'] = DensityUnits.prototype.toBaseUnits = function(value, units) { + +DensityUnits.prototype['toBaseUnits'] = DensityUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_DensityUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_DensityUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DensityUnits.prototype['fromBaseUnits'] = DensityUnits.prototype.fromBaseUnits = function(value, units) { +DensityUnits.prototype['fromBaseUnits'] = DensityUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_DensityUnits_fromBaseUnits_2(value, units); -}; - + return _emscripten_bind_DensityUnits_fromBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DensityUnits.prototype['__destroy__'] = DensityUnits.prototype.__destroy__ = function() { + DensityUnits.prototype['__destroy__'] = DensityUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_DensityUnits___destroy___0(self); }; - -// Interface: HeatOfCombustionUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function HeatOfCombustionUnits() { throw "cannot construct a HeatOfCombustionUnits, no constructor in IDL" } +// HeatOfCombustionUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function HeatOfCombustionUnits() { throw "cannot construct a HeatOfCombustionUnits, no constructor in IDL" } HeatOfCombustionUnits.prototype = Object.create(WrapperObject.prototype); HeatOfCombustionUnits.prototype.constructor = HeatOfCombustionUnits; HeatOfCombustionUnits.prototype.__class__ = HeatOfCombustionUnits; HeatOfCombustionUnits.__cache__ = {}; Module['HeatOfCombustionUnits'] = HeatOfCombustionUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatOfCombustionUnits.prototype['toBaseUnits'] = HeatOfCombustionUnits.prototype.toBaseUnits = function(value, units) { + +HeatOfCombustionUnits.prototype['toBaseUnits'] = HeatOfCombustionUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatOfCombustionUnits.prototype['fromBaseUnits'] = HeatOfCombustionUnits.prototype.fromBaseUnits = function(value, units) { +HeatOfCombustionUnits.prototype['fromBaseUnits'] = HeatOfCombustionUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatOfCombustionUnits.prototype['__destroy__'] = HeatOfCombustionUnits.prototype.__destroy__ = function() { + HeatOfCombustionUnits.prototype['__destroy__'] = HeatOfCombustionUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_HeatOfCombustionUnits___destroy___0(self); }; - -// Interface: HeatSinkUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function HeatSinkUnits() { throw "cannot construct a HeatSinkUnits, no constructor in IDL" } +// HeatSinkUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function HeatSinkUnits() { throw "cannot construct a HeatSinkUnits, no constructor in IDL" } HeatSinkUnits.prototype = Object.create(WrapperObject.prototype); HeatSinkUnits.prototype.constructor = HeatSinkUnits; HeatSinkUnits.prototype.__class__ = HeatSinkUnits; HeatSinkUnits.__cache__ = {}; Module['HeatSinkUnits'] = HeatSinkUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatSinkUnits.prototype['toBaseUnits'] = HeatSinkUnits.prototype.toBaseUnits = function(value, units) { + +HeatSinkUnits.prototype['toBaseUnits'] = HeatSinkUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatSinkUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_HeatSinkUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatSinkUnits.prototype['fromBaseUnits'] = HeatSinkUnits.prototype.fromBaseUnits = function(value, units) { +HeatSinkUnits.prototype['fromBaseUnits'] = HeatSinkUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatSinkUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_HeatSinkUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatSinkUnits.prototype['__destroy__'] = HeatSinkUnits.prototype.__destroy__ = function() { + HeatSinkUnits.prototype['__destroy__'] = HeatSinkUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_HeatSinkUnits___destroy___0(self); }; - -// Interface: HeatPerUnitAreaUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function HeatPerUnitAreaUnits() { throw "cannot construct a HeatPerUnitAreaUnits, no constructor in IDL" } +// HeatPerUnitAreaUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function HeatPerUnitAreaUnits() { throw "cannot construct a HeatPerUnitAreaUnits, no constructor in IDL" } HeatPerUnitAreaUnits.prototype = Object.create(WrapperObject.prototype); HeatPerUnitAreaUnits.prototype.constructor = HeatPerUnitAreaUnits; HeatPerUnitAreaUnits.prototype.__class__ = HeatPerUnitAreaUnits; HeatPerUnitAreaUnits.__cache__ = {}; Module['HeatPerUnitAreaUnits'] = HeatPerUnitAreaUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatPerUnitAreaUnits.prototype['toBaseUnits'] = HeatPerUnitAreaUnits.prototype.toBaseUnits = function(value, units) { + +HeatPerUnitAreaUnits.prototype['toBaseUnits'] = HeatPerUnitAreaUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatPerUnitAreaUnits.prototype['fromBaseUnits'] = HeatPerUnitAreaUnits.prototype.fromBaseUnits = function(value, units) { +HeatPerUnitAreaUnits.prototype['fromBaseUnits'] = HeatPerUnitAreaUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2(value, units); -}; - + return _emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatPerUnitAreaUnits.prototype['__destroy__'] = HeatPerUnitAreaUnits.prototype.__destroy__ = function() { + HeatPerUnitAreaUnits.prototype['__destroy__'] = HeatPerUnitAreaUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_HeatPerUnitAreaUnits___destroy___0(self); }; - -// Interface: HeatSourceAndReactionIntensityUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function HeatSourceAndReactionIntensityUnits() { throw "cannot construct a HeatSourceAndReactionIntensityUnits, no constructor in IDL" } +// HeatSourceAndReactionIntensityUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function HeatSourceAndReactionIntensityUnits() { throw "cannot construct a HeatSourceAndReactionIntensityUnits, no constructor in IDL" } HeatSourceAndReactionIntensityUnits.prototype = Object.create(WrapperObject.prototype); HeatSourceAndReactionIntensityUnits.prototype.constructor = HeatSourceAndReactionIntensityUnits; HeatSourceAndReactionIntensityUnits.prototype.__class__ = HeatSourceAndReactionIntensityUnits; HeatSourceAndReactionIntensityUnits.__cache__ = {}; Module['HeatSourceAndReactionIntensityUnits'] = HeatSourceAndReactionIntensityUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatSourceAndReactionIntensityUnits.prototype['toBaseUnits'] = HeatSourceAndReactionIntensityUnits.prototype.toBaseUnits = function(value, units) { + +HeatSourceAndReactionIntensityUnits.prototype['toBaseUnits'] = HeatSourceAndReactionIntensityUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatSourceAndReactionIntensityUnits.prototype['fromBaseUnits'] = HeatSourceAndReactionIntensityUnits.prototype.fromBaseUnits = function(value, units) { +HeatSourceAndReactionIntensityUnits.prototype['fromBaseUnits'] = HeatSourceAndReactionIntensityUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2(value, units); -}; - + return _emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatSourceAndReactionIntensityUnits.prototype['__destroy__'] = HeatSourceAndReactionIntensityUnits.prototype.__destroy__ = function() { + HeatSourceAndReactionIntensityUnits.prototype['__destroy__'] = HeatSourceAndReactionIntensityUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0(self); }; - -// Interface: FirelineIntensityUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function FirelineIntensityUnits() { throw "cannot construct a FirelineIntensityUnits, no constructor in IDL" } +// FirelineIntensityUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function FirelineIntensityUnits() { throw "cannot construct a FirelineIntensityUnits, no constructor in IDL" } FirelineIntensityUnits.prototype = Object.create(WrapperObject.prototype); FirelineIntensityUnits.prototype.constructor = FirelineIntensityUnits; FirelineIntensityUnits.prototype.__class__ = FirelineIntensityUnits; FirelineIntensityUnits.__cache__ = {}; Module['FirelineIntensityUnits'] = FirelineIntensityUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FirelineIntensityUnits.prototype['toBaseUnits'] = FirelineIntensityUnits.prototype.toBaseUnits = function(value, units) { + +FirelineIntensityUnits.prototype['toBaseUnits'] = FirelineIntensityUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_FirelineIntensityUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_FirelineIntensityUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FirelineIntensityUnits.prototype['fromBaseUnits'] = FirelineIntensityUnits.prototype.fromBaseUnits = function(value, units) { +FirelineIntensityUnits.prototype['fromBaseUnits'] = FirelineIntensityUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2(value, units); -}; - + return _emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FirelineIntensityUnits.prototype['__destroy__'] = FirelineIntensityUnits.prototype.__destroy__ = function() { + FirelineIntensityUnits.prototype['__destroy__'] = FirelineIntensityUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_FirelineIntensityUnits___destroy___0(self); }; - -// Interface: TemperatureUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function TemperatureUnits() { throw "cannot construct a TemperatureUnits, no constructor in IDL" } +// TemperatureUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function TemperatureUnits() { throw "cannot construct a TemperatureUnits, no constructor in IDL" } TemperatureUnits.prototype = Object.create(WrapperObject.prototype); TemperatureUnits.prototype.constructor = TemperatureUnits; TemperatureUnits.prototype.__class__ = TemperatureUnits; TemperatureUnits.__cache__ = {}; Module['TemperatureUnits'] = TemperatureUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -TemperatureUnits.prototype['toBaseUnits'] = TemperatureUnits.prototype.toBaseUnits = function(value, units) { + +TemperatureUnits.prototype['toBaseUnits'] = TemperatureUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_TemperatureUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_TemperatureUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -TemperatureUnits.prototype['fromBaseUnits'] = TemperatureUnits.prototype.fromBaseUnits = function(value, units) { +TemperatureUnits.prototype['fromBaseUnits'] = TemperatureUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_TemperatureUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_TemperatureUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -TemperatureUnits.prototype['__destroy__'] = TemperatureUnits.prototype.__destroy__ = function() { + TemperatureUnits.prototype['__destroy__'] = TemperatureUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_TemperatureUnits___destroy___0(self); }; - -// Interface: TimeUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function TimeUnits() { throw "cannot construct a TimeUnits, no constructor in IDL" } +// TimeUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function TimeUnits() { throw "cannot construct a TimeUnits, no constructor in IDL" } TimeUnits.prototype = Object.create(WrapperObject.prototype); TimeUnits.prototype.constructor = TimeUnits; TimeUnits.prototype.__class__ = TimeUnits; TimeUnits.__cache__ = {}; Module['TimeUnits'] = TimeUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -TimeUnits.prototype['toBaseUnits'] = TimeUnits.prototype.toBaseUnits = function(value, units) { + +TimeUnits.prototype['toBaseUnits'] = TimeUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_TimeUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_TimeUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -TimeUnits.prototype['fromBaseUnits'] = TimeUnits.prototype.fromBaseUnits = function(value, units) { +TimeUnits.prototype['fromBaseUnits'] = TimeUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_TimeUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_TimeUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -TimeUnits.prototype['__destroy__'] = TimeUnits.prototype.__destroy__ = function() { + TimeUnits.prototype['__destroy__'] = TimeUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_TimeUnits___destroy___0(self); }; - -// Interface: FireSize - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function FireSize() { throw "cannot construct a FireSize, no constructor in IDL" } +// FireSize +/** @suppress {undefinedVars, duplicate} @this{Object} */function FireSize() { throw "cannot construct a FireSize, no constructor in IDL" } FireSize.prototype = Object.create(WrapperObject.prototype); FireSize.prototype.constructor = FireSize; FireSize.prototype.__class__ = FireSize; FireSize.__cache__ = {}; Module['FireSize'] = FireSize; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getBackingSpreadRate'] = FireSize.prototype.getBackingSpreadRate = function(spreadRateUnits) { + +FireSize.prototype['getBackingSpreadRate'] = FireSize.prototype.getBackingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_FireSize_getBackingSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getEccentricity'] = FireSize.prototype.getEccentricity = function() { +FireSize.prototype['getEccentricity'] = FireSize.prototype.getEccentricity = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_FireSize_getEccentricity_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getEllipticalA'] = FireSize.prototype.getEllipticalA = function(lengthUnits, elapsedTime, timeUnits) { +FireSize.prototype['getEllipticalA'] = FireSize.prototype.getEllipticalA = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getEllipticalA_3(self, lengthUnits, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getEllipticalB'] = FireSize.prototype.getEllipticalB = function(lengthUnits, elapsedTime, timeUnits) { +FireSize.prototype['getEllipticalB'] = FireSize.prototype.getEllipticalB = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getEllipticalB_3(self, lengthUnits, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getEllipticalC'] = FireSize.prototype.getEllipticalC = function(lengthUnits, elapsedTime, timeUnits) { +FireSize.prototype['getEllipticalC'] = FireSize.prototype.getEllipticalC = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getEllipticalC_3(self, lengthUnits, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getFireArea'] = FireSize.prototype.getFireArea = function(isCrown, areaUnits, elapsedTime, timeUnits) { +FireSize.prototype['getFireArea'] = FireSize.prototype.getFireArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isCrown, areaUnits, elapsedTime, timeUnits) { var self = this.ptr; if (isCrown && typeof isCrown === 'object') isCrown = isCrown.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getFireArea_4(self, isCrown, areaUnits, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getFireLength'] = FireSize.prototype.getFireLength = function(lengthUnits, elapsedTime, timeUnits) { +FireSize.prototype['getFireLength'] = FireSize.prototype.getFireLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getFireLength_3(self, lengthUnits, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getFireLengthToWidthRatio'] = FireSize.prototype.getFireLengthToWidthRatio = function() { +FireSize.prototype['getFireLengthToWidthRatio'] = FireSize.prototype.getFireLengthToWidthRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_FireSize_getFireLengthToWidthRatio_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getFirePerimeter'] = FireSize.prototype.getFirePerimeter = function(isCrown, lengthUnits, elapsedTime, timeUnits) { +FireSize.prototype['getFirePerimeter'] = FireSize.prototype.getFirePerimeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isCrown, lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (isCrown && typeof isCrown === 'object') isCrown = isCrown.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getFirePerimeter_4(self, isCrown, lengthUnits, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getFlankingSpreadRate'] = FireSize.prototype.getFlankingSpreadRate = function(spreadRateUnits) { +FireSize.prototype['getFlankingSpreadRate'] = FireSize.prototype.getFlankingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_FireSize_getFlankingSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getHeadingToBackingRatio'] = FireSize.prototype.getHeadingToBackingRatio = function() { +FireSize.prototype['getHeadingToBackingRatio'] = FireSize.prototype.getHeadingToBackingRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_FireSize_getHeadingToBackingRatio_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getMaxFireWidth'] = FireSize.prototype.getMaxFireWidth = function(lengthUnits, elapsedTime, timeUnits) { +FireSize.prototype['getMaxFireWidth'] = FireSize.prototype.getMaxFireWidth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getMaxFireWidth_3(self, lengthUnits, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['calculateFireBasicDimensions'] = FireSize.prototype.calculateFireBasicDimensions = function(isCrown, effectiveWindSpeed, windSpeedRateUnits, forwardSpreadRate, spreadRateUnits) { +FireSize.prototype['calculateFireBasicDimensions'] = FireSize.prototype.calculateFireBasicDimensions = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isCrown, effectiveWindSpeed, windSpeedRateUnits, forwardSpreadRate, spreadRateUnits) { var self = this.ptr; if (isCrown && typeof isCrown === 'object') isCrown = isCrown.ptr; if (effectiveWindSpeed && typeof effectiveWindSpeed === 'object') effectiveWindSpeed = effectiveWindSpeed.ptr; @@ -1090,205 +957,173 @@ FireSize.prototype['calculateFireBasicDimensions'] = FireSize.prototype.calculat if (forwardSpreadRate && typeof forwardSpreadRate === 'object') forwardSpreadRate = forwardSpreadRate.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; _emscripten_bind_FireSize_calculateFireBasicDimensions_5(self, isCrown, effectiveWindSpeed, windSpeedRateUnits, forwardSpreadRate, spreadRateUnits); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['__destroy__'] = FireSize.prototype.__destroy__ = function() { + FireSize.prototype['__destroy__'] = FireSize.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_FireSize___destroy___0(self); }; - -// Interface: SIGContainAdapter - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGContainAdapter() { +// SIGContainAdapter +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGContainAdapter() { this.ptr = _emscripten_bind_SIGContainAdapter_SIGContainAdapter_0(); getCache(SIGContainAdapter)[this.ptr] = this; -}; - +};; SIGContainAdapter.prototype = Object.create(WrapperObject.prototype); SIGContainAdapter.prototype.constructor = SIGContainAdapter; SIGContainAdapter.prototype.__class__ = SIGContainAdapter; SIGContainAdapter.__cache__ = {}; Module['SIGContainAdapter'] = SIGContainAdapter; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getContainmentStatus'] = SIGContainAdapter.prototype.getContainmentStatus = function() { + +SIGContainAdapter.prototype['getContainmentStatus'] = SIGContainAdapter.prototype.getContainmentStatus = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getContainmentStatus_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFirePerimeterX'] = SIGContainAdapter.prototype.getFirePerimeterX = function() { +SIGContainAdapter.prototype['getFirePerimeterX'] = SIGContainAdapter.prototype.getFirePerimeterX = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return wrapPointer(_emscripten_bind_SIGContainAdapter_getFirePerimeterX_0(self), DoubleVector); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFirePerimeterY'] = SIGContainAdapter.prototype.getFirePerimeterY = function() { +SIGContainAdapter.prototype['getFirePerimeterY'] = SIGContainAdapter.prototype.getFirePerimeterY = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return wrapPointer(_emscripten_bind_SIGContainAdapter_getFirePerimeterY_0(self), DoubleVector); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getAttackDistance'] = SIGContainAdapter.prototype.getAttackDistance = function(lengthUnits) { +SIGContainAdapter.prototype['getAttackDistance'] = SIGContainAdapter.prototype.getAttackDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGContainAdapter_getAttackDistance_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFinalContainmentArea'] = SIGContainAdapter.prototype.getFinalContainmentArea = function(areaUnits) { +SIGContainAdapter.prototype['getFinalContainmentArea'] = SIGContainAdapter.prototype.getFinalContainmentArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFinalCost'] = SIGContainAdapter.prototype.getFinalCost = function() { +SIGContainAdapter.prototype['getFinalCost'] = SIGContainAdapter.prototype.getFinalCost = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFinalCost_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFinalFireLineLength'] = SIGContainAdapter.prototype.getFinalFireLineLength = function(lengthUnits) { +SIGContainAdapter.prototype['getFinalFireLineLength'] = SIGContainAdapter.prototype.getFinalFireLineLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFinalFireSize'] = SIGContainAdapter.prototype.getFinalFireSize = function(areaUnits) { +SIGContainAdapter.prototype['getFinalFireSize'] = SIGContainAdapter.prototype.getFinalFireSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalFireSize_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFinalTimeSinceReport'] = SIGContainAdapter.prototype.getFinalTimeSinceReport = function(timeUnits) { +SIGContainAdapter.prototype['getFinalTimeSinceReport'] = SIGContainAdapter.prototype.getFinalTimeSinceReport = /** @suppress {undefinedVars, duplicate} @this{Object} */function(timeUnits) { var self = this.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1(self, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFinalProductionRate'] = SIGContainAdapter.prototype.getFinalProductionRate = function(speedUnits) { +SIGContainAdapter.prototype['getFinalProductionRate'] = SIGContainAdapter.prototype.getFinalProductionRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speedUnits) { var self = this.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalProductionRate_1(self, speedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFireBackAtAttack'] = SIGContainAdapter.prototype.getFireBackAtAttack = function() { +SIGContainAdapter.prototype['getFireBackAtAttack'] = SIGContainAdapter.prototype.getFireBackAtAttack = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFireBackAtReport'] = SIGContainAdapter.prototype.getFireBackAtReport = function() { +SIGContainAdapter.prototype['getFireBackAtReport'] = SIGContainAdapter.prototype.getFireBackAtReport = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFireBackAtReport_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFireHeadAtAttack'] = SIGContainAdapter.prototype.getFireHeadAtAttack = function() { +SIGContainAdapter.prototype['getFireHeadAtAttack'] = SIGContainAdapter.prototype.getFireHeadAtAttack = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFireHeadAtReport'] = SIGContainAdapter.prototype.getFireHeadAtReport = function() { +SIGContainAdapter.prototype['getFireHeadAtReport'] = SIGContainAdapter.prototype.getFireHeadAtReport = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFireSizeAtInitialAttack'] = SIGContainAdapter.prototype.getFireSizeAtInitialAttack = function(areaUnits) { +SIGContainAdapter.prototype['getFireSizeAtInitialAttack'] = SIGContainAdapter.prototype.getFireSizeAtInitialAttack = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getLengthToWidthRatio'] = SIGContainAdapter.prototype.getLengthToWidthRatio = function() { +SIGContainAdapter.prototype['getLengthToWidthRatio'] = SIGContainAdapter.prototype.getLengthToWidthRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getPerimeterAtContainment'] = SIGContainAdapter.prototype.getPerimeterAtContainment = function(lengthUnits) { +SIGContainAdapter.prototype['getPerimeterAtContainment'] = SIGContainAdapter.prototype.getPerimeterAtContainment = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getPerimeterAtInitialAttack'] = SIGContainAdapter.prototype.getPerimeterAtInitialAttack = function(lengthUnits) { +SIGContainAdapter.prototype['getPerimeterAtInitialAttack'] = SIGContainAdapter.prototype.getPerimeterAtInitialAttack = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getReportSize'] = SIGContainAdapter.prototype.getReportSize = function(areaUnits) { +SIGContainAdapter.prototype['getReportSize'] = SIGContainAdapter.prototype.getReportSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGContainAdapter_getReportSize_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getReportRate'] = SIGContainAdapter.prototype.getReportRate = function(speedUnits) { +SIGContainAdapter.prototype['getReportRate'] = SIGContainAdapter.prototype.getReportRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speedUnits) { var self = this.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; return _emscripten_bind_SIGContainAdapter_getReportRate_1(self, speedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getAutoComputedResourceProductionRate'] = SIGContainAdapter.prototype.getAutoComputedResourceProductionRate = function(speedUnits) { +SIGContainAdapter.prototype['getAutoComputedResourceProductionRate'] = SIGContainAdapter.prototype.getAutoComputedResourceProductionRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speedUnits) { var self = this.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; return _emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1(self, speedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getTactic'] = SIGContainAdapter.prototype.getTactic = function() { +SIGContainAdapter.prototype['getTactic'] = SIGContainAdapter.prototype.getTactic = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getTactic_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFirePerimeterPointCount'] = SIGContainAdapter.prototype.getFirePerimeterPointCount = function() { +SIGContainAdapter.prototype['getFirePerimeterPointCount'] = SIGContainAdapter.prototype.getFirePerimeterPointCount = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['removeAllResourcesWithThisDesc'] = SIGContainAdapter.prototype.removeAllResourcesWithThisDesc = function(desc) { +SIGContainAdapter.prototype['removeAllResourcesWithThisDesc'] = SIGContainAdapter.prototype.removeAllResourcesWithThisDesc = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desc) { var self = this.ptr; ensureCache.prepare(); if (desc && typeof desc === 'object') desc = desc.ptr; else desc = ensureString(desc); return _emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1(self, desc); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['removeResourceAt'] = SIGContainAdapter.prototype.removeResourceAt = function(index) { +SIGContainAdapter.prototype['removeResourceAt'] = SIGContainAdapter.prototype.removeResourceAt = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGContainAdapter_removeResourceAt_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['removeResourceWithThisDesc'] = SIGContainAdapter.prototype.removeResourceWithThisDesc = function(desc) { +SIGContainAdapter.prototype['removeResourceWithThisDesc'] = SIGContainAdapter.prototype.removeResourceWithThisDesc = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desc) { var self = this.ptr; ensureCache.prepare(); if (desc && typeof desc === 'object') desc = desc.ptr; else desc = ensureString(desc); return _emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1(self, desc); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['addResource'] = SIGContainAdapter.prototype.addResource = function(arrival, arrivalTimeUnit, duration, durationTimeUnit, productionRate, productionRateUnits, description, baseCost, hourCost) { +SIGContainAdapter.prototype['addResource'] = SIGContainAdapter.prototype.addResource = /** @suppress {undefinedVars, duplicate} @this{Object} */function(arrival, arrivalTimeUnit, duration, durationTimeUnit, productionRate, productionRateUnits, description, baseCost, hourCost) { var self = this.ptr; ensureCache.prepare(); if (arrival && typeof arrival === 'object') arrival = arrival.ptr; @@ -1302,230 +1137,196 @@ SIGContainAdapter.prototype['addResource'] = SIGContainAdapter.prototype.addReso if (baseCost && typeof baseCost === 'object') baseCost = baseCost.ptr; if (hourCost && typeof hourCost === 'object') hourCost = hourCost.ptr; _emscripten_bind_SIGContainAdapter_addResource_9(self, arrival, arrivalTimeUnit, duration, durationTimeUnit, productionRate, productionRateUnits, description, baseCost, hourCost); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['doContainRun'] = SIGContainAdapter.prototype.doContainRun = function() { +SIGContainAdapter.prototype['doContainRun'] = SIGContainAdapter.prototype.doContainRun = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGContainAdapter_doContainRun_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['removeAllResources'] = SIGContainAdapter.prototype.removeAllResources = function() { +SIGContainAdapter.prototype['removeAllResources'] = SIGContainAdapter.prototype.removeAllResources = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGContainAdapter_removeAllResources_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setAttackDistance'] = SIGContainAdapter.prototype.setAttackDistance = function(attackDistance, lengthUnits) { +SIGContainAdapter.prototype['setAttackDistance'] = SIGContainAdapter.prototype.setAttackDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(attackDistance, lengthUnits) { var self = this.ptr; if (attackDistance && typeof attackDistance === 'object') attackDistance = attackDistance.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGContainAdapter_setAttackDistance_2(self, attackDistance, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setContainMode'] = SIGContainAdapter.prototype.setContainMode = function(containmode) { +SIGContainAdapter.prototype['setContainMode'] = SIGContainAdapter.prototype.setContainMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(containmode) { var self = this.ptr; if (containmode && typeof containmode === 'object') containmode = containmode.ptr; _emscripten_bind_SIGContainAdapter_setContainMode_1(self, containmode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setFireStartTime'] = SIGContainAdapter.prototype.setFireStartTime = function(fireStartTime) { +SIGContainAdapter.prototype['setFireStartTime'] = SIGContainAdapter.prototype.setFireStartTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fireStartTime) { var self = this.ptr; if (fireStartTime && typeof fireStartTime === 'object') fireStartTime = fireStartTime.ptr; _emscripten_bind_SIGContainAdapter_setFireStartTime_1(self, fireStartTime); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setLwRatio'] = SIGContainAdapter.prototype.setLwRatio = function(lwRatio) { +SIGContainAdapter.prototype['setLwRatio'] = SIGContainAdapter.prototype.setLwRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lwRatio) { var self = this.ptr; if (lwRatio && typeof lwRatio === 'object') lwRatio = lwRatio.ptr; _emscripten_bind_SIGContainAdapter_setLwRatio_1(self, lwRatio); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setMaxFireSize'] = SIGContainAdapter.prototype.setMaxFireSize = function(maxFireSize) { +SIGContainAdapter.prototype['setMaxFireSize'] = SIGContainAdapter.prototype.setMaxFireSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(maxFireSize) { var self = this.ptr; if (maxFireSize && typeof maxFireSize === 'object') maxFireSize = maxFireSize.ptr; _emscripten_bind_SIGContainAdapter_setMaxFireSize_1(self, maxFireSize); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setMaxFireTime'] = SIGContainAdapter.prototype.setMaxFireTime = function(maxFireTime) { +SIGContainAdapter.prototype['setMaxFireTime'] = SIGContainAdapter.prototype.setMaxFireTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(maxFireTime) { var self = this.ptr; if (maxFireTime && typeof maxFireTime === 'object') maxFireTime = maxFireTime.ptr; _emscripten_bind_SIGContainAdapter_setMaxFireTime_1(self, maxFireTime); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setMaxSteps'] = SIGContainAdapter.prototype.setMaxSteps = function(maxSteps) { +SIGContainAdapter.prototype['setMaxSteps'] = SIGContainAdapter.prototype.setMaxSteps = /** @suppress {undefinedVars, duplicate} @this{Object} */function(maxSteps) { var self = this.ptr; if (maxSteps && typeof maxSteps === 'object') maxSteps = maxSteps.ptr; _emscripten_bind_SIGContainAdapter_setMaxSteps_1(self, maxSteps); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setMinSteps'] = SIGContainAdapter.prototype.setMinSteps = function(minSteps) { +SIGContainAdapter.prototype['setMinSteps'] = SIGContainAdapter.prototype.setMinSteps = /** @suppress {undefinedVars, duplicate} @this{Object} */function(minSteps) { var self = this.ptr; if (minSteps && typeof minSteps === 'object') minSteps = minSteps.ptr; _emscripten_bind_SIGContainAdapter_setMinSteps_1(self, minSteps); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setReportRate'] = SIGContainAdapter.prototype.setReportRate = function(reportRate, speedUnits) { +SIGContainAdapter.prototype['setReportRate'] = SIGContainAdapter.prototype.setReportRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(reportRate, speedUnits) { var self = this.ptr; if (reportRate && typeof reportRate === 'object') reportRate = reportRate.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; _emscripten_bind_SIGContainAdapter_setReportRate_2(self, reportRate, speedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setReportSize'] = SIGContainAdapter.prototype.setReportSize = function(reportSize, areaUnits) { +SIGContainAdapter.prototype['setReportSize'] = SIGContainAdapter.prototype.setReportSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(reportSize, areaUnits) { var self = this.ptr; if (reportSize && typeof reportSize === 'object') reportSize = reportSize.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; _emscripten_bind_SIGContainAdapter_setReportSize_2(self, reportSize, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setResourceArrivalTime'] = SIGContainAdapter.prototype.setResourceArrivalTime = function(arrivalTime, timeUnits) { +SIGContainAdapter.prototype['setResourceArrivalTime'] = SIGContainAdapter.prototype.setResourceArrivalTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(arrivalTime, timeUnits) { var self = this.ptr; if (arrivalTime && typeof arrivalTime === 'object') arrivalTime = arrivalTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; _emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2(self, arrivalTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setResourceDuration'] = SIGContainAdapter.prototype.setResourceDuration = function(duration, timeUnits) { +SIGContainAdapter.prototype['setResourceDuration'] = SIGContainAdapter.prototype.setResourceDuration = /** @suppress {undefinedVars, duplicate} @this{Object} */function(duration, timeUnits) { var self = this.ptr; if (duration && typeof duration === 'object') duration = duration.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; _emscripten_bind_SIGContainAdapter_setResourceDuration_2(self, duration, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setRetry'] = SIGContainAdapter.prototype.setRetry = function(retry) { +SIGContainAdapter.prototype['setRetry'] = SIGContainAdapter.prototype.setRetry = /** @suppress {undefinedVars, duplicate} @this{Object} */function(retry) { var self = this.ptr; if (retry && typeof retry === 'object') retry = retry.ptr; _emscripten_bind_SIGContainAdapter_setRetry_1(self, retry); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setTactic'] = SIGContainAdapter.prototype.setTactic = function(tactic) { +SIGContainAdapter.prototype['setTactic'] = SIGContainAdapter.prototype.setTactic = /** @suppress {undefinedVars, duplicate} @this{Object} */function(tactic) { var self = this.ptr; if (tactic && typeof tactic === 'object') tactic = tactic.ptr; _emscripten_bind_SIGContainAdapter_setTactic_1(self, tactic); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['__destroy__'] = SIGContainAdapter.prototype.__destroy__ = function() { + SIGContainAdapter.prototype['__destroy__'] = SIGContainAdapter.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGContainAdapter___destroy___0(self); }; - -// Interface: SIGIgnite - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGIgnite() { +// SIGIgnite +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGIgnite() { this.ptr = _emscripten_bind_SIGIgnite_SIGIgnite_0(); getCache(SIGIgnite)[this.ptr] = this; -}; - +};; SIGIgnite.prototype = Object.create(WrapperObject.prototype); SIGIgnite.prototype.constructor = SIGIgnite; SIGIgnite.prototype.__class__ = SIGIgnite; SIGIgnite.__cache__ = {}; Module['SIGIgnite'] = SIGIgnite; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['initializeMembers'] = SIGIgnite.prototype.initializeMembers = function() { + +SIGIgnite.prototype['initializeMembers'] = SIGIgnite.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGIgnite_initializeMembers_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getFuelBedType'] = SIGIgnite.prototype.getFuelBedType = function() { +SIGIgnite.prototype['getFuelBedType'] = SIGIgnite.prototype.getFuelBedType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGIgnite_getFuelBedType_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getLightningChargeType'] = SIGIgnite.prototype.getLightningChargeType = function() { +SIGIgnite.prototype['getLightningChargeType'] = SIGIgnite.prototype.getLightningChargeType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGIgnite_getLightningChargeType_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['calculateFirebrandIgnitionProbability'] = SIGIgnite.prototype.calculateFirebrandIgnitionProbability = function() { +SIGIgnite.prototype['calculateFirebrandIgnitionProbability'] = SIGIgnite.prototype.calculateFirebrandIgnitionProbability = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['calculateLightningIgnitionProbability'] = SIGIgnite.prototype.calculateLightningIgnitionProbability = function(desiredUnits) { +SIGIgnite.prototype['calculateLightningIgnitionProbability'] = SIGIgnite.prototype.calculateLightningIgnitionProbability = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['setAirTemperature'] = SIGIgnite.prototype.setAirTemperature = function(airTemperature, temperatureUnites) { +SIGIgnite.prototype['setAirTemperature'] = SIGIgnite.prototype.setAirTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(airTemperature, temperatureUnites) { var self = this.ptr; if (airTemperature && typeof airTemperature === 'object') airTemperature = airTemperature.ptr; if (temperatureUnites && typeof temperatureUnites === 'object') temperatureUnites = temperatureUnites.ptr; _emscripten_bind_SIGIgnite_setAirTemperature_2(self, airTemperature, temperatureUnites); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['setDuffDepth'] = SIGIgnite.prototype.setDuffDepth = function(duffDepth, lengthUnits) { +SIGIgnite.prototype['setDuffDepth'] = SIGIgnite.prototype.setDuffDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(duffDepth, lengthUnits) { var self = this.ptr; if (duffDepth && typeof duffDepth === 'object') duffDepth = duffDepth.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGIgnite_setDuffDepth_2(self, duffDepth, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['setIgnitionFuelBedType'] = SIGIgnite.prototype.setIgnitionFuelBedType = function(fuelBedType_) { +SIGIgnite.prototype['setIgnitionFuelBedType'] = SIGIgnite.prototype.setIgnitionFuelBedType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelBedType_) { var self = this.ptr; if (fuelBedType_ && typeof fuelBedType_ === 'object') fuelBedType_ = fuelBedType_.ptr; _emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1(self, fuelBedType_); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['setLightningChargeType'] = SIGIgnite.prototype.setLightningChargeType = function(lightningChargeType) { +SIGIgnite.prototype['setLightningChargeType'] = SIGIgnite.prototype.setLightningChargeType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lightningChargeType) { var self = this.ptr; if (lightningChargeType && typeof lightningChargeType === 'object') lightningChargeType = lightningChargeType.ptr; _emscripten_bind_SIGIgnite_setLightningChargeType_1(self, lightningChargeType); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['setMoistureHundredHour'] = SIGIgnite.prototype.setMoistureHundredHour = function(moistureHundredHour, moistureUnits) { +SIGIgnite.prototype['setMoistureHundredHour'] = SIGIgnite.prototype.setMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureHundredHour, moistureUnits) { var self = this.ptr; if (moistureHundredHour && typeof moistureHundredHour === 'object') moistureHundredHour = moistureHundredHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGIgnite_setMoistureHundredHour_2(self, moistureHundredHour, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['setMoistureOneHour'] = SIGIgnite.prototype.setMoistureOneHour = function(moistureOneHour, moistureUnits) { +SIGIgnite.prototype['setMoistureOneHour'] = SIGIgnite.prototype.setMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureUnits) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGIgnite_setMoistureOneHour_2(self, moistureOneHour, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['setSunShade'] = SIGIgnite.prototype.setSunShade = function(sunShade, sunShadeUnits) { +SIGIgnite.prototype['setSunShade'] = SIGIgnite.prototype.setSunShade = /** @suppress {undefinedVars, duplicate} @this{Object} */function(sunShade, sunShadeUnits) { var self = this.ptr; if (sunShade && typeof sunShade === 'object') sunShade = sunShade.ptr; if (sunShadeUnits && typeof sunShadeUnits === 'object') sunShadeUnits = sunShadeUnits.ptr; _emscripten_bind_SIGIgnite_setSunShade_2(self, sunShade, sunShadeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['updateIgniteInputs'] = SIGIgnite.prototype.updateIgniteInputs = function(moistureOneHour, moistureHundredHour, moistureUnits, airTemperature, temperatureUnits, sunShade, sunShadeUnits, fuelBedType, duffDepth, duffDepthUnits, lightningChargeType) { +SIGIgnite.prototype['updateIgniteInputs'] = SIGIgnite.prototype.updateIgniteInputs = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureHundredHour, moistureUnits, airTemperature, temperatureUnits, sunShade, sunShadeUnits, fuelBedType, duffDepth, duffDepthUnits, lightningChargeType) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureHundredHour && typeof moistureHundredHour === 'object') moistureHundredHour = moistureHundredHour.ptr; @@ -1539,609 +1340,522 @@ SIGIgnite.prototype['updateIgniteInputs'] = SIGIgnite.prototype.updateIgniteInpu if (duffDepthUnits && typeof duffDepthUnits === 'object') duffDepthUnits = duffDepthUnits.ptr; if (lightningChargeType && typeof lightningChargeType === 'object') lightningChargeType = lightningChargeType.ptr; _emscripten_bind_SIGIgnite_updateIgniteInputs_11(self, moistureOneHour, moistureHundredHour, moistureUnits, airTemperature, temperatureUnits, sunShade, sunShadeUnits, fuelBedType, duffDepth, duffDepthUnits, lightningChargeType); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getAirTemperature'] = SIGIgnite.prototype.getAirTemperature = function(desiredUnits) { +SIGIgnite.prototype['getAirTemperature'] = SIGIgnite.prototype.getAirTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getAirTemperature_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getDuffDepth'] = SIGIgnite.prototype.getDuffDepth = function(desiredUnits) { +SIGIgnite.prototype['getDuffDepth'] = SIGIgnite.prototype.getDuffDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getDuffDepth_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getFirebrandIgnitionProbability'] = SIGIgnite.prototype.getFirebrandIgnitionProbability = function(desiredUnits) { +SIGIgnite.prototype['getFirebrandIgnitionProbability'] = SIGIgnite.prototype.getFirebrandIgnitionProbability = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getFuelTemperature'] = SIGIgnite.prototype.getFuelTemperature = function(desiredUnits) { +SIGIgnite.prototype['getFuelTemperature'] = SIGIgnite.prototype.getFuelTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getFuelTemperature_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getMoistureHundredHour'] = SIGIgnite.prototype.getMoistureHundredHour = function(desiredUnits) { +SIGIgnite.prototype['getMoistureHundredHour'] = SIGIgnite.prototype.getMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getMoistureHundredHour_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getMoistureOneHour'] = SIGIgnite.prototype.getMoistureOneHour = function(desiredUnits) { +SIGIgnite.prototype['getMoistureOneHour'] = SIGIgnite.prototype.getMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getMoistureOneHour_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getSunShade'] = SIGIgnite.prototype.getSunShade = function(desiredUnits) { +SIGIgnite.prototype['getSunShade'] = SIGIgnite.prototype.getSunShade = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getSunShade_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['isFuelDepthNeeded'] = SIGIgnite.prototype.isFuelDepthNeeded = function() { +SIGIgnite.prototype['isFuelDepthNeeded'] = SIGIgnite.prototype.isFuelDepthNeeded = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return !!(_emscripten_bind_SIGIgnite_isFuelDepthNeeded_0(self)); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['__destroy__'] = SIGIgnite.prototype.__destroy__ = function() { + SIGIgnite.prototype['__destroy__'] = SIGIgnite.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGIgnite___destroy___0(self); }; - -// Interface: SIGMoistureScenarios - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGMoistureScenarios() { +// SIGMoistureScenarios +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGMoistureScenarios() { this.ptr = _emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0(); getCache(SIGMoistureScenarios)[this.ptr] = this; -}; - +};; SIGMoistureScenarios.prototype = Object.create(WrapperObject.prototype); SIGMoistureScenarios.prototype.constructor = SIGMoistureScenarios; SIGMoistureScenarios.prototype.__class__ = SIGMoistureScenarios; SIGMoistureScenarios.__cache__ = {}; Module['SIGMoistureScenarios'] = SIGMoistureScenarios; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGMoistureScenarios.prototype.getIsMoistureScenarioDefinedByIndex = function(index) { + +SIGMoistureScenarios.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGMoistureScenarios.prototype.getIsMoistureScenarioDefinedByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return !!(_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getIsMoistureScenarioDefinedByName'] = SIGMoistureScenarios.prototype.getIsMoistureScenarioDefinedByName = function(name) { +SIGMoistureScenarios.prototype['getIsMoistureScenarioDefinedByName'] = SIGMoistureScenarios.prototype.getIsMoistureScenarioDefinedByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return !!(_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1(self, name)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioHundredHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioHundredHourByIndex = function(index, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioHundredHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioHundredHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioHundredHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioHundredHourByName = function(name, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioHundredHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioHundredHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveHerbaceousByIndex = function(index, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveHerbaceousByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveHerbaceousByName = function(name, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveHerbaceousByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveWoodyByIndex = function(index, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveWoodyByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioLiveWoodyByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveWoodyByName = function(name, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioLiveWoodyByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveWoodyByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioOneHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioOneHourByIndex = function(index, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioOneHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioOneHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioOneHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioOneHourByName = function(name, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioOneHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioOneHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioTenHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioTenHourByIndex = function(index, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioTenHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioTenHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioTenHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioTenHourByName = function(name, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioTenHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioTenHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioIndexByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioIndexByName = function(name) { +SIGMoistureScenarios.prototype['getMoistureScenarioIndexByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioIndexByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1(self, name); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getNumberOfMoistureScenarios'] = SIGMoistureScenarios.prototype.getNumberOfMoistureScenarios = function() { +SIGMoistureScenarios.prototype['getNumberOfMoistureScenarios'] = SIGMoistureScenarios.prototype.getNumberOfMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioDescriptionByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioDescriptionByIndex = function(index) { +SIGMoistureScenarios.prototype['getMoistureScenarioDescriptionByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioDescriptionByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioDescriptionByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioDescriptionByName = function(name) { +SIGMoistureScenarios.prototype['getMoistureScenarioDescriptionByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioDescriptionByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return UTF8ToString(_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1(self, name)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioNameByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioNameByIndex = function(index) { +SIGMoistureScenarios.prototype['getMoistureScenarioNameByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioNameByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1(self, index)); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['__destroy__'] = SIGMoistureScenarios.prototype.__destroy__ = function() { + SIGMoistureScenarios.prototype['__destroy__'] = SIGMoistureScenarios.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGMoistureScenarios___destroy___0(self); }; - -// Interface: SIGSpot - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGSpot() { +// SIGSpot +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGSpot() { this.ptr = _emscripten_bind_SIGSpot_SIGSpot_0(); getCache(SIGSpot)[this.ptr] = this; -}; - +};; SIGSpot.prototype = Object.create(WrapperObject.prototype); SIGSpot.prototype.constructor = SIGSpot; SIGSpot.prototype.__class__ = SIGSpot; SIGSpot.__cache__ = {}; Module['SIGSpot'] = SIGSpot; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getDownwindCanopyMode'] = SIGSpot.prototype.getDownwindCanopyMode = function() { + +SIGSpot.prototype['getDownwindCanopyMode'] = SIGSpot.prototype.getDownwindCanopyMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getDownwindCanopyMode_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getLocation'] = SIGSpot.prototype.getLocation = function() { +SIGSpot.prototype['getLocation'] = SIGSpot.prototype.getLocation = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getLocation_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getTreeSpecies'] = SIGSpot.prototype.getTreeSpecies = function() { +SIGSpot.prototype['getTreeSpecies'] = SIGSpot.prototype.getTreeSpecies = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getTreeSpecies_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getBurningPileFlameHeight'] = SIGSpot.prototype.getBurningPileFlameHeight = function(flameHeightUnits) { +SIGSpot.prototype['getBurningPileFlameHeight'] = SIGSpot.prototype.getBurningPileFlameHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameHeightUnits) { var self = this.ptr; if (flameHeightUnits && typeof flameHeightUnits === 'object') flameHeightUnits = flameHeightUnits.ptr; return _emscripten_bind_SIGSpot_getBurningPileFlameHeight_1(self, flameHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getCoverHeightUsedForBurningPile'] = SIGSpot.prototype.getCoverHeightUsedForBurningPile = function(coverHeightUnits) { +SIGSpot.prototype['getCoverHeightUsedForBurningPile'] = SIGSpot.prototype.getCoverHeightUsedForBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverHeightUnits) { var self = this.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; return _emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1(self, coverHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getCoverHeightUsedForSurfaceFire'] = SIGSpot.prototype.getCoverHeightUsedForSurfaceFire = function(coverHeightUnits) { +SIGSpot.prototype['getCoverHeightUsedForSurfaceFire'] = SIGSpot.prototype.getCoverHeightUsedForSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverHeightUnits) { var self = this.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; return _emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1(self, coverHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getCoverHeightUsedForTorchingTrees'] = SIGSpot.prototype.getCoverHeightUsedForTorchingTrees = function(coverHeightUnits) { +SIGSpot.prototype['getCoverHeightUsedForTorchingTrees'] = SIGSpot.prototype.getCoverHeightUsedForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverHeightUnits) { var self = this.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; return _emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1(self, coverHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getDBH'] = SIGSpot.prototype.getDBH = function(DBHUnits) { +SIGSpot.prototype['getDBH'] = SIGSpot.prototype.getDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(DBHUnits) { var self = this.ptr; if (DBHUnits && typeof DBHUnits === 'object') DBHUnits = DBHUnits.ptr; return _emscripten_bind_SIGSpot_getDBH_1(self, DBHUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getDownwindCoverHeight'] = SIGSpot.prototype.getDownwindCoverHeight = function(coverHeightUnits) { +SIGSpot.prototype['getDownwindCoverHeight'] = SIGSpot.prototype.getDownwindCoverHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverHeightUnits) { var self = this.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; return _emscripten_bind_SIGSpot_getDownwindCoverHeight_1(self, coverHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getFlameDurationForTorchingTrees'] = SIGSpot.prototype.getFlameDurationForTorchingTrees = function(durationUnits) { +SIGSpot.prototype['getFlameDurationForTorchingTrees'] = SIGSpot.prototype.getFlameDurationForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(durationUnits) { var self = this.ptr; if (durationUnits && typeof durationUnits === 'object') durationUnits = durationUnits.ptr; return _emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1(self, durationUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getFlameHeightForTorchingTrees'] = SIGSpot.prototype.getFlameHeightForTorchingTrees = function(flameHeightUnits) { +SIGSpot.prototype['getFlameHeightForTorchingTrees'] = SIGSpot.prototype.getFlameHeightForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameHeightUnits) { var self = this.ptr; if (flameHeightUnits && typeof flameHeightUnits === 'object') flameHeightUnits = flameHeightUnits.ptr; return _emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1(self, flameHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getFlameRatioForTorchingTrees'] = SIGSpot.prototype.getFlameRatioForTorchingTrees = function() { +SIGSpot.prototype['getFlameRatioForTorchingTrees'] = SIGSpot.prototype.getFlameRatioForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxFirebrandHeightFromBurningPile'] = SIGSpot.prototype.getMaxFirebrandHeightFromBurningPile = function(firebrandHeightUnits) { +SIGSpot.prototype['getMaxFirebrandHeightFromBurningPile'] = SIGSpot.prototype.getMaxFirebrandHeightFromBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firebrandHeightUnits) { var self = this.ptr; if (firebrandHeightUnits && typeof firebrandHeightUnits === 'object') firebrandHeightUnits = firebrandHeightUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1(self, firebrandHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxFirebrandHeightFromSurfaceFire'] = SIGSpot.prototype.getMaxFirebrandHeightFromSurfaceFire = function(firebrandHeightUnits) { +SIGSpot.prototype['getMaxFirebrandHeightFromSurfaceFire'] = SIGSpot.prototype.getMaxFirebrandHeightFromSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firebrandHeightUnits) { var self = this.ptr; if (firebrandHeightUnits && typeof firebrandHeightUnits === 'object') firebrandHeightUnits = firebrandHeightUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1(self, firebrandHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxFirebrandHeightFromTorchingTrees'] = SIGSpot.prototype.getMaxFirebrandHeightFromTorchingTrees = function(firebrandHeightUnits) { +SIGSpot.prototype['getMaxFirebrandHeightFromTorchingTrees'] = SIGSpot.prototype.getMaxFirebrandHeightFromTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firebrandHeightUnits) { var self = this.ptr; if (firebrandHeightUnits && typeof firebrandHeightUnits === 'object') firebrandHeightUnits = firebrandHeightUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1(self, firebrandHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromBurningPile'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromBurningPile = function(spottingDistanceUnits) { +SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromBurningPile'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1(self, spottingDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromSurfaceFire = function(spottingDistanceUnits) { +SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1(self, spottingDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromTorchingTrees = function(spottingDistanceUnits) { +SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1(self, spottingDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromBurningPile'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromBurningPile = function(spottingDistanceUnits) { +SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromBurningPile'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1(self, spottingDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromSurfaceFire = function(spottingDistanceUnits) { +SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1(self, spottingDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromTorchingTrees = function(spottingDistanceUnits) { +SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1(self, spottingDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromActiveCrown'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromActiveCrown = function(spottingDistanceUnits) { +SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromActiveCrown'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromActiveCrown = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1(self, spottingDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getRidgeToValleyDistance'] = SIGSpot.prototype.getRidgeToValleyDistance = function(ridgeToValleyDistanceUnits) { +SIGSpot.prototype['getRidgeToValleyDistance'] = SIGSpot.prototype.getRidgeToValleyDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ridgeToValleyDistanceUnits) { var self = this.ptr; if (ridgeToValleyDistanceUnits && typeof ridgeToValleyDistanceUnits === 'object') ridgeToValleyDistanceUnits = ridgeToValleyDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getRidgeToValleyDistance_1(self, ridgeToValleyDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getRidgeToValleyElevation'] = SIGSpot.prototype.getRidgeToValleyElevation = function(elevationUnits) { +SIGSpot.prototype['getRidgeToValleyElevation'] = SIGSpot.prototype.getRidgeToValleyElevation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elevationUnits) { var self = this.ptr; if (elevationUnits && typeof elevationUnits === 'object') elevationUnits = elevationUnits.ptr; return _emscripten_bind_SIGSpot_getRidgeToValleyElevation_1(self, elevationUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getSurfaceFlameLength'] = SIGSpot.prototype.getSurfaceFlameLength = function(surfaceFlameLengthUnits) { +SIGSpot.prototype['getSurfaceFlameLength'] = SIGSpot.prototype.getSurfaceFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(surfaceFlameLengthUnits) { var self = this.ptr; if (surfaceFlameLengthUnits && typeof surfaceFlameLengthUnits === 'object') surfaceFlameLengthUnits = surfaceFlameLengthUnits.ptr; return _emscripten_bind_SIGSpot_getSurfaceFlameLength_1(self, surfaceFlameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getTreeHeight'] = SIGSpot.prototype.getTreeHeight = function(treeHeightUnits) { +SIGSpot.prototype['getTreeHeight'] = SIGSpot.prototype.getTreeHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeHeightUnits) { var self = this.ptr; if (treeHeightUnits && typeof treeHeightUnits === 'object') treeHeightUnits = treeHeightUnits.ptr; return _emscripten_bind_SIGSpot_getTreeHeight_1(self, treeHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getWindSpeedAtTwentyFeet'] = SIGSpot.prototype.getWindSpeedAtTwentyFeet = function(windSpeedUnits) { +SIGSpot.prototype['getWindSpeedAtTwentyFeet'] = SIGSpot.prototype.getWindSpeedAtTwentyFeet = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedUnits) { var self = this.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; return _emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1(self, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getTorchingTrees'] = SIGSpot.prototype.getTorchingTrees = function() { +SIGSpot.prototype['getTorchingTrees'] = SIGSpot.prototype.getTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getTorchingTrees_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['calculateAll'] = SIGSpot.prototype.calculateAll = function() { +SIGSpot.prototype['calculateAll'] = SIGSpot.prototype.calculateAll = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSpot_calculateAll_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['calculateSpottingDistanceFromBurningPile'] = SIGSpot.prototype.calculateSpottingDistanceFromBurningPile = function() { +SIGSpot.prototype['calculateSpottingDistanceFromBurningPile'] = SIGSpot.prototype.calculateSpottingDistanceFromBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['calculateSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.calculateSpottingDistanceFromSurfaceFire = function() { +SIGSpot.prototype['calculateSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.calculateSpottingDistanceFromSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['calculateSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.calculateSpottingDistanceFromTorchingTrees = function() { +SIGSpot.prototype['calculateSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.calculateSpottingDistanceFromTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['initializeMembers'] = SIGSpot.prototype.initializeMembers = function() { +SIGSpot.prototype['initializeMembers'] = SIGSpot.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSpot_initializeMembers_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setActiveCrownFlameLength'] = SIGSpot.prototype.setActiveCrownFlameLength = function(flameLength, flameLengthUnits) { +SIGSpot.prototype['setActiveCrownFlameLength'] = SIGSpot.prototype.setActiveCrownFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLength, flameLengthUnits) { var self = this.ptr; if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; _emscripten_bind_SIGSpot_setActiveCrownFlameLength_2(self, flameLength, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setBurningPileFlameHeight'] = SIGSpot.prototype.setBurningPileFlameHeight = function(buringPileflameHeight, flameHeightUnits) { +SIGSpot.prototype['setBurningPileFlameHeight'] = SIGSpot.prototype.setBurningPileFlameHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(buringPileflameHeight, flameHeightUnits) { var self = this.ptr; if (buringPileflameHeight && typeof buringPileflameHeight === 'object') buringPileflameHeight = buringPileflameHeight.ptr; if (flameHeightUnits && typeof flameHeightUnits === 'object') flameHeightUnits = flameHeightUnits.ptr; _emscripten_bind_SIGSpot_setBurningPileFlameHeight_2(self, buringPileflameHeight, flameHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setDBH'] = SIGSpot.prototype.setDBH = function(DBH, DBHUnits) { +SIGSpot.prototype['setDBH'] = SIGSpot.prototype.setDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(DBH, DBHUnits) { var self = this.ptr; if (DBH && typeof DBH === 'object') DBH = DBH.ptr; if (DBHUnits && typeof DBHUnits === 'object') DBHUnits = DBHUnits.ptr; _emscripten_bind_SIGSpot_setDBH_2(self, DBH, DBHUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setDownwindCanopyMode'] = SIGSpot.prototype.setDownwindCanopyMode = function(downwindCanopyMode) { +SIGSpot.prototype['setDownwindCanopyMode'] = SIGSpot.prototype.setDownwindCanopyMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(downwindCanopyMode) { var self = this.ptr; if (downwindCanopyMode && typeof downwindCanopyMode === 'object') downwindCanopyMode = downwindCanopyMode.ptr; _emscripten_bind_SIGSpot_setDownwindCanopyMode_1(self, downwindCanopyMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setDownwindCoverHeight'] = SIGSpot.prototype.setDownwindCoverHeight = function(downwindCoverHeight, coverHeightUnits) { +SIGSpot.prototype['setDownwindCoverHeight'] = SIGSpot.prototype.setDownwindCoverHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(downwindCoverHeight, coverHeightUnits) { var self = this.ptr; if (downwindCoverHeight && typeof downwindCoverHeight === 'object') downwindCoverHeight = downwindCoverHeight.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; _emscripten_bind_SIGSpot_setDownwindCoverHeight_2(self, downwindCoverHeight, coverHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setFireType'] = SIGSpot.prototype.setFireType = function(fireType) { +SIGSpot.prototype['setFireType'] = SIGSpot.prototype.setFireType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fireType) { var self = this.ptr; if (fireType && typeof fireType === 'object') fireType = fireType.ptr; _emscripten_bind_SIGSpot_setFireType_1(self, fireType); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setFlameLength'] = SIGSpot.prototype.setFlameLength = function(flameLength, flameLengthUnits) { +SIGSpot.prototype['setFlameLength'] = SIGSpot.prototype.setFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLength, flameLengthUnits) { var self = this.ptr; if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; _emscripten_bind_SIGSpot_setFlameLength_2(self, flameLength, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setFirelineIntensity'] = SIGSpot.prototype.setFirelineIntensity = function(firelineIntensity, firelineIntensityUnits) { +SIGSpot.prototype['setFirelineIntensity'] = SIGSpot.prototype.setFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensity, firelineIntensityUnits) { var self = this.ptr; if (firelineIntensity && typeof firelineIntensity === 'object') firelineIntensity = firelineIntensity.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGSpot_setFirelineIntensity_2(self, firelineIntensity, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setLocation'] = SIGSpot.prototype.setLocation = function(location) { +SIGSpot.prototype['setLocation'] = SIGSpot.prototype.setLocation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(location) { var self = this.ptr; if (location && typeof location === 'object') location = location.ptr; _emscripten_bind_SIGSpot_setLocation_1(self, location); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setRidgeToValleyDistance'] = SIGSpot.prototype.setRidgeToValleyDistance = function(ridgeToValleyDistance, ridgeToValleyDistanceUnits) { +SIGSpot.prototype['setRidgeToValleyDistance'] = SIGSpot.prototype.setRidgeToValleyDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ridgeToValleyDistance, ridgeToValleyDistanceUnits) { var self = this.ptr; if (ridgeToValleyDistance && typeof ridgeToValleyDistance === 'object') ridgeToValleyDistance = ridgeToValleyDistance.ptr; if (ridgeToValleyDistanceUnits && typeof ridgeToValleyDistanceUnits === 'object') ridgeToValleyDistanceUnits = ridgeToValleyDistanceUnits.ptr; _emscripten_bind_SIGSpot_setRidgeToValleyDistance_2(self, ridgeToValleyDistance, ridgeToValleyDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setRidgeToValleyElevation'] = SIGSpot.prototype.setRidgeToValleyElevation = function(ridgeToValleyElevation, elevationUnits) { +SIGSpot.prototype['setRidgeToValleyElevation'] = SIGSpot.prototype.setRidgeToValleyElevation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ridgeToValleyElevation, elevationUnits) { var self = this.ptr; if (ridgeToValleyElevation && typeof ridgeToValleyElevation === 'object') ridgeToValleyElevation = ridgeToValleyElevation.ptr; if (elevationUnits && typeof elevationUnits === 'object') elevationUnits = elevationUnits.ptr; _emscripten_bind_SIGSpot_setRidgeToValleyElevation_2(self, ridgeToValleyElevation, elevationUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setTorchingTrees'] = SIGSpot.prototype.setTorchingTrees = function(torchingTrees) { +SIGSpot.prototype['setTorchingTrees'] = SIGSpot.prototype.setTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(torchingTrees) { var self = this.ptr; if (torchingTrees && typeof torchingTrees === 'object') torchingTrees = torchingTrees.ptr; _emscripten_bind_SIGSpot_setTorchingTrees_1(self, torchingTrees); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setTreeHeight'] = SIGSpot.prototype.setTreeHeight = function(treeHeight, treeHeightUnits) { +SIGSpot.prototype['setTreeHeight'] = SIGSpot.prototype.setTreeHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeHeight, treeHeightUnits) { var self = this.ptr; if (treeHeight && typeof treeHeight === 'object') treeHeight = treeHeight.ptr; if (treeHeightUnits && typeof treeHeightUnits === 'object') treeHeightUnits = treeHeightUnits.ptr; _emscripten_bind_SIGSpot_setTreeHeight_2(self, treeHeight, treeHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setTreeSpecies'] = SIGSpot.prototype.setTreeSpecies = function(treeSpecies) { +SIGSpot.prototype['setTreeSpecies'] = SIGSpot.prototype.setTreeSpecies = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeSpecies) { var self = this.ptr; if (treeSpecies && typeof treeSpecies === 'object') treeSpecies = treeSpecies.ptr; _emscripten_bind_SIGSpot_setTreeSpecies_1(self, treeSpecies); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setWindSpeedAtTwentyFeet'] = SIGSpot.prototype.setWindSpeedAtTwentyFeet = function(windSpeedAtTwentyFeet, windSpeedUnits) { +SIGSpot.prototype['setWindSpeedAtTwentyFeet'] = SIGSpot.prototype.setWindSpeedAtTwentyFeet = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedAtTwentyFeet, windSpeedUnits) { var self = this.ptr; if (windSpeedAtTwentyFeet && typeof windSpeedAtTwentyFeet === 'object') windSpeedAtTwentyFeet = windSpeedAtTwentyFeet.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2(self, windSpeedAtTwentyFeet, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setWindSpeed'] = SIGSpot.prototype.setWindSpeed = function(windSpeed, windSpeedUnits) { +SIGSpot.prototype['setWindSpeed'] = SIGSpot.prototype.setWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSpot_setWindSpeed_2(self, windSpeed, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setWindSpeedAndWindHeightInputMode'] = SIGSpot.prototype.setWindSpeedAndWindHeightInputMode = function(windSpeed, windSpeedUnits, windHeightInputMode) { +SIGSpot.prototype['setWindSpeedAndWindHeightInputMode'] = SIGSpot.prototype.setWindSpeedAndWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits, windHeightInputMode) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3(self, windSpeed, windSpeedUnits, windHeightInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setWindHeightInputMode'] = SIGSpot.prototype.setWindHeightInputMode = function(windHeightInputMode) { +SIGSpot.prototype['setWindHeightInputMode'] = SIGSpot.prototype.setWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windHeightInputMode) { var self = this.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGSpot_setWindHeightInputMode_1(self, windHeightInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['updateSpotInputsForBurningPile'] = SIGSpot.prototype.updateSpotInputsForBurningPile = function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, buringPileFlameHeight, flameHeightUnits, windSpeedAtTwentyFeet, windSpeedUnits) { +SIGSpot.prototype['updateSpotInputsForBurningPile'] = SIGSpot.prototype.updateSpotInputsForBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, buringPileFlameHeight, flameHeightUnits, windSpeedAtTwentyFeet, windSpeedUnits) { var self = this.ptr; if (location && typeof location === 'object') location = location.ptr; if (ridgeToValleyDistance && typeof ridgeToValleyDistance === 'object') ridgeToValleyDistance = ridgeToValleyDistance.ptr; @@ -2156,10 +1870,9 @@ SIGSpot.prototype['updateSpotInputsForBurningPile'] = SIGSpot.prototype.updateSp if (windSpeedAtTwentyFeet && typeof windSpeedAtTwentyFeet === 'object') windSpeedAtTwentyFeet = windSpeedAtTwentyFeet.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12(self, location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, buringPileFlameHeight, flameHeightUnits, windSpeedAtTwentyFeet, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['updateSpotInputsForSurfaceFire'] = SIGSpot.prototype.updateSpotInputsForSurfaceFire = function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, windSpeedAtTwentyFeet, windSpeedUnits, flameLength, flameLengthUnits) { +SIGSpot.prototype['updateSpotInputsForSurfaceFire'] = SIGSpot.prototype.updateSpotInputsForSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, windSpeedAtTwentyFeet, windSpeedUnits, flameLength, flameLengthUnits) { var self = this.ptr; if (location && typeof location === 'object') location = location.ptr; if (ridgeToValleyDistance && typeof ridgeToValleyDistance === 'object') ridgeToValleyDistance = ridgeToValleyDistance.ptr; @@ -2174,10 +1887,9 @@ SIGSpot.prototype['updateSpotInputsForSurfaceFire'] = SIGSpot.prototype.updateSp if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; _emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12(self, location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, windSpeedAtTwentyFeet, windSpeedUnits, flameLength, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['updateSpotInputsForTorchingTrees'] = SIGSpot.prototype.updateSpotInputsForTorchingTrees = function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, torchingTrees, DBH, DBHUnits, treeHeight, treeHeightUnits, treeSpecies, windSpeedAtTwentyFeet, windSpeedUnits) { +SIGSpot.prototype['updateSpotInputsForTorchingTrees'] = SIGSpot.prototype.updateSpotInputsForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, torchingTrees, DBH, DBHUnits, treeHeight, treeHeightUnits, treeSpecies, windSpeedAtTwentyFeet, windSpeedUnits) { var self = this.ptr; if (location && typeof location === 'object') location = location.ptr; if (ridgeToValleyDistance && typeof ridgeToValleyDistance === 'object') ridgeToValleyDistance = ridgeToValleyDistance.ptr; @@ -2196,74 +1908,62 @@ SIGSpot.prototype['updateSpotInputsForTorchingTrees'] = SIGSpot.prototype.update if (windSpeedAtTwentyFeet && typeof windSpeedAtTwentyFeet === 'object') windSpeedAtTwentyFeet = windSpeedAtTwentyFeet.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16(self, location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, torchingTrees, DBH, DBHUnits, treeHeight, treeHeightUnits, treeSpecies, windSpeedAtTwentyFeet, windSpeedUnits); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['__destroy__'] = SIGSpot.prototype.__destroy__ = function() { + SIGSpot.prototype['__destroy__'] = SIGSpot.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSpot___destroy___0(self); }; - -// Interface: SIGFuelModels - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGFuelModels(rhs) { +// SIGFuelModels +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGFuelModels(rhs) { if (rhs && typeof rhs === 'object') rhs = rhs.ptr; if (rhs === undefined) { this.ptr = _emscripten_bind_SIGFuelModels_SIGFuelModels_0(); getCache(SIGFuelModels)[this.ptr] = this;return } this.ptr = _emscripten_bind_SIGFuelModels_SIGFuelModels_1(rhs); getCache(SIGFuelModels)[this.ptr] = this; -}; - +};; SIGFuelModels.prototype = Object.create(WrapperObject.prototype); SIGFuelModels.prototype.constructor = SIGFuelModels; SIGFuelModels.prototype.__class__ = SIGFuelModels; SIGFuelModels.__cache__ = {}; Module['SIGFuelModels'] = SIGFuelModels; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['equal'] = SIGFuelModels.prototype.equal = function(rhs) { + +SIGFuelModels.prototype['equal'] = SIGFuelModels.prototype.equal = /** @suppress {undefinedVars, duplicate} @this{Object} */function(rhs) { var self = this.ptr; if (rhs && typeof rhs === 'object') rhs = rhs.ptr; return wrapPointer(_emscripten_bind_SIGFuelModels_equal_1(self, rhs), SIGFuelModels); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['clearCustomFuelModel'] = SIGFuelModels.prototype.clearCustomFuelModel = function(fuelModelNumber) { +SIGFuelModels.prototype['clearCustomFuelModel'] = SIGFuelModels.prototype.clearCustomFuelModel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_clearCustomFuelModel_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getIsDynamic'] = SIGFuelModels.prototype.getIsDynamic = function(fuelModelNumber) { +SIGFuelModels.prototype['getIsDynamic'] = SIGFuelModels.prototype.getIsDynamic = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_getIsDynamic_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['isAllFuelLoadZero'] = SIGFuelModels.prototype.isAllFuelLoadZero = function(fuelModelNumber) { +SIGFuelModels.prototype['isAllFuelLoadZero'] = SIGFuelModels.prototype.isAllFuelLoadZero = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['isFuelModelDefined'] = SIGFuelModels.prototype.isFuelModelDefined = function(fuelModelNumber) { +SIGFuelModels.prototype['isFuelModelDefined'] = SIGFuelModels.prototype.isFuelModelDefined = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_isFuelModelDefined_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['isFuelModelReserved'] = SIGFuelModels.prototype.isFuelModelReserved = function(fuelModelNumber) { +SIGFuelModels.prototype['isFuelModelReserved'] = SIGFuelModels.prototype.isFuelModelReserved = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_isFuelModelReserved_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['setCustomFuelModel'] = SIGFuelModels.prototype.setCustomFuelModel = function(fuelModelNumber, code, name, fuelBedDepth, lengthUnits, moistureOfExtinctionDead, moistureUnits, heatOfCombustionDead, heatOfCombustionLive, heatOfCombustionUnits, fuelLoadOneHour, fuelLoadTenHour, fuelLoadHundredHour, fuelLoadLiveHerbaceous, fuelLoadLiveWoody, loadingUnits, savrOneHour, savrLiveHerbaceous, savrLiveWoody, savrUnits, isDynamic) { +SIGFuelModels.prototype['setCustomFuelModel'] = SIGFuelModels.prototype.setCustomFuelModel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, code, name, fuelBedDepth, lengthUnits, moistureOfExtinctionDead, moistureUnits, heatOfCombustionDead, heatOfCombustionLive, heatOfCombustionUnits, fuelLoadOneHour, fuelLoadTenHour, fuelLoadHundredHour, fuelLoadLiveHerbaceous, fuelLoadLiveWoody, loadingUnits, savrOneHour, savrLiveHerbaceous, savrLiveWoody, savrUnits, isDynamic) { var self = this.ptr; ensureCache.prepare(); if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; @@ -2290,1665 +1990,1433 @@ SIGFuelModels.prototype['setCustomFuelModel'] = SIGFuelModels.prototype.setCusto if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; if (isDynamic && typeof isDynamic === 'object') isDynamic = isDynamic.ptr; return !!(_emscripten_bind_SIGFuelModels_setCustomFuelModel_21(self, fuelModelNumber, code, name, fuelBedDepth, lengthUnits, moistureOfExtinctionDead, moistureUnits, heatOfCombustionDead, heatOfCombustionLive, heatOfCombustionUnits, fuelLoadOneHour, fuelLoadTenHour, fuelLoadHundredHour, fuelLoadLiveHerbaceous, fuelLoadLiveWoody, loadingUnits, savrOneHour, savrLiveHerbaceous, savrLiveWoody, savrUnits, isDynamic)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getFuelCode'] = SIGFuelModels.prototype.getFuelCode = function(fuelModelNumber) { +SIGFuelModels.prototype['getFuelCode'] = SIGFuelModels.prototype.getFuelCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGFuelModels_getFuelCode_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getFuelName'] = SIGFuelModels.prototype.getFuelName = function(fuelModelNumber) { +SIGFuelModels.prototype['getFuelName'] = SIGFuelModels.prototype.getFuelName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGFuelModels_getFuelName_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getFuelLoadHundredHour'] = SIGFuelModels.prototype.getFuelLoadHundredHour = function(fuelModelNumber, loadingUnits) { +SIGFuelModels.prototype['getFuelLoadHundredHour'] = SIGFuelModels.prototype.getFuelLoadHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getFuelLoadLiveHerbaceous'] = SIGFuelModels.prototype.getFuelLoadLiveHerbaceous = function(fuelModelNumber, loadingUnits) { +SIGFuelModels.prototype['getFuelLoadLiveHerbaceous'] = SIGFuelModels.prototype.getFuelLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getFuelLoadLiveWoody'] = SIGFuelModels.prototype.getFuelLoadLiveWoody = function(fuelModelNumber, loadingUnits) { +SIGFuelModels.prototype['getFuelLoadLiveWoody'] = SIGFuelModels.prototype.getFuelLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getFuelLoadOneHour'] = SIGFuelModels.prototype.getFuelLoadOneHour = function(fuelModelNumber, loadingUnits) { +SIGFuelModels.prototype['getFuelLoadOneHour'] = SIGFuelModels.prototype.getFuelLoadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getFuelLoadTenHour'] = SIGFuelModels.prototype.getFuelLoadTenHour = function(fuelModelNumber, loadingUnits) { +SIGFuelModels.prototype['getFuelLoadTenHour'] = SIGFuelModels.prototype.getFuelLoadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getFuelbedDepth'] = SIGFuelModels.prototype.getFuelbedDepth = function(fuelModelNumber, lengthUnits) { +SIGFuelModels.prototype['getFuelbedDepth'] = SIGFuelModels.prototype.getFuelbedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, lengthUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelbedDepth_2(self, fuelModelNumber, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getHeatOfCombustionDead'] = SIGFuelModels.prototype.getHeatOfCombustionDead = function(fuelModelNumber, heatOfCombustionUnits) { +SIGFuelModels.prototype['getHeatOfCombustionDead'] = SIGFuelModels.prototype.getHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2(self, fuelModelNumber, heatOfCombustionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getMoistureOfExtinctionDead'] = SIGFuelModels.prototype.getMoistureOfExtinctionDead = function(fuelModelNumber, moistureUnits) { +SIGFuelModels.prototype['getMoistureOfExtinctionDead'] = SIGFuelModels.prototype.getMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2(self, fuelModelNumber, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getSavrLiveHerbaceous'] = SIGFuelModels.prototype.getSavrLiveHerbaceous = function(fuelModelNumber, savrUnits) { +SIGFuelModels.prototype['getSavrLiveHerbaceous'] = SIGFuelModels.prototype.getSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getSavrLiveWoody'] = SIGFuelModels.prototype.getSavrLiveWoody = function(fuelModelNumber, savrUnits) { +SIGFuelModels.prototype['getSavrLiveWoody'] = SIGFuelModels.prototype.getSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGFuelModels_getSavrLiveWoody_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getSavrOneHour'] = SIGFuelModels.prototype.getSavrOneHour = function(fuelModelNumber, savrUnits) { +SIGFuelModels.prototype['getSavrOneHour'] = SIGFuelModels.prototype.getSavrOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGFuelModels_getSavrOneHour_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getHeatOfCombustionLive'] = SIGFuelModels.prototype.getHeatOfCombustionLive = function(fuelModelNumber, heatOfCombustionUnits) { +SIGFuelModels.prototype['getHeatOfCombustionLive'] = SIGFuelModels.prototype.getHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2(self, fuelModelNumber, heatOfCombustionUnits); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['__destroy__'] = SIGFuelModels.prototype.__destroy__ = function() { + SIGFuelModels.prototype['__destroy__'] = SIGFuelModels.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGFuelModels___destroy___0(self); }; - -// Interface: SIGSurface - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGSurface(fuelModels) { +// SIGSurface +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGSurface(fuelModels) { if (fuelModels && typeof fuelModels === 'object') fuelModels = fuelModels.ptr; this.ptr = _emscripten_bind_SIGSurface_SIGSurface_1(fuelModels); getCache(SIGSurface)[this.ptr] = this; -}; - +};; SIGSurface.prototype = Object.create(WrapperObject.prototype); SIGSurface.prototype.constructor = SIGSurface; SIGSurface.prototype.__class__ = SIGSurface; SIGSurface.__cache__ = {}; Module['SIGSurface'] = SIGSurface; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenFireSeverity'] = SIGSurface.prototype.getAspenFireSeverity = function() { + +SIGSurface.prototype['getAspenFireSeverity'] = SIGSurface.prototype.getAspenFireSeverity = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getAspenFireSeverity_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralFuelType'] = SIGSurface.prototype.getChaparralFuelType = function() { +SIGSurface.prototype['getChaparralFuelType'] = SIGSurface.prototype.getChaparralFuelType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getChaparralFuelType_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureInputMode'] = SIGSurface.prototype.getMoistureInputMode = function() { +SIGSurface.prototype['getMoistureInputMode'] = SIGSurface.prototype.getMoistureInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getMoistureInputMode_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getWindAdjustmentFactorCalculationMethod'] = SIGSurface.prototype.getWindAdjustmentFactorCalculationMethod = function() { +SIGSurface.prototype['getWindAdjustmentFactorCalculationMethod'] = SIGSurface.prototype.getWindAdjustmentFactorCalculationMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getWindAndSpreadOrientationMode'] = SIGSurface.prototype.getWindAndSpreadOrientationMode = function() { +SIGSurface.prototype['getWindAndSpreadOrientationMode'] = SIGSurface.prototype.getWindAndSpreadOrientationMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getWindHeightInputMode'] = SIGSurface.prototype.getWindHeightInputMode = function() { +SIGSurface.prototype['getWindHeightInputMode'] = SIGSurface.prototype.getWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindHeightInputMode_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getWindUpslopeAlignmentMode'] = SIGSurface.prototype.getWindUpslopeAlignmentMode = function() { +SIGSurface.prototype['getWindUpslopeAlignmentMode'] = SIGSurface.prototype.getWindUpslopeAlignmentMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getSurfaceRunInDirectionOf'] = SIGSurface.prototype.getSurfaceRunInDirectionOf = function() { +SIGSurface.prototype['getSurfaceRunInDirectionOf'] = SIGSurface.prototype.getSurfaceRunInDirectionOf = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGSurface.prototype.getIsMoistureScenarioDefinedByIndex = function(index) { +SIGSurface.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGSurface.prototype.getIsMoistureScenarioDefinedByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return !!(_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getIsMoistureScenarioDefinedByName'] = SIGSurface.prototype.getIsMoistureScenarioDefinedByName = function(name) { +SIGSurface.prototype['getIsMoistureScenarioDefinedByName'] = SIGSurface.prototype.getIsMoistureScenarioDefinedByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return !!(_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1(self, name)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getIsUsingChaparral'] = SIGSurface.prototype.getIsUsingChaparral = function() { +SIGSurface.prototype['getIsUsingChaparral'] = SIGSurface.prototype.getIsUsingChaparral = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return !!(_emscripten_bind_SIGSurface_getIsUsingChaparral_0(self)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getIsUsingPalmettoGallberry'] = SIGSurface.prototype.getIsUsingPalmettoGallberry = function() { +SIGSurface.prototype['getIsUsingPalmettoGallberry'] = SIGSurface.prototype.getIsUsingPalmettoGallberry = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return !!(_emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0(self)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getIsUsingWesternAspen'] = SIGSurface.prototype.getIsUsingWesternAspen = function() { +SIGSurface.prototype['getIsUsingWesternAspen'] = SIGSurface.prototype.getIsUsingWesternAspen = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return !!(_emscripten_bind_SIGSurface_getIsUsingWesternAspen_0(self)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['isAllFuelLoadZero'] = SIGSurface.prototype.isAllFuelLoadZero = function(fuelModelNumber) { +SIGSurface.prototype['isAllFuelLoadZero'] = SIGSurface.prototype.isAllFuelLoadZero = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGSurface_isAllFuelLoadZero_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['isFuelDynamic'] = SIGSurface.prototype.isFuelDynamic = function(fuelModelNumber) { +SIGSurface.prototype['isFuelDynamic'] = SIGSurface.prototype.isFuelDynamic = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGSurface_isFuelDynamic_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['isFuelModelDefined'] = SIGSurface.prototype.isFuelModelDefined = function(fuelModelNumber) { +SIGSurface.prototype['isFuelModelDefined'] = SIGSurface.prototype.isFuelModelDefined = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGSurface_isFuelModelDefined_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['isFuelModelReserved'] = SIGSurface.prototype.isFuelModelReserved = function(fuelModelNumber) { +SIGSurface.prototype['isFuelModelReserved'] = SIGSurface.prototype.isFuelModelReserved = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGSurface_isFuelModelReserved_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['isMoistureClassInputNeededForCurrentFuelModel'] = SIGSurface.prototype.isMoistureClassInputNeededForCurrentFuelModel = function(moistureClass) { +SIGSurface.prototype['isMoistureClassInputNeededForCurrentFuelModel'] = SIGSurface.prototype.isMoistureClassInputNeededForCurrentFuelModel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureClass) { var self = this.ptr; if (moistureClass && typeof moistureClass === 'object') moistureClass = moistureClass.ptr; return !!(_emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1(self, moistureClass)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['isUsingTwoFuelModels'] = SIGSurface.prototype.isUsingTwoFuelModels = function() { +SIGSurface.prototype['isUsingTwoFuelModels'] = SIGSurface.prototype.isUsingTwoFuelModels = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return !!(_emscripten_bind_SIGSurface_isUsingTwoFuelModels_0(self)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setCurrentMoistureScenarioByIndex'] = SIGSurface.prototype.setCurrentMoistureScenarioByIndex = function(moistureScenarioIndex) { +SIGSurface.prototype['setCurrentMoistureScenarioByIndex'] = SIGSurface.prototype.setCurrentMoistureScenarioByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarioIndex) { var self = this.ptr; if (moistureScenarioIndex && typeof moistureScenarioIndex === 'object') moistureScenarioIndex = moistureScenarioIndex.ptr; return !!(_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1(self, moistureScenarioIndex)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setCurrentMoistureScenarioByName'] = SIGSurface.prototype.setCurrentMoistureScenarioByName = function(moistureScenarioName) { +SIGSurface.prototype['setCurrentMoistureScenarioByName'] = SIGSurface.prototype.setCurrentMoistureScenarioByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarioName) { var self = this.ptr; ensureCache.prepare(); if (moistureScenarioName && typeof moistureScenarioName === 'object') moistureScenarioName = moistureScenarioName.ptr; else moistureScenarioName = ensureString(moistureScenarioName); return !!(_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1(self, moistureScenarioName)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['calculateFlameLength'] = SIGSurface.prototype.calculateFlameLength = function(firelineIntensity, firelineIntensityUnits, flameLengthUnits) { +SIGSurface.prototype['calculateFlameLength'] = SIGSurface.prototype.calculateFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensity, firelineIntensityUnits, flameLengthUnits) { var self = this.ptr; if (firelineIntensity && typeof firelineIntensity === 'object') firelineIntensity = firelineIntensity.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_calculateFlameLength_3(self, firelineIntensity, firelineIntensityUnits, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAgeOfRough'] = SIGSurface.prototype.getAgeOfRough = function() { +SIGSurface.prototype['getAgeOfRough'] = SIGSurface.prototype.getAgeOfRough = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getAgeOfRough_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspect'] = SIGSurface.prototype.getAspect = function() { +SIGSurface.prototype['getAspect'] = SIGSurface.prototype.getAspect = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getAspect_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenCuringLevel'] = SIGSurface.prototype.getAspenCuringLevel = function(curingLevelUnits) { +SIGSurface.prototype['getAspenCuringLevel'] = SIGSurface.prototype.getAspenCuringLevel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(curingLevelUnits) { var self = this.ptr; if (curingLevelUnits && typeof curingLevelUnits === 'object') curingLevelUnits = curingLevelUnits.ptr; return _emscripten_bind_SIGSurface_getAspenCuringLevel_1(self, curingLevelUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenDBH'] = SIGSurface.prototype.getAspenDBH = function(dbhUnits) { +SIGSurface.prototype['getAspenDBH'] = SIGSurface.prototype.getAspenDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dbhUnits) { var self = this.ptr; if (dbhUnits && typeof dbhUnits === 'object') dbhUnits = dbhUnits.ptr; return _emscripten_bind_SIGSurface_getAspenDBH_1(self, dbhUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenLoadDeadOneHour'] = SIGSurface.prototype.getAspenLoadDeadOneHour = function(loadingUnits) { +SIGSurface.prototype['getAspenLoadDeadOneHour'] = SIGSurface.prototype.getAspenLoadDeadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenLoadDeadTenHour'] = SIGSurface.prototype.getAspenLoadDeadTenHour = function(loadingUnits) { +SIGSurface.prototype['getAspenLoadDeadTenHour'] = SIGSurface.prototype.getAspenLoadDeadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenLoadLiveHerbaceous'] = SIGSurface.prototype.getAspenLoadLiveHerbaceous = function(loadingUnits) { +SIGSurface.prototype['getAspenLoadLiveHerbaceous'] = SIGSurface.prototype.getAspenLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenLoadLiveWoody'] = SIGSurface.prototype.getAspenLoadLiveWoody = function(loadingUnits) { +SIGSurface.prototype['getAspenLoadLiveWoody'] = SIGSurface.prototype.getAspenLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenSavrDeadOneHour'] = SIGSurface.prototype.getAspenSavrDeadOneHour = function(savrUnits) { +SIGSurface.prototype['getAspenSavrDeadOneHour'] = SIGSurface.prototype.getAspenSavrDeadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1(self, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenSavrDeadTenHour'] = SIGSurface.prototype.getAspenSavrDeadTenHour = function(savrUnits) { +SIGSurface.prototype['getAspenSavrDeadTenHour'] = SIGSurface.prototype.getAspenSavrDeadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1(self, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenSavrLiveHerbaceous'] = SIGSurface.prototype.getAspenSavrLiveHerbaceous = function(savrUnits) { +SIGSurface.prototype['getAspenSavrLiveHerbaceous'] = SIGSurface.prototype.getAspenSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1(self, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenSavrLiveWoody'] = SIGSurface.prototype.getAspenSavrLiveWoody = function(savrUnits) { +SIGSurface.prototype['getAspenSavrLiveWoody'] = SIGSurface.prototype.getAspenSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1(self, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getBackingFirelineIntensity'] = SIGSurface.prototype.getBackingFirelineIntensity = function(firelineIntensityUnits) { +SIGSurface.prototype['getBackingFirelineIntensity'] = SIGSurface.prototype.getBackingFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getBackingFirelineIntensity_1(self, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getBackingFlameLength'] = SIGSurface.prototype.getBackingFlameLength = function(flameLengthUnits) { +SIGSurface.prototype['getBackingFlameLength'] = SIGSurface.prototype.getBackingFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_getBackingFlameLength_1(self, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getBackingSpreadDistance'] = SIGSurface.prototype.getBackingSpreadDistance = function(lengthUnits) { +SIGSurface.prototype['getBackingSpreadDistance'] = SIGSurface.prototype.getBackingSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getBackingSpreadDistance_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getBackingSpreadRate'] = SIGSurface.prototype.getBackingSpreadRate = function(spreadRateUnits) { +SIGSurface.prototype['getBackingSpreadRate'] = SIGSurface.prototype.getBackingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getBackingSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getBulkDensity'] = SIGSurface.prototype.getBulkDensity = function(densityUnits) { +SIGSurface.prototype['getBulkDensity'] = SIGSurface.prototype.getBulkDensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(densityUnits) { var self = this.ptr; if (densityUnits && typeof densityUnits === 'object') densityUnits = densityUnits.ptr; return _emscripten_bind_SIGSurface_getBulkDensity_1(self, densityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getCanopyCover'] = SIGSurface.prototype.getCanopyCover = function(coverUnits) { +SIGSurface.prototype['getCanopyCover'] = SIGSurface.prototype.getCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverUnits) { var self = this.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; return _emscripten_bind_SIGSurface_getCanopyCover_1(self, coverUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getCanopyHeight'] = SIGSurface.prototype.getCanopyHeight = function(canopyHeightUnits) { +SIGSurface.prototype['getCanopyHeight'] = SIGSurface.prototype.getCanopyHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeightUnits) { var self = this.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; return _emscripten_bind_SIGSurface_getCanopyHeight_1(self, canopyHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralAge'] = SIGSurface.prototype.getChaparralAge = function(ageUnits) { +SIGSurface.prototype['getChaparralAge'] = SIGSurface.prototype.getChaparralAge = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageUnits) { var self = this.ptr; if (ageUnits && typeof ageUnits === 'object') ageUnits = ageUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralAge_1(self, ageUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralDaysSinceMayFirst'] = SIGSurface.prototype.getChaparralDaysSinceMayFirst = function() { +SIGSurface.prototype['getChaparralDaysSinceMayFirst'] = SIGSurface.prototype.getChaparralDaysSinceMayFirst = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralDeadFuelFraction'] = SIGSurface.prototype.getChaparralDeadFuelFraction = function() { +SIGSurface.prototype['getChaparralDeadFuelFraction'] = SIGSurface.prototype.getChaparralDeadFuelFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralDeadMoistureOfExtinction'] = SIGSurface.prototype.getChaparralDeadMoistureOfExtinction = function(moistureUnits) { +SIGSurface.prototype['getChaparralDeadMoistureOfExtinction'] = SIGSurface.prototype.getChaparralDeadMoistureOfExtinction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralDensity'] = SIGSurface.prototype.getChaparralDensity = function(lifeState, sizeClass, densityUnits) { +SIGSurface.prototype['getChaparralDensity'] = SIGSurface.prototype.getChaparralDensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState, sizeClass, densityUnits) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; if (sizeClass && typeof sizeClass === 'object') sizeClass = sizeClass.ptr; if (densityUnits && typeof densityUnits === 'object') densityUnits = densityUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralDensity_3(self, lifeState, sizeClass, densityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralFuelBedDepth'] = SIGSurface.prototype.getChaparralFuelBedDepth = function(depthUnits) { +SIGSurface.prototype['getChaparralFuelBedDepth'] = SIGSurface.prototype.getChaparralFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(depthUnits) { var self = this.ptr; if (depthUnits && typeof depthUnits === 'object') depthUnits = depthUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1(self, depthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralFuelDeadLoadFraction'] = SIGSurface.prototype.getChaparralFuelDeadLoadFraction = function() { +SIGSurface.prototype['getChaparralFuelDeadLoadFraction'] = SIGSurface.prototype.getChaparralFuelDeadLoadFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralHeatOfCombustion'] = SIGSurface.prototype.getChaparralHeatOfCombustion = function(lifeState, sizeClass, heatOfCombustionUnits) { +SIGSurface.prototype['getChaparralHeatOfCombustion'] = SIGSurface.prototype.getChaparralHeatOfCombustion = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState, sizeClass, heatOfCombustionUnits) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; if (sizeClass && typeof sizeClass === 'object') sizeClass = sizeClass.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3(self, lifeState, sizeClass, heatOfCombustionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLiveMoistureOfExtinction'] = SIGSurface.prototype.getChaparralLiveMoistureOfExtinction = function(moistureUnits) { +SIGSurface.prototype['getChaparralLiveMoistureOfExtinction'] = SIGSurface.prototype.getChaparralLiveMoistureOfExtinction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadDeadHalfInchToLessThanOneInch'] = SIGSurface.prototype.getChaparralLoadDeadHalfInchToLessThanOneInch = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadDeadHalfInchToLessThanOneInch'] = SIGSurface.prototype.getChaparralLoadDeadHalfInchToLessThanOneInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadDeadLessThanQuarterInch'] = SIGSurface.prototype.getChaparralLoadDeadLessThanQuarterInch = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadDeadLessThanQuarterInch'] = SIGSurface.prototype.getChaparralLoadDeadLessThanQuarterInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadDeadOneInchToThreeInch'] = SIGSurface.prototype.getChaparralLoadDeadOneInchToThreeInch = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadDeadOneInchToThreeInch'] = SIGSurface.prototype.getChaparralLoadDeadOneInchToThreeInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadDeadQuarterInchToLessThanHalfInch'] = SIGSurface.prototype.getChaparralLoadDeadQuarterInchToLessThanHalfInch = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadDeadQuarterInchToLessThanHalfInch'] = SIGSurface.prototype.getChaparralLoadDeadQuarterInchToLessThanHalfInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadLiveHalfInchToLessThanOneInch'] = SIGSurface.prototype.getChaparralLoadLiveHalfInchToLessThanOneInch = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadLiveHalfInchToLessThanOneInch'] = SIGSurface.prototype.getChaparralLoadLiveHalfInchToLessThanOneInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadLiveLeaves'] = SIGSurface.prototype.getChaparralLoadLiveLeaves = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadLiveLeaves'] = SIGSurface.prototype.getChaparralLoadLiveLeaves = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadLiveOneInchToThreeInch'] = SIGSurface.prototype.getChaparralLoadLiveOneInchToThreeInch = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadLiveOneInchToThreeInch'] = SIGSurface.prototype.getChaparralLoadLiveOneInchToThreeInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadLiveQuarterInchToLessThanHalfInch'] = SIGSurface.prototype.getChaparralLoadLiveQuarterInchToLessThanHalfInch = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadLiveQuarterInchToLessThanHalfInch'] = SIGSurface.prototype.getChaparralLoadLiveQuarterInchToLessThanHalfInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadLiveStemsLessThanQuaterInch'] = SIGSurface.prototype.getChaparralLoadLiveStemsLessThanQuaterInch = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadLiveStemsLessThanQuaterInch'] = SIGSurface.prototype.getChaparralLoadLiveStemsLessThanQuaterInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralMoisture'] = SIGSurface.prototype.getChaparralMoisture = function(lifeState, sizeClass, moistureUnits) { +SIGSurface.prototype['getChaparralMoisture'] = SIGSurface.prototype.getChaparralMoisture = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState, sizeClass, moistureUnits) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; if (sizeClass && typeof sizeClass === 'object') sizeClass = sizeClass.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralMoisture_3(self, lifeState, sizeClass, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralTotalDeadFuelLoad'] = SIGSurface.prototype.getChaparralTotalDeadFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getChaparralTotalDeadFuelLoad'] = SIGSurface.prototype.getChaparralTotalDeadFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralTotalFuelLoad'] = SIGSurface.prototype.getChaparralTotalFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getChaparralTotalFuelLoad'] = SIGSurface.prototype.getChaparralTotalFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralTotalLiveFuelLoad'] = SIGSurface.prototype.getChaparralTotalLiveFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getChaparralTotalLiveFuelLoad'] = SIGSurface.prototype.getChaparralTotalLiveFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getCharacteristicMoistureByLifeState'] = SIGSurface.prototype.getCharacteristicMoistureByLifeState = function(lifeState, moistureUnits) { +SIGSurface.prototype['getCharacteristicMoistureByLifeState'] = SIGSurface.prototype.getCharacteristicMoistureByLifeState = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState, moistureUnits) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2(self, lifeState, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getCharacteristicMoistureDead'] = SIGSurface.prototype.getCharacteristicMoistureDead = function(moistureUnits) { +SIGSurface.prototype['getCharacteristicMoistureDead'] = SIGSurface.prototype.getCharacteristicMoistureDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getCharacteristicMoistureLive'] = SIGSurface.prototype.getCharacteristicMoistureLive = function(moistureUnits) { +SIGSurface.prototype['getCharacteristicMoistureLive'] = SIGSurface.prototype.getCharacteristicMoistureLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getCharacteristicSAVR'] = SIGSurface.prototype.getCharacteristicSAVR = function(savrUnits) { +SIGSurface.prototype['getCharacteristicSAVR'] = SIGSurface.prototype.getCharacteristicSAVR = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getCharacteristicSAVR_1(self, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getCrownRatio'] = SIGSurface.prototype.getCrownRatio = function(crownRatioUnits) { +SIGSurface.prototype['getCrownRatio'] = SIGSurface.prototype.getCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatioUnits) { var self = this.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; return _emscripten_bind_SIGSurface_getCrownRatio_1(self, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getDirectionOfMaxSpread'] = SIGSurface.prototype.getDirectionOfMaxSpread = function() { +SIGSurface.prototype['getDirectionOfMaxSpread'] = SIGSurface.prototype.getDirectionOfMaxSpread = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getDirectionOfInterest'] = SIGSurface.prototype.getDirectionOfInterest = function() { +SIGSurface.prototype['getDirectionOfInterest'] = SIGSurface.prototype.getDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getDirectionOfInterest_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getDirectionOfBacking'] = SIGSurface.prototype.getDirectionOfBacking = function() { +SIGSurface.prototype['getDirectionOfBacking'] = SIGSurface.prototype.getDirectionOfBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getDirectionOfBacking_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getDirectionOfFlanking'] = SIGSurface.prototype.getDirectionOfFlanking = function() { +SIGSurface.prototype['getDirectionOfFlanking'] = SIGSurface.prototype.getDirectionOfFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getDirectionOfFlanking_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getElapsedTime'] = SIGSurface.prototype.getElapsedTime = function(timeUnits) { +SIGSurface.prototype['getElapsedTime'] = SIGSurface.prototype.getElapsedTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(timeUnits) { var self = this.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_SIGSurface_getElapsedTime_1(self, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getEllipticalA'] = SIGSurface.prototype.getEllipticalA = function(lengthUnits) { +SIGSurface.prototype['getEllipticalA'] = SIGSurface.prototype.getEllipticalA = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getEllipticalA_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getEllipticalB'] = SIGSurface.prototype.getEllipticalB = function(lengthUnits) { +SIGSurface.prototype['getEllipticalB'] = SIGSurface.prototype.getEllipticalB = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getEllipticalB_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getEllipticalC'] = SIGSurface.prototype.getEllipticalC = function(lengthUnits) { +SIGSurface.prototype['getEllipticalC'] = SIGSurface.prototype.getEllipticalC = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getEllipticalC_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFireLength'] = SIGSurface.prototype.getFireLength = function(lengthUnits) { +SIGSurface.prototype['getFireLength'] = SIGSurface.prototype.getFireLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getFireLength_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMaxFireWidth'] = SIGSurface.prototype.getMaxFireWidth = function(lengthUnits) { +SIGSurface.prototype['getMaxFireWidth'] = SIGSurface.prototype.getMaxFireWidth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getMaxFireWidth_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFireArea'] = SIGSurface.prototype.getFireArea = function(areaUnits) { +SIGSurface.prototype['getFireArea'] = SIGSurface.prototype.getFireArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGSurface_getFireArea_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFireEccentricity'] = SIGSurface.prototype.getFireEccentricity = function() { +SIGSurface.prototype['getFireEccentricity'] = SIGSurface.prototype.getFireEccentricity = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getFireEccentricity_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFireLengthToWidthRatio'] = SIGSurface.prototype.getFireLengthToWidthRatio = function() { +SIGSurface.prototype['getFireLengthToWidthRatio'] = SIGSurface.prototype.getFireLengthToWidthRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFirePerimeter'] = SIGSurface.prototype.getFirePerimeter = function(lengthUnits) { +SIGSurface.prototype['getFirePerimeter'] = SIGSurface.prototype.getFirePerimeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getFirePerimeter_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFirelineIntensity'] = SIGSurface.prototype.getFirelineIntensity = function(firelineIntensityUnits) { +SIGSurface.prototype['getFirelineIntensity'] = SIGSurface.prototype.getFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getFirelineIntensity_1(self, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFirelineIntensityInDirectionOfInterest'] = SIGSurface.prototype.getFirelineIntensityInDirectionOfInterest = function(firelineIntensityUnits) { +SIGSurface.prototype['getFirelineIntensityInDirectionOfInterest'] = SIGSurface.prototype.getFirelineIntensityInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1(self, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFlameLength'] = SIGSurface.prototype.getFlameLength = function(flameLengthUnits) { +SIGSurface.prototype['getFlameLength'] = SIGSurface.prototype.getFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_getFlameLength_1(self, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFlameLengthInDirectionOfInterest'] = SIGSurface.prototype.getFlameLengthInDirectionOfInterest = function(flameLengthUnits) { +SIGSurface.prototype['getFlameLengthInDirectionOfInterest'] = SIGSurface.prototype.getFlameLengthInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1(self, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFlankingFirelineIntensity'] = SIGSurface.prototype.getFlankingFirelineIntensity = function(firelineIntensityUnits) { +SIGSurface.prototype['getFlankingFirelineIntensity'] = SIGSurface.prototype.getFlankingFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1(self, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFlankingFlameLength'] = SIGSurface.prototype.getFlankingFlameLength = function(flameLengthUnits) { +SIGSurface.prototype['getFlankingFlameLength'] = SIGSurface.prototype.getFlankingFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_getFlankingFlameLength_1(self, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFlankingSpreadRate'] = SIGSurface.prototype.getFlankingSpreadRate = function(spreadRateUnits) { +SIGSurface.prototype['getFlankingSpreadRate'] = SIGSurface.prototype.getFlankingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getFlankingSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFlankingSpreadDistance'] = SIGSurface.prototype.getFlankingSpreadDistance = function(lengthUnits) { +SIGSurface.prototype['getFlankingSpreadDistance'] = SIGSurface.prototype.getFlankingSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getFlankingSpreadDistance_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelHeatOfCombustionDead'] = SIGSurface.prototype.getFuelHeatOfCombustionDead = function(fuelModelNumber, heatOfCombustionUnits) { +SIGSurface.prototype['getFuelHeatOfCombustionDead'] = SIGSurface.prototype.getFuelHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2(self, fuelModelNumber, heatOfCombustionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelHeatOfCombustionLive'] = SIGSurface.prototype.getFuelHeatOfCombustionLive = function(fuelModelNumber, heatOfCombustionUnits) { +SIGSurface.prototype['getFuelHeatOfCombustionLive'] = SIGSurface.prototype.getFuelHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2(self, fuelModelNumber, heatOfCombustionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelLoadHundredHour'] = SIGSurface.prototype.getFuelLoadHundredHour = function(fuelModelNumber, loadingUnits) { +SIGSurface.prototype['getFuelLoadHundredHour'] = SIGSurface.prototype.getFuelLoadHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadHundredHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelLoadLiveHerbaceous'] = SIGSurface.prototype.getFuelLoadLiveHerbaceous = function(fuelModelNumber, loadingUnits) { +SIGSurface.prototype['getFuelLoadLiveHerbaceous'] = SIGSurface.prototype.getFuelLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelLoadLiveWoody'] = SIGSurface.prototype.getFuelLoadLiveWoody = function(fuelModelNumber, loadingUnits) { +SIGSurface.prototype['getFuelLoadLiveWoody'] = SIGSurface.prototype.getFuelLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelLoadOneHour'] = SIGSurface.prototype.getFuelLoadOneHour = function(fuelModelNumber, loadingUnits) { +SIGSurface.prototype['getFuelLoadOneHour'] = SIGSurface.prototype.getFuelLoadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadOneHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelLoadTenHour'] = SIGSurface.prototype.getFuelLoadTenHour = function(fuelModelNumber, loadingUnits) { +SIGSurface.prototype['getFuelLoadTenHour'] = SIGSurface.prototype.getFuelLoadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadTenHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelMoistureOfExtinctionDead'] = SIGSurface.prototype.getFuelMoistureOfExtinctionDead = function(fuelModelNumber, moistureUnits) { +SIGSurface.prototype['getFuelMoistureOfExtinctionDead'] = SIGSurface.prototype.getFuelMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2(self, fuelModelNumber, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelSavrLiveHerbaceous'] = SIGSurface.prototype.getFuelSavrLiveHerbaceous = function(fuelModelNumber, savrUnits) { +SIGSurface.prototype['getFuelSavrLiveHerbaceous'] = SIGSurface.prototype.getFuelSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelSavrLiveWoody'] = SIGSurface.prototype.getFuelSavrLiveWoody = function(fuelModelNumber, savrUnits) { +SIGSurface.prototype['getFuelSavrLiveWoody'] = SIGSurface.prototype.getFuelSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelSavrOneHour'] = SIGSurface.prototype.getFuelSavrOneHour = function(fuelModelNumber, savrUnits) { +SIGSurface.prototype['getFuelSavrOneHour'] = SIGSurface.prototype.getFuelSavrOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getFuelSavrOneHour_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelbedDepth'] = SIGSurface.prototype.getFuelbedDepth = function(fuelModelNumber, lengthUnits) { +SIGSurface.prototype['getFuelbedDepth'] = SIGSurface.prototype.getFuelbedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, lengthUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getFuelbedDepth_2(self, fuelModelNumber, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getHeadingSpreadRate'] = SIGSurface.prototype.getHeadingSpreadRate = function(spreadRateUnits) { +SIGSurface.prototype['getHeadingSpreadRate'] = SIGSurface.prototype.getHeadingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getHeadingSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getHeadingToBackingRatio'] = SIGSurface.prototype.getHeadingToBackingRatio = function() { +SIGSurface.prototype['getHeadingToBackingRatio'] = SIGSurface.prototype.getHeadingToBackingRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getHeadingToBackingRatio_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getHeatPerUnitArea'] = SIGSurface.prototype.getHeatPerUnitArea = function(heatPerUnitAreaUnits) { +SIGSurface.prototype['getHeatPerUnitArea'] = SIGSurface.prototype.getHeatPerUnitArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatPerUnitAreaUnits) { var self = this.ptr; if (heatPerUnitAreaUnits && typeof heatPerUnitAreaUnits === 'object') heatPerUnitAreaUnits = heatPerUnitAreaUnits.ptr; return _emscripten_bind_SIGSurface_getHeatPerUnitArea_1(self, heatPerUnitAreaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getHeatSink'] = SIGSurface.prototype.getHeatSink = function(heatSinkUnits) { +SIGSurface.prototype['getHeatSink'] = SIGSurface.prototype.getHeatSink = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatSinkUnits) { var self = this.ptr; if (heatSinkUnits && typeof heatSinkUnits === 'object') heatSinkUnits = heatSinkUnits.ptr; return _emscripten_bind_SIGSurface_getHeatSink_1(self, heatSinkUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getHeatSource'] = SIGSurface.prototype.getHeatSource = function(heatSourceUnits) { +SIGSurface.prototype['getHeatSource'] = SIGSurface.prototype.getHeatSource = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatSourceUnits) { var self = this.ptr; if (heatSourceUnits && typeof heatSourceUnits === 'object') heatSourceUnits = heatSourceUnits.ptr; return _emscripten_bind_SIGSurface_getHeatSource_1(self, heatSourceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getHeightOfUnderstory'] = SIGSurface.prototype.getHeightOfUnderstory = function(heightUnits) { +SIGSurface.prototype['getHeightOfUnderstory'] = SIGSurface.prototype.getHeightOfUnderstory = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heightUnits) { var self = this.ptr; if (heightUnits && typeof heightUnits === 'object') heightUnits = heightUnits.ptr; return _emscripten_bind_SIGSurface_getHeightOfUnderstory_1(self, heightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getLiveFuelMoistureOfExtinction'] = SIGSurface.prototype.getLiveFuelMoistureOfExtinction = function(moistureUnits) { +SIGSurface.prototype['getLiveFuelMoistureOfExtinction'] = SIGSurface.prototype.getLiveFuelMoistureOfExtinction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMidflameWindspeed'] = SIGSurface.prototype.getMidflameWindspeed = function(windSpeedUnits) { +SIGSurface.prototype['getMidflameWindspeed'] = SIGSurface.prototype.getMidflameWindspeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedUnits) { var self = this.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; return _emscripten_bind_SIGSurface_getMidflameWindspeed_1(self, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureDeadAggregateValue'] = SIGSurface.prototype.getMoistureDeadAggregateValue = function(moistureUnits) { +SIGSurface.prototype['getMoistureDeadAggregateValue'] = SIGSurface.prototype.getMoistureDeadAggregateValue = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureHundredHour'] = SIGSurface.prototype.getMoistureHundredHour = function(moistureUnits) { +SIGSurface.prototype['getMoistureHundredHour'] = SIGSurface.prototype.getMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureHundredHour_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureLiveAggregateValue'] = SIGSurface.prototype.getMoistureLiveAggregateValue = function(moistureUnits) { +SIGSurface.prototype['getMoistureLiveAggregateValue'] = SIGSurface.prototype.getMoistureLiveAggregateValue = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureLiveHerbaceous'] = SIGSurface.prototype.getMoistureLiveHerbaceous = function(moistureUnits) { +SIGSurface.prototype['getMoistureLiveHerbaceous'] = SIGSurface.prototype.getMoistureLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureLiveWoody'] = SIGSurface.prototype.getMoistureLiveWoody = function(moistureUnits) { +SIGSurface.prototype['getMoistureLiveWoody'] = SIGSurface.prototype.getMoistureLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureLiveWoody_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureOneHour'] = SIGSurface.prototype.getMoistureOneHour = function(moistureUnits) { +SIGSurface.prototype['getMoistureOneHour'] = SIGSurface.prototype.getMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureOneHour_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioHundredHourByIndex'] = SIGSurface.prototype.getMoistureScenarioHundredHourByIndex = function(index, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioHundredHourByIndex'] = SIGSurface.prototype.getMoistureScenarioHundredHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioHundredHourByName'] = SIGSurface.prototype.getMoistureScenarioHundredHourByName = function(name, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioHundredHourByName'] = SIGSurface.prototype.getMoistureScenarioHundredHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGSurface.prototype.getMoistureScenarioLiveHerbaceousByIndex = function(index, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGSurface.prototype.getMoistureScenarioLiveHerbaceousByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGSurface.prototype.getMoistureScenarioLiveHerbaceousByName = function(name, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGSurface.prototype.getMoistureScenarioLiveHerbaceousByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGSurface.prototype.getMoistureScenarioLiveWoodyByIndex = function(index, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGSurface.prototype.getMoistureScenarioLiveWoodyByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioLiveWoodyByName'] = SIGSurface.prototype.getMoistureScenarioLiveWoodyByName = function(name, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioLiveWoodyByName'] = SIGSurface.prototype.getMoistureScenarioLiveWoodyByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioOneHourByIndex'] = SIGSurface.prototype.getMoistureScenarioOneHourByIndex = function(index, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioOneHourByIndex'] = SIGSurface.prototype.getMoistureScenarioOneHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioOneHourByName'] = SIGSurface.prototype.getMoistureScenarioOneHourByName = function(name, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioOneHourByName'] = SIGSurface.prototype.getMoistureScenarioOneHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioTenHourByIndex'] = SIGSurface.prototype.getMoistureScenarioTenHourByIndex = function(index, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioTenHourByIndex'] = SIGSurface.prototype.getMoistureScenarioTenHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioTenHourByName'] = SIGSurface.prototype.getMoistureScenarioTenHourByName = function(name, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioTenHourByName'] = SIGSurface.prototype.getMoistureScenarioTenHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureTenHour'] = SIGSurface.prototype.getMoistureTenHour = function(moistureUnits) { +SIGSurface.prototype['getMoistureTenHour'] = SIGSurface.prototype.getMoistureTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureTenHour_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getOverstoryBasalArea'] = SIGSurface.prototype.getOverstoryBasalArea = function(basalAreaUnits) { +SIGSurface.prototype['getOverstoryBasalArea'] = SIGSurface.prototype.getOverstoryBasalArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(basalAreaUnits) { var self = this.ptr; if (basalAreaUnits && typeof basalAreaUnits === 'object') basalAreaUnits = basalAreaUnits.ptr; return _emscripten_bind_SIGSurface_getOverstoryBasalArea_1(self, basalAreaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberryCoverage'] = SIGSurface.prototype.getPalmettoGallberryCoverage = function(coverUnits) { +SIGSurface.prototype['getPalmettoGallberryCoverage'] = SIGSurface.prototype.getPalmettoGallberryCoverage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverUnits) { var self = this.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1(self, coverUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberryHeatOfCombustionDead'] = SIGSurface.prototype.getPalmettoGallberryHeatOfCombustionDead = function(heatOfCombustionUnits) { +SIGSurface.prototype['getPalmettoGallberryHeatOfCombustionDead'] = SIGSurface.prototype.getPalmettoGallberryHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatOfCombustionUnits) { var self = this.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1(self, heatOfCombustionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberryHeatOfCombustionLive'] = SIGSurface.prototype.getPalmettoGallberryHeatOfCombustionLive = function(heatOfCombustionUnits) { +SIGSurface.prototype['getPalmettoGallberryHeatOfCombustionLive'] = SIGSurface.prototype.getPalmettoGallberryHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatOfCombustionUnits) { var self = this.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1(self, heatOfCombustionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberryMoistureOfExtinctionDead'] = SIGSurface.prototype.getPalmettoGallberryMoistureOfExtinctionDead = function(moistureUnits) { +SIGSurface.prototype['getPalmettoGallberryMoistureOfExtinctionDead'] = SIGSurface.prototype.getPalmettoGallberryMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberyDeadFineFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadFineFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getPalmettoGallberyDeadFineFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberyDeadFoliageLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadFoliageLoad = function(loadingUnits) { +SIGSurface.prototype['getPalmettoGallberyDeadFoliageLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberyDeadMediumFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadMediumFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getPalmettoGallberyDeadMediumFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberyFuelBedDepth'] = SIGSurface.prototype.getPalmettoGallberyFuelBedDepth = function(depthUnits) { +SIGSurface.prototype['getPalmettoGallberyFuelBedDepth'] = SIGSurface.prototype.getPalmettoGallberyFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(depthUnits) { var self = this.ptr; if (depthUnits && typeof depthUnits === 'object') depthUnits = depthUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1(self, depthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberyLitterLoad'] = SIGSurface.prototype.getPalmettoGallberyLitterLoad = function(loadingUnits) { +SIGSurface.prototype['getPalmettoGallberyLitterLoad'] = SIGSurface.prototype.getPalmettoGallberyLitterLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberyLiveFineFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveFineFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getPalmettoGallberyLiveFineFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberyLiveFoliageLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveFoliageLoad = function(loadingUnits) { +SIGSurface.prototype['getPalmettoGallberyLiveFoliageLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberyLiveMediumFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveMediumFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getPalmettoGallberyLiveMediumFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getReactionIntensity'] = SIGSurface.prototype.getReactionIntensity = function(reactiontionIntensityUnits) { +SIGSurface.prototype['getReactionIntensity'] = SIGSurface.prototype.getReactionIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(reactiontionIntensityUnits) { var self = this.ptr; if (reactiontionIntensityUnits && typeof reactiontionIntensityUnits === 'object') reactiontionIntensityUnits = reactiontionIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getReactionIntensity_1(self, reactiontionIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getResidenceTime'] = SIGSurface.prototype.getResidenceTime = function(timeUnits) { +SIGSurface.prototype['getResidenceTime'] = SIGSurface.prototype.getResidenceTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(timeUnits) { var self = this.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_SIGSurface_getResidenceTime_1(self, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getSlope'] = SIGSurface.prototype.getSlope = function(slopeUnits) { +SIGSurface.prototype['getSlope'] = SIGSurface.prototype.getSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeUnits) { var self = this.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; return _emscripten_bind_SIGSurface_getSlope_1(self, slopeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getSlopeFactor'] = SIGSurface.prototype.getSlopeFactor = function() { +SIGSurface.prototype['getSlopeFactor'] = SIGSurface.prototype.getSlopeFactor = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getSlopeFactor_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getSpreadDistance'] = SIGSurface.prototype.getSpreadDistance = function(lengthUnits) { +SIGSurface.prototype['getSpreadDistance'] = SIGSurface.prototype.getSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getSpreadDistance_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getSpreadDistanceInDirectionOfInterest'] = SIGSurface.prototype.getSpreadDistanceInDirectionOfInterest = function(lengthUnits) { +SIGSurface.prototype['getSpreadDistanceInDirectionOfInterest'] = SIGSurface.prototype.getSpreadDistanceInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getSpreadRate'] = SIGSurface.prototype.getSpreadRate = function(spreadRateUnits) { +SIGSurface.prototype['getSpreadRate'] = SIGSurface.prototype.getSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getSpreadRateInDirectionOfInterest'] = SIGSurface.prototype.getSpreadRateInDirectionOfInterest = function(spreadRateUnits) { +SIGSurface.prototype['getSpreadRateInDirectionOfInterest'] = SIGSurface.prototype.getSpreadRateInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getSurfaceFireReactionIntensityForLifeState'] = SIGSurface.prototype.getSurfaceFireReactionIntensityForLifeState = function(lifeState) { +SIGSurface.prototype['getSurfaceFireReactionIntensityForLifeState'] = SIGSurface.prototype.getSurfaceFireReactionIntensityForLifeState = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; return _emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1(self, lifeState); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getTotalLiveFuelLoad'] = SIGSurface.prototype.getTotalLiveFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getTotalLiveFuelLoad'] = SIGSurface.prototype.getTotalLiveFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getTotalDeadFuelLoad'] = SIGSurface.prototype.getTotalDeadFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getTotalDeadFuelLoad'] = SIGSurface.prototype.getTotalDeadFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getTotalDeadHerbaceousFuelLoad'] = SIGSurface.prototype.getTotalDeadHerbaceousFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getTotalDeadHerbaceousFuelLoad'] = SIGSurface.prototype.getTotalDeadHerbaceousFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getWindDirection'] = SIGSurface.prototype.getWindDirection = function() { +SIGSurface.prototype['getWindDirection'] = SIGSurface.prototype.getWindDirection = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindDirection_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getWindSpeed'] = SIGSurface.prototype.getWindSpeed = function(windSpeedUnits, windHeightInputMode) { +SIGSurface.prototype['getWindSpeed'] = SIGSurface.prototype.getWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedUnits, windHeightInputMode) { var self = this.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; return _emscripten_bind_SIGSurface_getWindSpeed_2(self, windSpeedUnits, windHeightInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenFuelModelNumber'] = SIGSurface.prototype.getAspenFuelModelNumber = function() { +SIGSurface.prototype['getAspenFuelModelNumber'] = SIGSurface.prototype.getAspenFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getAspenFuelModelNumber_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelModelNumber'] = SIGSurface.prototype.getFuelModelNumber = function() { +SIGSurface.prototype['getFuelModelNumber'] = SIGSurface.prototype.getFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getFuelModelNumber_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioIndexByName'] = SIGSurface.prototype.getMoistureScenarioIndexByName = function(name) { +SIGSurface.prototype['getMoistureScenarioIndexByName'] = SIGSurface.prototype.getMoistureScenarioIndexByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return _emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1(self, name); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getNumberOfMoistureScenarios'] = SIGSurface.prototype.getNumberOfMoistureScenarios = function() { +SIGSurface.prototype['getNumberOfMoistureScenarios'] = SIGSurface.prototype.getNumberOfMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelCode'] = SIGSurface.prototype.getFuelCode = function(fuelModelNumber) { +SIGSurface.prototype['getFuelCode'] = SIGSurface.prototype.getFuelCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGSurface_getFuelCode_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelName'] = SIGSurface.prototype.getFuelName = function(fuelModelNumber) { +SIGSurface.prototype['getFuelName'] = SIGSurface.prototype.getFuelName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGSurface_getFuelName_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioDescriptionByIndex'] = SIGSurface.prototype.getMoistureScenarioDescriptionByIndex = function(index) { +SIGSurface.prototype['getMoistureScenarioDescriptionByIndex'] = SIGSurface.prototype.getMoistureScenarioDescriptionByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioDescriptionByName'] = SIGSurface.prototype.getMoistureScenarioDescriptionByName = function(name) { +SIGSurface.prototype['getMoistureScenarioDescriptionByName'] = SIGSurface.prototype.getMoistureScenarioDescriptionByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return UTF8ToString(_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1(self, name)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioNameByIndex'] = SIGSurface.prototype.getMoistureScenarioNameByIndex = function(index) { +SIGSurface.prototype['getMoistureScenarioNameByIndex'] = SIGSurface.prototype.getMoistureScenarioNameByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['doSurfaceRun'] = SIGSurface.prototype.doSurfaceRun = function() { +SIGSurface.prototype['doSurfaceRun'] = SIGSurface.prototype.doSurfaceRun = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSurface_doSurfaceRun_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['doSurfaceRunInDirectionOfInterest'] = SIGSurface.prototype.doSurfaceRunInDirectionOfInterest = function(directionOfInterest, directionMode) { +SIGSurface.prototype['doSurfaceRunInDirectionOfInterest'] = SIGSurface.prototype.doSurfaceRunInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(directionOfInterest, directionMode) { var self = this.ptr; if (directionOfInterest && typeof directionOfInterest === 'object') directionOfInterest = directionOfInterest.ptr; if (directionMode && typeof directionMode === 'object') directionMode = directionMode.ptr; _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2(self, directionOfInterest, directionMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['doSurfaceRunInDirectionOfMaxSpread'] = SIGSurface.prototype.doSurfaceRunInDirectionOfMaxSpread = function() { +SIGSurface.prototype['doSurfaceRunInDirectionOfMaxSpread'] = SIGSurface.prototype.doSurfaceRunInDirectionOfMaxSpread = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['initializeMembers'] = SIGSurface.prototype.initializeMembers = function() { +SIGSurface.prototype['initializeMembers'] = SIGSurface.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSurface_initializeMembers_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setAgeOfRough'] = SIGSurface.prototype.setAgeOfRough = function(ageOfRough) { +SIGSurface.prototype['setAgeOfRough'] = SIGSurface.prototype.setAgeOfRough = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; _emscripten_bind_SIGSurface_setAgeOfRough_1(self, ageOfRough); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setAspect'] = SIGSurface.prototype.setAspect = function(aspect) { +SIGSurface.prototype['setAspect'] = SIGSurface.prototype.setAspect = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspect) { var self = this.ptr; if (aspect && typeof aspect === 'object') aspect = aspect.ptr; _emscripten_bind_SIGSurface_setAspect_1(self, aspect); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setAspenCuringLevel'] = SIGSurface.prototype.setAspenCuringLevel = function(aspenCuringLevel, curingLevelUnits) { +SIGSurface.prototype['setAspenCuringLevel'] = SIGSurface.prototype.setAspenCuringLevel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspenCuringLevel, curingLevelUnits) { var self = this.ptr; if (aspenCuringLevel && typeof aspenCuringLevel === 'object') aspenCuringLevel = aspenCuringLevel.ptr; if (curingLevelUnits && typeof curingLevelUnits === 'object') curingLevelUnits = curingLevelUnits.ptr; _emscripten_bind_SIGSurface_setAspenCuringLevel_2(self, aspenCuringLevel, curingLevelUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setAspenDBH'] = SIGSurface.prototype.setAspenDBH = function(dbh, dbhUnits) { +SIGSurface.prototype['setAspenDBH'] = SIGSurface.prototype.setAspenDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dbh, dbhUnits) { var self = this.ptr; if (dbh && typeof dbh === 'object') dbh = dbh.ptr; if (dbhUnits && typeof dbhUnits === 'object') dbhUnits = dbhUnits.ptr; _emscripten_bind_SIGSurface_setAspenDBH_2(self, dbh, dbhUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setAspenFireSeverity'] = SIGSurface.prototype.setAspenFireSeverity = function(aspenFireSeverity) { +SIGSurface.prototype['setAspenFireSeverity'] = SIGSurface.prototype.setAspenFireSeverity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspenFireSeverity) { var self = this.ptr; if (aspenFireSeverity && typeof aspenFireSeverity === 'object') aspenFireSeverity = aspenFireSeverity.ptr; _emscripten_bind_SIGSurface_setAspenFireSeverity_1(self, aspenFireSeverity); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setAspenFuelModelNumber'] = SIGSurface.prototype.setAspenFuelModelNumber = function(aspenFuelModelNumber) { +SIGSurface.prototype['setAspenFuelModelNumber'] = SIGSurface.prototype.setAspenFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspenFuelModelNumber) { var self = this.ptr; if (aspenFuelModelNumber && typeof aspenFuelModelNumber === 'object') aspenFuelModelNumber = aspenFuelModelNumber.ptr; _emscripten_bind_SIGSurface_setAspenFuelModelNumber_1(self, aspenFuelModelNumber); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setCanopyCover'] = SIGSurface.prototype.setCanopyCover = function(canopyCover, coverUnits) { +SIGSurface.prototype['setCanopyCover'] = SIGSurface.prototype.setCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyCover, coverUnits) { var self = this.ptr; if (canopyCover && typeof canopyCover === 'object') canopyCover = canopyCover.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; _emscripten_bind_SIGSurface_setCanopyCover_2(self, canopyCover, coverUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setCanopyHeight'] = SIGSurface.prototype.setCanopyHeight = function(canopyHeight, canopyHeightUnits) { +SIGSurface.prototype['setCanopyHeight'] = SIGSurface.prototype.setCanopyHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeight, canopyHeightUnits) { var self = this.ptr; if (canopyHeight && typeof canopyHeight === 'object') canopyHeight = canopyHeight.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; _emscripten_bind_SIGSurface_setCanopyHeight_2(self, canopyHeight, canopyHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setChaparralFuelBedDepth'] = SIGSurface.prototype.setChaparralFuelBedDepth = function(chaparralFuelBedDepth, depthUnts) { +SIGSurface.prototype['setChaparralFuelBedDepth'] = SIGSurface.prototype.setChaparralFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(chaparralFuelBedDepth, depthUnts) { var self = this.ptr; if (chaparralFuelBedDepth && typeof chaparralFuelBedDepth === 'object') chaparralFuelBedDepth = chaparralFuelBedDepth.ptr; if (depthUnts && typeof depthUnts === 'object') depthUnts = depthUnts.ptr; _emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2(self, chaparralFuelBedDepth, depthUnts); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setChaparralFuelDeadLoadFraction'] = SIGSurface.prototype.setChaparralFuelDeadLoadFraction = function(chaparralFuelDeadLoadFraction) { +SIGSurface.prototype['setChaparralFuelDeadLoadFraction'] = SIGSurface.prototype.setChaparralFuelDeadLoadFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(chaparralFuelDeadLoadFraction) { var self = this.ptr; if (chaparralFuelDeadLoadFraction && typeof chaparralFuelDeadLoadFraction === 'object') chaparralFuelDeadLoadFraction = chaparralFuelDeadLoadFraction.ptr; _emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1(self, chaparralFuelDeadLoadFraction); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setChaparralFuelLoadInputMode'] = SIGSurface.prototype.setChaparralFuelLoadInputMode = function(fuelLoadInputMode) { +SIGSurface.prototype['setChaparralFuelLoadInputMode'] = SIGSurface.prototype.setChaparralFuelLoadInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelLoadInputMode) { var self = this.ptr; if (fuelLoadInputMode && typeof fuelLoadInputMode === 'object') fuelLoadInputMode = fuelLoadInputMode.ptr; _emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1(self, fuelLoadInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setChaparralFuelType'] = SIGSurface.prototype.setChaparralFuelType = function(chaparralFuelType) { +SIGSurface.prototype['setChaparralFuelType'] = SIGSurface.prototype.setChaparralFuelType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(chaparralFuelType) { var self = this.ptr; if (chaparralFuelType && typeof chaparralFuelType === 'object') chaparralFuelType = chaparralFuelType.ptr; _emscripten_bind_SIGSurface_setChaparralFuelType_1(self, chaparralFuelType); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setChaparralTotalFuelLoad'] = SIGSurface.prototype.setChaparralTotalFuelLoad = function(chaparralTotalFuelLoad, fuelLoadUnits) { +SIGSurface.prototype['setChaparralTotalFuelLoad'] = SIGSurface.prototype.setChaparralTotalFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(chaparralTotalFuelLoad, fuelLoadUnits) { var self = this.ptr; if (chaparralTotalFuelLoad && typeof chaparralTotalFuelLoad === 'object') chaparralTotalFuelLoad = chaparralTotalFuelLoad.ptr; if (fuelLoadUnits && typeof fuelLoadUnits === 'object') fuelLoadUnits = fuelLoadUnits.ptr; _emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2(self, chaparralTotalFuelLoad, fuelLoadUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setCrownRatio'] = SIGSurface.prototype.setCrownRatio = function(crownRatio, crownRatioUnits) { +SIGSurface.prototype['setCrownRatio'] = SIGSurface.prototype.setCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatio, crownRatioUnits) { var self = this.ptr; if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGSurface_setCrownRatio_2(self, crownRatio, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setDirectionOfInterest'] = SIGSurface.prototype.setDirectionOfInterest = function(directionOfInterest) { +SIGSurface.prototype['setDirectionOfInterest'] = SIGSurface.prototype.setDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(directionOfInterest) { var self = this.ptr; if (directionOfInterest && typeof directionOfInterest === 'object') directionOfInterest = directionOfInterest.ptr; _emscripten_bind_SIGSurface_setDirectionOfInterest_1(self, directionOfInterest); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setElapsedTime'] = SIGSurface.prototype.setElapsedTime = function(elapsedTime, timeUnits) { +SIGSurface.prototype['setElapsedTime'] = SIGSurface.prototype.setElapsedTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elapsedTime, timeUnits) { var self = this.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; _emscripten_bind_SIGSurface_setElapsedTime_2(self, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setFirstFuelModelNumber'] = SIGSurface.prototype.setFirstFuelModelNumber = function(firstFuelModelNumber) { +SIGSurface.prototype['setFirstFuelModelNumber'] = SIGSurface.prototype.setFirstFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firstFuelModelNumber) { var self = this.ptr; if (firstFuelModelNumber && typeof firstFuelModelNumber === 'object') firstFuelModelNumber = firstFuelModelNumber.ptr; _emscripten_bind_SIGSurface_setFirstFuelModelNumber_1(self, firstFuelModelNumber); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setFuelModels'] = SIGSurface.prototype.setFuelModels = function(fuelModels) { +SIGSurface.prototype['setFuelModels'] = SIGSurface.prototype.setFuelModels = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModels) { var self = this.ptr; if (fuelModels && typeof fuelModels === 'object') fuelModels = fuelModels.ptr; _emscripten_bind_SIGSurface_setFuelModels_1(self, fuelModels); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setHeightOfUnderstory'] = SIGSurface.prototype.setHeightOfUnderstory = function(heightOfUnderstory, heightUnits) { +SIGSurface.prototype['setHeightOfUnderstory'] = SIGSurface.prototype.setHeightOfUnderstory = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heightOfUnderstory, heightUnits) { var self = this.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; if (heightUnits && typeof heightUnits === 'object') heightUnits = heightUnits.ptr; _emscripten_bind_SIGSurface_setHeightOfUnderstory_2(self, heightOfUnderstory, heightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setIsUsingChaparral'] = SIGSurface.prototype.setIsUsingChaparral = function(isUsingChaparral) { +SIGSurface.prototype['setIsUsingChaparral'] = SIGSurface.prototype.setIsUsingChaparral = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isUsingChaparral) { var self = this.ptr; if (isUsingChaparral && typeof isUsingChaparral === 'object') isUsingChaparral = isUsingChaparral.ptr; _emscripten_bind_SIGSurface_setIsUsingChaparral_1(self, isUsingChaparral); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setIsUsingPalmettoGallberry'] = SIGSurface.prototype.setIsUsingPalmettoGallberry = function(isUsingPalmettoGallberry) { +SIGSurface.prototype['setIsUsingPalmettoGallberry'] = SIGSurface.prototype.setIsUsingPalmettoGallberry = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isUsingPalmettoGallberry) { var self = this.ptr; if (isUsingPalmettoGallberry && typeof isUsingPalmettoGallberry === 'object') isUsingPalmettoGallberry = isUsingPalmettoGallberry.ptr; _emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1(self, isUsingPalmettoGallberry); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setIsUsingWesternAspen'] = SIGSurface.prototype.setIsUsingWesternAspen = function(isUsingWesternAspen) { +SIGSurface.prototype['setIsUsingWesternAspen'] = SIGSurface.prototype.setIsUsingWesternAspen = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isUsingWesternAspen) { var self = this.ptr; if (isUsingWesternAspen && typeof isUsingWesternAspen === 'object') isUsingWesternAspen = isUsingWesternAspen.ptr; _emscripten_bind_SIGSurface_setIsUsingWesternAspen_1(self, isUsingWesternAspen); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureDeadAggregate'] = SIGSurface.prototype.setMoistureDeadAggregate = function(moistureDead, moistureUnits) { +SIGSurface.prototype['setMoistureDeadAggregate'] = SIGSurface.prototype.setMoistureDeadAggregate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureDead, moistureUnits) { var self = this.ptr; if (moistureDead && typeof moistureDead === 'object') moistureDead = moistureDead.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureDeadAggregate_2(self, moistureDead, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureHundredHour'] = SIGSurface.prototype.setMoistureHundredHour = function(moistureHundredHour, moistureUnits) { +SIGSurface.prototype['setMoistureHundredHour'] = SIGSurface.prototype.setMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureHundredHour, moistureUnits) { var self = this.ptr; if (moistureHundredHour && typeof moistureHundredHour === 'object') moistureHundredHour = moistureHundredHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureHundredHour_2(self, moistureHundredHour, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureInputMode'] = SIGSurface.prototype.setMoistureInputMode = function(moistureInputMode) { +SIGSurface.prototype['setMoistureInputMode'] = SIGSurface.prototype.setMoistureInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureInputMode) { var self = this.ptr; if (moistureInputMode && typeof moistureInputMode === 'object') moistureInputMode = moistureInputMode.ptr; _emscripten_bind_SIGSurface_setMoistureInputMode_1(self, moistureInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureLiveAggregate'] = SIGSurface.prototype.setMoistureLiveAggregate = function(moistureLive, moistureUnits) { +SIGSurface.prototype['setMoistureLiveAggregate'] = SIGSurface.prototype.setMoistureLiveAggregate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLive, moistureUnits) { var self = this.ptr; if (moistureLive && typeof moistureLive === 'object') moistureLive = moistureLive.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureLiveAggregate_2(self, moistureLive, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureLiveHerbaceous'] = SIGSurface.prototype.setMoistureLiveHerbaceous = function(moistureLiveHerbaceous, moistureUnits) { +SIGSurface.prototype['setMoistureLiveHerbaceous'] = SIGSurface.prototype.setMoistureLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLiveHerbaceous, moistureUnits) { var self = this.ptr; if (moistureLiveHerbaceous && typeof moistureLiveHerbaceous === 'object') moistureLiveHerbaceous = moistureLiveHerbaceous.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2(self, moistureLiveHerbaceous, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureLiveWoody'] = SIGSurface.prototype.setMoistureLiveWoody = function(moistureLiveWoody, moistureUnits) { +SIGSurface.prototype['setMoistureLiveWoody'] = SIGSurface.prototype.setMoistureLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLiveWoody, moistureUnits) { var self = this.ptr; if (moistureLiveWoody && typeof moistureLiveWoody === 'object') moistureLiveWoody = moistureLiveWoody.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureLiveWoody_2(self, moistureLiveWoody, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureOneHour'] = SIGSurface.prototype.setMoistureOneHour = function(moistureOneHour, moistureUnits) { +SIGSurface.prototype['setMoistureOneHour'] = SIGSurface.prototype.setMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureUnits) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureOneHour_2(self, moistureOneHour, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureScenarios'] = SIGSurface.prototype.setMoistureScenarios = function(moistureScenarios) { +SIGSurface.prototype['setMoistureScenarios'] = SIGSurface.prototype.setMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarios) { var self = this.ptr; if (moistureScenarios && typeof moistureScenarios === 'object') moistureScenarios = moistureScenarios.ptr; _emscripten_bind_SIGSurface_setMoistureScenarios_1(self, moistureScenarios); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureTenHour'] = SIGSurface.prototype.setMoistureTenHour = function(moistureTenHour, moistureUnits) { +SIGSurface.prototype['setMoistureTenHour'] = SIGSurface.prototype.setMoistureTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureTenHour, moistureUnits) { var self = this.ptr; if (moistureTenHour && typeof moistureTenHour === 'object') moistureTenHour = moistureTenHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureTenHour_2(self, moistureTenHour, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setOverstoryBasalArea'] = SIGSurface.prototype.setOverstoryBasalArea = function(overstoryBasalArea, basalAreaUnits) { +SIGSurface.prototype['setOverstoryBasalArea'] = SIGSurface.prototype.setOverstoryBasalArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(overstoryBasalArea, basalAreaUnits) { var self = this.ptr; if (overstoryBasalArea && typeof overstoryBasalArea === 'object') overstoryBasalArea = overstoryBasalArea.ptr; if (basalAreaUnits && typeof basalAreaUnits === 'object') basalAreaUnits = basalAreaUnits.ptr; _emscripten_bind_SIGSurface_setOverstoryBasalArea_2(self, overstoryBasalArea, basalAreaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setPalmettoCoverage'] = SIGSurface.prototype.setPalmettoCoverage = function(palmettoCoverage, coverUnits) { +SIGSurface.prototype['setPalmettoCoverage'] = SIGSurface.prototype.setPalmettoCoverage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(palmettoCoverage, coverUnits) { var self = this.ptr; if (palmettoCoverage && typeof palmettoCoverage === 'object') palmettoCoverage = palmettoCoverage.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; _emscripten_bind_SIGSurface_setPalmettoCoverage_2(self, palmettoCoverage, coverUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setSecondFuelModelNumber'] = SIGSurface.prototype.setSecondFuelModelNumber = function(secondFuelModelNumber) { +SIGSurface.prototype['setSecondFuelModelNumber'] = SIGSurface.prototype.setSecondFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(secondFuelModelNumber) { var self = this.ptr; if (secondFuelModelNumber && typeof secondFuelModelNumber === 'object') secondFuelModelNumber = secondFuelModelNumber.ptr; _emscripten_bind_SIGSurface_setSecondFuelModelNumber_1(self, secondFuelModelNumber); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setSlope'] = SIGSurface.prototype.setSlope = function(slope, slopeUnits) { +SIGSurface.prototype['setSlope'] = SIGSurface.prototype.setSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slope, slopeUnits) { var self = this.ptr; if (slope && typeof slope === 'object') slope = slope.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; _emscripten_bind_SIGSurface_setSlope_2(self, slope, slopeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setSurfaceFireSpreadDirectionMode'] = SIGSurface.prototype.setSurfaceFireSpreadDirectionMode = function(directionMode) { +SIGSurface.prototype['setSurfaceFireSpreadDirectionMode'] = SIGSurface.prototype.setSurfaceFireSpreadDirectionMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(directionMode) { var self = this.ptr; if (directionMode && typeof directionMode === 'object') directionMode = directionMode.ptr; _emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1(self, directionMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setSurfaceRunInDirectionOf'] = SIGSurface.prototype.setSurfaceRunInDirectionOf = function(surfaceRunInDirectionOf) { +SIGSurface.prototype['setSurfaceRunInDirectionOf'] = SIGSurface.prototype.setSurfaceRunInDirectionOf = /** @suppress {undefinedVars, duplicate} @this{Object} */function(surfaceRunInDirectionOf) { var self = this.ptr; if (surfaceRunInDirectionOf && typeof surfaceRunInDirectionOf === 'object') surfaceRunInDirectionOf = surfaceRunInDirectionOf.ptr; _emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1(self, surfaceRunInDirectionOf); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setTwoFuelModelsFirstFuelModelCoverage'] = SIGSurface.prototype.setTwoFuelModelsFirstFuelModelCoverage = function(firstFuelModelCoverage, coverUnits) { +SIGSurface.prototype['setTwoFuelModelsFirstFuelModelCoverage'] = SIGSurface.prototype.setTwoFuelModelsFirstFuelModelCoverage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firstFuelModelCoverage, coverUnits) { var self = this.ptr; if (firstFuelModelCoverage && typeof firstFuelModelCoverage === 'object') firstFuelModelCoverage = firstFuelModelCoverage.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; _emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2(self, firstFuelModelCoverage, coverUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setTwoFuelModelsMethod'] = SIGSurface.prototype.setTwoFuelModelsMethod = function(twoFuelModelsMethod) { +SIGSurface.prototype['setTwoFuelModelsMethod'] = SIGSurface.prototype.setTwoFuelModelsMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function(twoFuelModelsMethod) { var self = this.ptr; if (twoFuelModelsMethod && typeof twoFuelModelsMethod === 'object') twoFuelModelsMethod = twoFuelModelsMethod.ptr; _emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1(self, twoFuelModelsMethod); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setUserProvidedWindAdjustmentFactor'] = SIGSurface.prototype.setUserProvidedWindAdjustmentFactor = function(userProvidedWindAdjustmentFactor) { +SIGSurface.prototype['setUserProvidedWindAdjustmentFactor'] = SIGSurface.prototype.setUserProvidedWindAdjustmentFactor = /** @suppress {undefinedVars, duplicate} @this{Object} */function(userProvidedWindAdjustmentFactor) { var self = this.ptr; if (userProvidedWindAdjustmentFactor && typeof userProvidedWindAdjustmentFactor === 'object') userProvidedWindAdjustmentFactor = userProvidedWindAdjustmentFactor.ptr; _emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1(self, userProvidedWindAdjustmentFactor); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setWindAdjustmentFactorCalculationMethod'] = SIGSurface.prototype.setWindAdjustmentFactorCalculationMethod = function(windAdjustmentFactorCalculationMethod) { +SIGSurface.prototype['setWindAdjustmentFactorCalculationMethod'] = SIGSurface.prototype.setWindAdjustmentFactorCalculationMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windAdjustmentFactorCalculationMethod) { var self = this.ptr; if (windAdjustmentFactorCalculationMethod && typeof windAdjustmentFactorCalculationMethod === 'object') windAdjustmentFactorCalculationMethod = windAdjustmentFactorCalculationMethod.ptr; _emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1(self, windAdjustmentFactorCalculationMethod); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setWindAndSpreadOrientationMode'] = SIGSurface.prototype.setWindAndSpreadOrientationMode = function(windAndSpreadOrientationMode) { +SIGSurface.prototype['setWindAndSpreadOrientationMode'] = SIGSurface.prototype.setWindAndSpreadOrientationMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windAndSpreadOrientationMode) { var self = this.ptr; if (windAndSpreadOrientationMode && typeof windAndSpreadOrientationMode === 'object') windAndSpreadOrientationMode = windAndSpreadOrientationMode.ptr; _emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1(self, windAndSpreadOrientationMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setWindDirection'] = SIGSurface.prototype.setWindDirection = function(windDirection) { +SIGSurface.prototype['setWindDirection'] = SIGSurface.prototype.setWindDirection = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windDirection) { var self = this.ptr; if (windDirection && typeof windDirection === 'object') windDirection = windDirection.ptr; _emscripten_bind_SIGSurface_setWindDirection_1(self, windDirection); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setWindHeightInputMode'] = SIGSurface.prototype.setWindHeightInputMode = function(windHeightInputMode) { +SIGSurface.prototype['setWindHeightInputMode'] = SIGSurface.prototype.setWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windHeightInputMode) { var self = this.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGSurface_setWindHeightInputMode_1(self, windHeightInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setWindSpeed'] = SIGSurface.prototype.setWindSpeed = function(windSpeed, windSpeedUnits) { +SIGSurface.prototype['setWindSpeed'] = SIGSurface.prototype.setWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSurface_setWindSpeed_2(self, windSpeed, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['updateSurfaceInputs'] = SIGSurface.prototype.updateSurfaceInputs = function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { +SIGSurface.prototype['updateSurfaceInputs'] = SIGSurface.prototype.updateSurfaceInputs = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; @@ -3972,10 +3440,9 @@ SIGSurface.prototype['updateSurfaceInputs'] = SIGSurface.prototype.updateSurface if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGSurface_updateSurfaceInputs_21(self, fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['updateSurfaceInputsForPalmettoGallbery'] = SIGSurface.prototype.updateSurfaceInputsForPalmettoGallbery = function(moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, ageOfRough, heightOfUnderstory, palmettoCoverage, overstoryBasalArea, basalAreaUnits, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { +SIGSurface.prototype['updateSurfaceInputsForPalmettoGallbery'] = SIGSurface.prototype.updateSurfaceInputsForPalmettoGallbery = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, ageOfRough, heightOfUnderstory, palmettoCoverage, overstoryBasalArea, basalAreaUnits, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureTenHour && typeof moistureTenHour === 'object') moistureTenHour = moistureTenHour.ptr; @@ -4003,10 +3470,9 @@ SIGSurface.prototype['updateSurfaceInputsForPalmettoGallbery'] = SIGSurface.prot if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25(self, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, ageOfRough, heightOfUnderstory, palmettoCoverage, overstoryBasalArea, basalAreaUnits, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['updateSurfaceInputsForTwoFuelModels'] = SIGSurface.prototype.updateSurfaceInputsForTwoFuelModels = function(firstFuelModelNumber, secondFuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, firstFuelModelCoverage, firstFuelModelCoverageUnits, twoFuelModelsMethod, slope, slopeUnits, aspect, canopyCover, canopyFractionUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnitso) { +SIGSurface.prototype['updateSurfaceInputsForTwoFuelModels'] = SIGSurface.prototype.updateSurfaceInputsForTwoFuelModels = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firstFuelModelNumber, secondFuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, firstFuelModelCoverage, firstFuelModelCoverageUnits, twoFuelModelsMethod, slope, slopeUnits, aspect, canopyCover, canopyFractionUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnitso) { var self = this.ptr; if (firstFuelModelNumber && typeof firstFuelModelNumber === 'object') firstFuelModelNumber = firstFuelModelNumber.ptr; if (secondFuelModelNumber && typeof secondFuelModelNumber === 'object') secondFuelModelNumber = secondFuelModelNumber.ptr; @@ -4034,10 +3500,9 @@ SIGSurface.prototype['updateSurfaceInputsForTwoFuelModels'] = SIGSurface.prototy if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnitso && typeof crownRatioUnitso === 'object') crownRatioUnitso = crownRatioUnitso.ptr; _emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25(self, firstFuelModelNumber, secondFuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, firstFuelModelCoverage, firstFuelModelCoverageUnits, twoFuelModelsMethod, slope, slopeUnits, aspect, canopyCover, canopyFractionUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnitso); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['updateSurfaceInputsForWesternAspen'] = SIGSurface.prototype.updateSurfaceInputsForWesternAspen = function(aspenFuelModelNumber, aspenCuringLevel, curingLevelUnits, aspenFireSeverity, dbh, dbhUnits, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { +SIGSurface.prototype['updateSurfaceInputsForWesternAspen'] = SIGSurface.prototype.updateSurfaceInputsForWesternAspen = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspenFuelModelNumber, aspenCuringLevel, curingLevelUnits, aspenFireSeverity, dbh, dbhUnits, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { var self = this.ptr; if (aspenFuelModelNumber && typeof aspenFuelModelNumber === 'object') aspenFuelModelNumber = aspenFuelModelNumber.ptr; if (aspenCuringLevel && typeof aspenCuringLevel === 'object') aspenCuringLevel = aspenCuringLevel.ptr; @@ -4066,1101 +3531,942 @@ SIGSurface.prototype['updateSurfaceInputsForWesternAspen'] = SIGSurface.prototyp if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26(self, aspenFuelModelNumber, aspenCuringLevel, curingLevelUnits, aspenFireSeverity, dbh, dbhUnits, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setFuelModelNumber'] = SIGSurface.prototype.setFuelModelNumber = function(fuelModelNumber) { +SIGSurface.prototype['setFuelModelNumber'] = SIGSurface.prototype.setFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; _emscripten_bind_SIGSurface_setFuelModelNumber_1(self, fuelModelNumber); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['__destroy__'] = SIGSurface.prototype.__destroy__ = function() { + SIGSurface.prototype['__destroy__'] = SIGSurface.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSurface___destroy___0(self); }; - -// Interface: PalmettoGallberry - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function PalmettoGallberry() { +// PalmettoGallberry +/** @suppress {undefinedVars, duplicate} @this{Object} */function PalmettoGallberry() { this.ptr = _emscripten_bind_PalmettoGallberry_PalmettoGallberry_0(); getCache(PalmettoGallberry)[this.ptr] = this; -}; - +};; PalmettoGallberry.prototype = Object.create(WrapperObject.prototype); PalmettoGallberry.prototype.constructor = PalmettoGallberry; PalmettoGallberry.prototype.__class__ = PalmettoGallberry; PalmettoGallberry.__cache__ = {}; Module['PalmettoGallberry'] = PalmettoGallberry; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['initializeMembers'] = PalmettoGallberry.prototype.initializeMembers = function() { + +PalmettoGallberry.prototype['initializeMembers'] = PalmettoGallberry.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_PalmettoGallberry_initializeMembers_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['calculatePalmettoGallberyDeadFineFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadFineFuelLoad = function(ageOfRough, heightOfUnderstory) { +PalmettoGallberry.prototype['calculatePalmettoGallberyDeadFineFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, heightOfUnderstory) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2(self, ageOfRough, heightOfUnderstory); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['calculatePalmettoGallberyDeadFoliageLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadFoliageLoad = function(ageOfRough, palmettoCoverage) { +PalmettoGallberry.prototype['calculatePalmettoGallberyDeadFoliageLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, palmettoCoverage) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (palmettoCoverage && typeof palmettoCoverage === 'object') palmettoCoverage = palmettoCoverage.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2(self, ageOfRough, palmettoCoverage); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['calculatePalmettoGallberyDeadMediumFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadMediumFuelLoad = function(ageOfRough, palmettoCoverage) { +PalmettoGallberry.prototype['calculatePalmettoGallberyDeadMediumFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, palmettoCoverage) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (palmettoCoverage && typeof palmettoCoverage === 'object') palmettoCoverage = palmettoCoverage.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2(self, ageOfRough, palmettoCoverage); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['calculatePalmettoGallberyFuelBedDepth'] = PalmettoGallberry.prototype.calculatePalmettoGallberyFuelBedDepth = function(heightOfUnderstory) { +PalmettoGallberry.prototype['calculatePalmettoGallberyFuelBedDepth'] = PalmettoGallberry.prototype.calculatePalmettoGallberyFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heightOfUnderstory) { var self = this.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1(self, heightOfUnderstory); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['calculatePalmettoGallberyLitterLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLitterLoad = function(ageOfRough, overstoryBasalArea) { +PalmettoGallberry.prototype['calculatePalmettoGallberyLitterLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLitterLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, overstoryBasalArea) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (overstoryBasalArea && typeof overstoryBasalArea === 'object') overstoryBasalArea = overstoryBasalArea.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2(self, ageOfRough, overstoryBasalArea); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['calculatePalmettoGallberyLiveFineFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveFineFuelLoad = function(ageOfRough, heightOfUnderstory) { +PalmettoGallberry.prototype['calculatePalmettoGallberyLiveFineFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, heightOfUnderstory) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2(self, ageOfRough, heightOfUnderstory); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['calculatePalmettoGallberyLiveFoliageLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveFoliageLoad = function(ageOfRough, palmettoCoverage, heightOfUnderstory) { +PalmettoGallberry.prototype['calculatePalmettoGallberyLiveFoliageLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, palmettoCoverage, heightOfUnderstory) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (palmettoCoverage && typeof palmettoCoverage === 'object') palmettoCoverage = palmettoCoverage.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3(self, ageOfRough, palmettoCoverage, heightOfUnderstory); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['calculatePalmettoGallberyLiveMediumFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveMediumFuelLoad = function(ageOfRough, heightOfUnderstory) { +PalmettoGallberry.prototype['calculatePalmettoGallberyLiveMediumFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, heightOfUnderstory) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2(self, ageOfRough, heightOfUnderstory); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getHeatOfCombustionDead'] = PalmettoGallberry.prototype.getHeatOfCombustionDead = function() { +PalmettoGallberry.prototype['getHeatOfCombustionDead'] = PalmettoGallberry.prototype.getHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getHeatOfCombustionLive'] = PalmettoGallberry.prototype.getHeatOfCombustionLive = function() { +PalmettoGallberry.prototype['getHeatOfCombustionLive'] = PalmettoGallberry.prototype.getHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getMoistureOfExtinctionDead'] = PalmettoGallberry.prototype.getMoistureOfExtinctionDead = function() { +PalmettoGallberry.prototype['getMoistureOfExtinctionDead'] = PalmettoGallberry.prototype.getMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getPalmettoGallberyDeadFineFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadFineFuelLoad = function() { +PalmettoGallberry.prototype['getPalmettoGallberyDeadFineFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getPalmettoGallberyDeadFoliageLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadFoliageLoad = function() { +PalmettoGallberry.prototype['getPalmettoGallberyDeadFoliageLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getPalmettoGallberyDeadMediumFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadMediumFuelLoad = function() { +PalmettoGallberry.prototype['getPalmettoGallberyDeadMediumFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getPalmettoGallberyFuelBedDepth'] = PalmettoGallberry.prototype.getPalmettoGallberyFuelBedDepth = function() { +PalmettoGallberry.prototype['getPalmettoGallberyFuelBedDepth'] = PalmettoGallberry.prototype.getPalmettoGallberyFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getPalmettoGallberyLitterLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLitterLoad = function() { +PalmettoGallberry.prototype['getPalmettoGallberyLitterLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLitterLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getPalmettoGallberyLiveFineFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveFineFuelLoad = function() { +PalmettoGallberry.prototype['getPalmettoGallberyLiveFineFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getPalmettoGallberyLiveFoliageLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveFoliageLoad = function() { +PalmettoGallberry.prototype['getPalmettoGallberyLiveFoliageLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getPalmettoGallberyLiveMediumFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveMediumFuelLoad = function() { +PalmettoGallberry.prototype['getPalmettoGallberyLiveMediumFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0(self); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['__destroy__'] = PalmettoGallberry.prototype.__destroy__ = function() { + PalmettoGallberry.prototype['__destroy__'] = PalmettoGallberry.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_PalmettoGallberry___destroy___0(self); }; - -// Interface: WesternAspen - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function WesternAspen() { +// WesternAspen +/** @suppress {undefinedVars, duplicate} @this{Object} */function WesternAspen() { this.ptr = _emscripten_bind_WesternAspen_WesternAspen_0(); getCache(WesternAspen)[this.ptr] = this; -}; - +};; WesternAspen.prototype = Object.create(WrapperObject.prototype); WesternAspen.prototype.constructor = WesternAspen; WesternAspen.prototype.__class__ = WesternAspen; WesternAspen.__cache__ = {}; Module['WesternAspen'] = WesternAspen; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['initializeMembers'] = WesternAspen.prototype.initializeMembers = function() { + +WesternAspen.prototype['initializeMembers'] = WesternAspen.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_WesternAspen_initializeMembers_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['calculateAspenMortality'] = WesternAspen.prototype.calculateAspenMortality = function(severity, flameLength, DBH) { +WesternAspen.prototype['calculateAspenMortality'] = WesternAspen.prototype.calculateAspenMortality = /** @suppress {undefinedVars, duplicate} @this{Object} */function(severity, flameLength, DBH) { var self = this.ptr; if (severity && typeof severity === 'object') severity = severity.ptr; if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (DBH && typeof DBH === 'object') DBH = DBH.ptr; return _emscripten_bind_WesternAspen_calculateAspenMortality_3(self, severity, flameLength, DBH); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenFuelBedDepth'] = WesternAspen.prototype.getAspenFuelBedDepth = function(typeIndex) { +WesternAspen.prototype['getAspenFuelBedDepth'] = WesternAspen.prototype.getAspenFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(typeIndex) { var self = this.ptr; if (typeIndex && typeof typeIndex === 'object') typeIndex = typeIndex.ptr; return _emscripten_bind_WesternAspen_getAspenFuelBedDepth_1(self, typeIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenHeatOfCombustionDead'] = WesternAspen.prototype.getAspenHeatOfCombustionDead = function() { +WesternAspen.prototype['getAspenHeatOfCombustionDead'] = WesternAspen.prototype.getAspenHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenHeatOfCombustionLive'] = WesternAspen.prototype.getAspenHeatOfCombustionLive = function() { +WesternAspen.prototype['getAspenHeatOfCombustionLive'] = WesternAspen.prototype.getAspenHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenLoadDeadOneHour'] = WesternAspen.prototype.getAspenLoadDeadOneHour = function() { +WesternAspen.prototype['getAspenLoadDeadOneHour'] = WesternAspen.prototype.getAspenLoadDeadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenLoadDeadTenHour'] = WesternAspen.prototype.getAspenLoadDeadTenHour = function() { +WesternAspen.prototype['getAspenLoadDeadTenHour'] = WesternAspen.prototype.getAspenLoadDeadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenLoadLiveHerbaceous'] = WesternAspen.prototype.getAspenLoadLiveHerbaceous = function() { +WesternAspen.prototype['getAspenLoadLiveHerbaceous'] = WesternAspen.prototype.getAspenLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenLoadLiveWoody'] = WesternAspen.prototype.getAspenLoadLiveWoody = function() { +WesternAspen.prototype['getAspenLoadLiveWoody'] = WesternAspen.prototype.getAspenLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenMoistureOfExtinctionDead'] = WesternAspen.prototype.getAspenMoistureOfExtinctionDead = function() { +WesternAspen.prototype['getAspenMoistureOfExtinctionDead'] = WesternAspen.prototype.getAspenMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenMortality'] = WesternAspen.prototype.getAspenMortality = function() { +WesternAspen.prototype['getAspenMortality'] = WesternAspen.prototype.getAspenMortality = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenMortality_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenSavrDeadOneHour'] = WesternAspen.prototype.getAspenSavrDeadOneHour = function() { +WesternAspen.prototype['getAspenSavrDeadOneHour'] = WesternAspen.prototype.getAspenSavrDeadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenSavrDeadTenHour'] = WesternAspen.prototype.getAspenSavrDeadTenHour = function() { +WesternAspen.prototype['getAspenSavrDeadTenHour'] = WesternAspen.prototype.getAspenSavrDeadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenSavrLiveHerbaceous'] = WesternAspen.prototype.getAspenSavrLiveHerbaceous = function() { +WesternAspen.prototype['getAspenSavrLiveHerbaceous'] = WesternAspen.prototype.getAspenSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenSavrLiveWoody'] = WesternAspen.prototype.getAspenSavrLiveWoody = function() { +WesternAspen.prototype['getAspenSavrLiveWoody'] = WesternAspen.prototype.getAspenSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0(self); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['__destroy__'] = WesternAspen.prototype.__destroy__ = function() { + WesternAspen.prototype['__destroy__'] = WesternAspen.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_WesternAspen___destroy___0(self); }; - -// Interface: SIGCrown - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGCrown(fuelModels) { +// SIGCrown +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGCrown(fuelModels) { if (fuelModels && typeof fuelModels === 'object') fuelModels = fuelModels.ptr; this.ptr = _emscripten_bind_SIGCrown_SIGCrown_1(fuelModels); getCache(SIGCrown)[this.ptr] = this; -}; - +};; SIGCrown.prototype = Object.create(WrapperObject.prototype); SIGCrown.prototype.constructor = SIGCrown; SIGCrown.prototype.__class__ = SIGCrown; SIGCrown.__cache__ = {}; Module['SIGCrown'] = SIGCrown; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFireType'] = SIGCrown.prototype.getFireType = function() { + +SIGCrown.prototype['getFireType'] = SIGCrown.prototype.getFireType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getFireType_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGCrown.prototype.getIsMoistureScenarioDefinedByIndex = function(index) { +SIGCrown.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGCrown.prototype.getIsMoistureScenarioDefinedByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return !!(_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getIsMoistureScenarioDefinedByName'] = SIGCrown.prototype.getIsMoistureScenarioDefinedByName = function(name) { +SIGCrown.prototype['getIsMoistureScenarioDefinedByName'] = SIGCrown.prototype.getIsMoistureScenarioDefinedByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return !!(_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1(self, name)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['isAllFuelLoadZero'] = SIGCrown.prototype.isAllFuelLoadZero = function(fuelModelNumber) { +SIGCrown.prototype['isAllFuelLoadZero'] = SIGCrown.prototype.isAllFuelLoadZero = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGCrown_isAllFuelLoadZero_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['isFuelDynamic'] = SIGCrown.prototype.isFuelDynamic = function(fuelModelNumber) { +SIGCrown.prototype['isFuelDynamic'] = SIGCrown.prototype.isFuelDynamic = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGCrown_isFuelDynamic_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['isFuelModelDefined'] = SIGCrown.prototype.isFuelModelDefined = function(fuelModelNumber) { +SIGCrown.prototype['isFuelModelDefined'] = SIGCrown.prototype.isFuelModelDefined = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGCrown_isFuelModelDefined_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['isFuelModelReserved'] = SIGCrown.prototype.isFuelModelReserved = function(fuelModelNumber) { +SIGCrown.prototype['isFuelModelReserved'] = SIGCrown.prototype.isFuelModelReserved = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGCrown_isFuelModelReserved_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setCurrentMoistureScenarioByIndex'] = SIGCrown.prototype.setCurrentMoistureScenarioByIndex = function(moistureScenarioIndex) { +SIGCrown.prototype['setCurrentMoistureScenarioByIndex'] = SIGCrown.prototype.setCurrentMoistureScenarioByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarioIndex) { var self = this.ptr; if (moistureScenarioIndex && typeof moistureScenarioIndex === 'object') moistureScenarioIndex = moistureScenarioIndex.ptr; return !!(_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1(self, moistureScenarioIndex)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setCurrentMoistureScenarioByName'] = SIGCrown.prototype.setCurrentMoistureScenarioByName = function(moistureScenarioName) { +SIGCrown.prototype['setCurrentMoistureScenarioByName'] = SIGCrown.prototype.setCurrentMoistureScenarioByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarioName) { var self = this.ptr; ensureCache.prepare(); if (moistureScenarioName && typeof moistureScenarioName === 'object') moistureScenarioName = moistureScenarioName.ptr; else moistureScenarioName = ensureString(moistureScenarioName); return !!(_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1(self, moistureScenarioName)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getAspect'] = SIGCrown.prototype.getAspect = function() { +SIGCrown.prototype['getAspect'] = SIGCrown.prototype.getAspect = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getAspect_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCanopyBaseHeight'] = SIGCrown.prototype.getCanopyBaseHeight = function(canopyHeightUnits) { +SIGCrown.prototype['getCanopyBaseHeight'] = SIGCrown.prototype.getCanopyBaseHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeightUnits) { var self = this.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; return _emscripten_bind_SIGCrown_getCanopyBaseHeight_1(self, canopyHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCanopyBulkDensity'] = SIGCrown.prototype.getCanopyBulkDensity = function(canopyBulkDensityUnits) { +SIGCrown.prototype['getCanopyBulkDensity'] = SIGCrown.prototype.getCanopyBulkDensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyBulkDensityUnits) { var self = this.ptr; if (canopyBulkDensityUnits && typeof canopyBulkDensityUnits === 'object') canopyBulkDensityUnits = canopyBulkDensityUnits.ptr; return _emscripten_bind_SIGCrown_getCanopyBulkDensity_1(self, canopyBulkDensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCanopyCover'] = SIGCrown.prototype.getCanopyCover = function(canopyFractionUnits) { +SIGCrown.prototype['getCanopyCover'] = SIGCrown.prototype.getCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyFractionUnits) { var self = this.ptr; if (canopyFractionUnits && typeof canopyFractionUnits === 'object') canopyFractionUnits = canopyFractionUnits.ptr; return _emscripten_bind_SIGCrown_getCanopyCover_1(self, canopyFractionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCanopyHeight'] = SIGCrown.prototype.getCanopyHeight = function(canopyHeighUnits) { +SIGCrown.prototype['getCanopyHeight'] = SIGCrown.prototype.getCanopyHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeighUnits) { var self = this.ptr; if (canopyHeighUnits && typeof canopyHeighUnits === 'object') canopyHeighUnits = canopyHeighUnits.ptr; return _emscripten_bind_SIGCrown_getCanopyHeight_1(self, canopyHeighUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCriticalOpenWindSpeed'] = SIGCrown.prototype.getCriticalOpenWindSpeed = function(speedUnits) { +SIGCrown.prototype['getCriticalOpenWindSpeed'] = SIGCrown.prototype.getCriticalOpenWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speedUnits) { var self = this.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; return _emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1(self, speedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownCriticalFireSpreadRate'] = SIGCrown.prototype.getCrownCriticalFireSpreadRate = function(spreadRateUnits) { +SIGCrown.prototype['getCrownCriticalFireSpreadRate'] = SIGCrown.prototype.getCrownCriticalFireSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownCriticalSurfaceFirelineIntensity'] = SIGCrown.prototype.getCrownCriticalSurfaceFirelineIntensity = function(firelineIntensityUnits) { +SIGCrown.prototype['getCrownCriticalSurfaceFirelineIntensity'] = SIGCrown.prototype.getCrownCriticalSurfaceFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1(self, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownCriticalSurfaceFlameLength'] = SIGCrown.prototype.getCrownCriticalSurfaceFlameLength = function(flameLengthUnits) { +SIGCrown.prototype['getCrownCriticalSurfaceFlameLength'] = SIGCrown.prototype.getCrownCriticalSurfaceFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1(self, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFireActiveRatio'] = SIGCrown.prototype.getCrownFireActiveRatio = function() { +SIGCrown.prototype['getCrownFireActiveRatio'] = SIGCrown.prototype.getCrownFireActiveRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getCrownFireActiveRatio_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFireArea'] = SIGCrown.prototype.getCrownFireArea = function(areaUnits) { +SIGCrown.prototype['getCrownFireArea'] = SIGCrown.prototype.getCrownFireArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFireArea_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFirePerimeter'] = SIGCrown.prototype.getCrownFirePerimeter = function(lengthUnits) { +SIGCrown.prototype['getCrownFirePerimeter'] = SIGCrown.prototype.getCrownFirePerimeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFirePerimeter_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownTransitionRatio'] = SIGCrown.prototype.getCrownTransitionRatio = function() { +SIGCrown.prototype['getCrownTransitionRatio'] = SIGCrown.prototype.getCrownTransitionRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getCrownTransitionRatio_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFireLengthToWidthRatio'] = SIGCrown.prototype.getCrownFireLengthToWidthRatio = function() { +SIGCrown.prototype['getCrownFireLengthToWidthRatio'] = SIGCrown.prototype.getCrownFireLengthToWidthRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFireSpreadDistance'] = SIGCrown.prototype.getCrownFireSpreadDistance = function(lengthUnits) { +SIGCrown.prototype['getCrownFireSpreadDistance'] = SIGCrown.prototype.getCrownFireSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFireSpreadRate'] = SIGCrown.prototype.getCrownFireSpreadRate = function(spreadRateUnits) { +SIGCrown.prototype['getCrownFireSpreadRate'] = SIGCrown.prototype.getCrownFireSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFireSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFirelineIntensity'] = SIGCrown.prototype.getCrownFirelineIntensity = function(firelineIntensityUnits) { +SIGCrown.prototype['getCrownFirelineIntensity'] = SIGCrown.prototype.getCrownFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFirelineIntensity_1(self, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFlameLength'] = SIGCrown.prototype.getCrownFlameLength = function(flameLengthUnits) { +SIGCrown.prototype['getCrownFlameLength'] = SIGCrown.prototype.getCrownFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFlameLength_1(self, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFractionBurned'] = SIGCrown.prototype.getCrownFractionBurned = function() { +SIGCrown.prototype['getCrownFractionBurned'] = SIGCrown.prototype.getCrownFractionBurned = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getCrownFractionBurned_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownRatio'] = SIGCrown.prototype.getCrownRatio = function(crownRatioUnits) { +SIGCrown.prototype['getCrownRatio'] = SIGCrown.prototype.getCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatioUnits) { var self = this.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; return _emscripten_bind_SIGCrown_getCrownRatio_1(self, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFinalFirelineIntesity'] = SIGCrown.prototype.getFinalFirelineIntesity = function(firelineIntensityUnits) { +SIGCrown.prototype['getFinalFirelineIntesity'] = SIGCrown.prototype.getFinalFirelineIntesity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGCrown_getFinalFirelineIntesity_1(self, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFinalHeatPerUnitArea'] = SIGCrown.prototype.getFinalHeatPerUnitArea = function(heatPerUnitAreaUnits) { +SIGCrown.prototype['getFinalHeatPerUnitArea'] = SIGCrown.prototype.getFinalHeatPerUnitArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatPerUnitAreaUnits) { var self = this.ptr; if (heatPerUnitAreaUnits && typeof heatPerUnitAreaUnits === 'object') heatPerUnitAreaUnits = heatPerUnitAreaUnits.ptr; return _emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1(self, heatPerUnitAreaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFinalSpreadRate'] = SIGCrown.prototype.getFinalSpreadRate = function(spreadRateUnits) { +SIGCrown.prototype['getFinalSpreadRate'] = SIGCrown.prototype.getFinalSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGCrown_getFinalSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFinalSpreadDistance'] = SIGCrown.prototype.getFinalSpreadDistance = function(lengthUnits) { +SIGCrown.prototype['getFinalSpreadDistance'] = SIGCrown.prototype.getFinalSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getFinalSpreadDistance_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFinalFireArea'] = SIGCrown.prototype.getFinalFireArea = function(areaUnits) { +SIGCrown.prototype['getFinalFireArea'] = SIGCrown.prototype.getFinalFireArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGCrown_getFinalFireArea_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFinalFirePerimeter'] = SIGCrown.prototype.getFinalFirePerimeter = function(lengthUnits) { +SIGCrown.prototype['getFinalFirePerimeter'] = SIGCrown.prototype.getFinalFirePerimeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getFinalFirePerimeter_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelHeatOfCombustionDead'] = SIGCrown.prototype.getFuelHeatOfCombustionDead = function(fuelModelNumber, heatOfCombustionUnits) { +SIGCrown.prototype['getFuelHeatOfCombustionDead'] = SIGCrown.prototype.getFuelHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2(self, fuelModelNumber, heatOfCombustionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelHeatOfCombustionLive'] = SIGCrown.prototype.getFuelHeatOfCombustionLive = function(fuelModelNumber, heatOfCombustionUnits) { +SIGCrown.prototype['getFuelHeatOfCombustionLive'] = SIGCrown.prototype.getFuelHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2(self, fuelModelNumber, heatOfCombustionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelLoadHundredHour'] = SIGCrown.prototype.getFuelLoadHundredHour = function(fuelModelNumber, loadingUnits) { +SIGCrown.prototype['getFuelLoadHundredHour'] = SIGCrown.prototype.getFuelLoadHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadHundredHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelLoadLiveHerbaceous'] = SIGCrown.prototype.getFuelLoadLiveHerbaceous = function(fuelModelNumber, loadingUnits) { +SIGCrown.prototype['getFuelLoadLiveHerbaceous'] = SIGCrown.prototype.getFuelLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelLoadLiveWoody'] = SIGCrown.prototype.getFuelLoadLiveWoody = function(fuelModelNumber, loadingUnits) { +SIGCrown.prototype['getFuelLoadLiveWoody'] = SIGCrown.prototype.getFuelLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelLoadOneHour'] = SIGCrown.prototype.getFuelLoadOneHour = function(fuelModelNumber, loadingUnits) { +SIGCrown.prototype['getFuelLoadOneHour'] = SIGCrown.prototype.getFuelLoadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadOneHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelLoadTenHour'] = SIGCrown.prototype.getFuelLoadTenHour = function(fuelModelNumber, loadingUnits) { +SIGCrown.prototype['getFuelLoadTenHour'] = SIGCrown.prototype.getFuelLoadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadTenHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelMoistureOfExtinctionDead'] = SIGCrown.prototype.getFuelMoistureOfExtinctionDead = function(fuelModelNumber, moistureUnits) { +SIGCrown.prototype['getFuelMoistureOfExtinctionDead'] = SIGCrown.prototype.getFuelMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2(self, fuelModelNumber, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelSavrLiveHerbaceous'] = SIGCrown.prototype.getFuelSavrLiveHerbaceous = function(fuelModelNumber, savrUnits) { +SIGCrown.prototype['getFuelSavrLiveHerbaceous'] = SIGCrown.prototype.getFuelSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelSavrLiveWoody'] = SIGCrown.prototype.getFuelSavrLiveWoody = function(fuelModelNumber, savrUnits) { +SIGCrown.prototype['getFuelSavrLiveWoody'] = SIGCrown.prototype.getFuelSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelSavrOneHour'] = SIGCrown.prototype.getFuelSavrOneHour = function(fuelModelNumber, savrUnits) { +SIGCrown.prototype['getFuelSavrOneHour'] = SIGCrown.prototype.getFuelSavrOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGCrown_getFuelSavrOneHour_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelbedDepth'] = SIGCrown.prototype.getFuelbedDepth = function(fuelModelNumber, lengthUnits) { +SIGCrown.prototype['getFuelbedDepth'] = SIGCrown.prototype.getFuelbedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, lengthUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getFuelbedDepth_2(self, fuelModelNumber, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureFoliar'] = SIGCrown.prototype.getMoistureFoliar = function(moistureUnits) { +SIGCrown.prototype['getMoistureFoliar'] = SIGCrown.prototype.getMoistureFoliar = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureFoliar_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureHundredHour'] = SIGCrown.prototype.getMoistureHundredHour = function(moistureUnits) { +SIGCrown.prototype['getMoistureHundredHour'] = SIGCrown.prototype.getMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureHundredHour_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureLiveHerbaceous'] = SIGCrown.prototype.getMoistureLiveHerbaceous = function(moistureUnits) { +SIGCrown.prototype['getMoistureLiveHerbaceous'] = SIGCrown.prototype.getMoistureLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureLiveWoody'] = SIGCrown.prototype.getMoistureLiveWoody = function(moistureUnits) { +SIGCrown.prototype['getMoistureLiveWoody'] = SIGCrown.prototype.getMoistureLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureLiveWoody_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureOneHour'] = SIGCrown.prototype.getMoistureOneHour = function(moistureUnits) { +SIGCrown.prototype['getMoistureOneHour'] = SIGCrown.prototype.getMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureOneHour_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioHundredHourByIndex'] = SIGCrown.prototype.getMoistureScenarioHundredHourByIndex = function(index, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioHundredHourByIndex'] = SIGCrown.prototype.getMoistureScenarioHundredHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioHundredHourByName'] = SIGCrown.prototype.getMoistureScenarioHundredHourByName = function(name, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioHundredHourByName'] = SIGCrown.prototype.getMoistureScenarioHundredHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGCrown.prototype.getMoistureScenarioLiveHerbaceousByIndex = function(index, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGCrown.prototype.getMoistureScenarioLiveHerbaceousByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGCrown.prototype.getMoistureScenarioLiveHerbaceousByName = function(name, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGCrown.prototype.getMoistureScenarioLiveHerbaceousByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGCrown.prototype.getMoistureScenarioLiveWoodyByIndex = function(index, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGCrown.prototype.getMoistureScenarioLiveWoodyByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioLiveWoodyByName'] = SIGCrown.prototype.getMoistureScenarioLiveWoodyByName = function(name, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioLiveWoodyByName'] = SIGCrown.prototype.getMoistureScenarioLiveWoodyByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioOneHourByIndex'] = SIGCrown.prototype.getMoistureScenarioOneHourByIndex = function(index, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioOneHourByIndex'] = SIGCrown.prototype.getMoistureScenarioOneHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioOneHourByName'] = SIGCrown.prototype.getMoistureScenarioOneHourByName = function(name, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioOneHourByName'] = SIGCrown.prototype.getMoistureScenarioOneHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioTenHourByIndex'] = SIGCrown.prototype.getMoistureScenarioTenHourByIndex = function(index, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioTenHourByIndex'] = SIGCrown.prototype.getMoistureScenarioTenHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioTenHourByName'] = SIGCrown.prototype.getMoistureScenarioTenHourByName = function(name, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioTenHourByName'] = SIGCrown.prototype.getMoistureScenarioTenHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureTenHour'] = SIGCrown.prototype.getMoistureTenHour = function(moistureUnits) { +SIGCrown.prototype['getMoistureTenHour'] = SIGCrown.prototype.getMoistureTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureTenHour_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getSlope'] = SIGCrown.prototype.getSlope = function(slopeUnits) { +SIGCrown.prototype['getSlope'] = SIGCrown.prototype.getSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeUnits) { var self = this.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; return _emscripten_bind_SIGCrown_getSlope_1(self, slopeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getSurfaceFireSpreadDistance'] = SIGCrown.prototype.getSurfaceFireSpreadDistance = function(lengthUnits) { +SIGCrown.prototype['getSurfaceFireSpreadDistance'] = SIGCrown.prototype.getSurfaceFireSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getSurfaceFireSpreadRate'] = SIGCrown.prototype.getSurfaceFireSpreadRate = function(spreadRateUnits) { +SIGCrown.prototype['getSurfaceFireSpreadRate'] = SIGCrown.prototype.getSurfaceFireSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getWindDirection'] = SIGCrown.prototype.getWindDirection = function() { +SIGCrown.prototype['getWindDirection'] = SIGCrown.prototype.getWindDirection = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getWindDirection_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getWindSpeed'] = SIGCrown.prototype.getWindSpeed = function(windSpeedUnits, windHeightInputMode) { +SIGCrown.prototype['getWindSpeed'] = SIGCrown.prototype.getWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedUnits, windHeightInputMode) { var self = this.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; return _emscripten_bind_SIGCrown_getWindSpeed_2(self, windSpeedUnits, windHeightInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelModelNumber'] = SIGCrown.prototype.getFuelModelNumber = function() { +SIGCrown.prototype['getFuelModelNumber'] = SIGCrown.prototype.getFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getFuelModelNumber_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioIndexByName'] = SIGCrown.prototype.getMoistureScenarioIndexByName = function(name) { +SIGCrown.prototype['getMoistureScenarioIndexByName'] = SIGCrown.prototype.getMoistureScenarioIndexByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return _emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1(self, name); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getNumberOfMoistureScenarios'] = SIGCrown.prototype.getNumberOfMoistureScenarios = function() { +SIGCrown.prototype['getNumberOfMoistureScenarios'] = SIGCrown.prototype.getNumberOfMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelCode'] = SIGCrown.prototype.getFuelCode = function(fuelModelNumber) { +SIGCrown.prototype['getFuelCode'] = SIGCrown.prototype.getFuelCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGCrown_getFuelCode_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelName'] = SIGCrown.prototype.getFuelName = function(fuelModelNumber) { +SIGCrown.prototype['getFuelName'] = SIGCrown.prototype.getFuelName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGCrown_getFuelName_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioDescriptionByIndex'] = SIGCrown.prototype.getMoistureScenarioDescriptionByIndex = function(index) { +SIGCrown.prototype['getMoistureScenarioDescriptionByIndex'] = SIGCrown.prototype.getMoistureScenarioDescriptionByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioDescriptionByName'] = SIGCrown.prototype.getMoistureScenarioDescriptionByName = function(name) { +SIGCrown.prototype['getMoistureScenarioDescriptionByName'] = SIGCrown.prototype.getMoistureScenarioDescriptionByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return UTF8ToString(_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1(self, name)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioNameByIndex'] = SIGCrown.prototype.getMoistureScenarioNameByIndex = function(index) { +SIGCrown.prototype['getMoistureScenarioNameByIndex'] = SIGCrown.prototype.getMoistureScenarioNameByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['doCrownRun'] = SIGCrown.prototype.doCrownRun = function() { +SIGCrown.prototype['doCrownRun'] = SIGCrown.prototype.doCrownRun = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGCrown_doCrownRun_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['doCrownRunRothermel'] = SIGCrown.prototype.doCrownRunRothermel = function() { +SIGCrown.prototype['doCrownRunRothermel'] = SIGCrown.prototype.doCrownRunRothermel = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGCrown_doCrownRunRothermel_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['doCrownRunScottAndReinhardt'] = SIGCrown.prototype.doCrownRunScottAndReinhardt = function() { +SIGCrown.prototype['doCrownRunScottAndReinhardt'] = SIGCrown.prototype.doCrownRunScottAndReinhardt = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['initializeMembers'] = SIGCrown.prototype.initializeMembers = function() { +SIGCrown.prototype['initializeMembers'] = SIGCrown.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGCrown_initializeMembers_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setAspect'] = SIGCrown.prototype.setAspect = function(aspect) { +SIGCrown.prototype['setAspect'] = SIGCrown.prototype.setAspect = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspect) { var self = this.ptr; if (aspect && typeof aspect === 'object') aspect = aspect.ptr; _emscripten_bind_SIGCrown_setAspect_1(self, aspect); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setCanopyBaseHeight'] = SIGCrown.prototype.setCanopyBaseHeight = function(canopyBaseHeight, canopyHeightUnits) { +SIGCrown.prototype['setCanopyBaseHeight'] = SIGCrown.prototype.setCanopyBaseHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyBaseHeight, canopyHeightUnits) { var self = this.ptr; if (canopyBaseHeight && typeof canopyBaseHeight === 'object') canopyBaseHeight = canopyBaseHeight.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; _emscripten_bind_SIGCrown_setCanopyBaseHeight_2(self, canopyBaseHeight, canopyHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setCanopyBulkDensity'] = SIGCrown.prototype.setCanopyBulkDensity = function(canopyBulkDensity, densityUnits) { +SIGCrown.prototype['setCanopyBulkDensity'] = SIGCrown.prototype.setCanopyBulkDensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyBulkDensity, densityUnits) { var self = this.ptr; if (canopyBulkDensity && typeof canopyBulkDensity === 'object') canopyBulkDensity = canopyBulkDensity.ptr; if (densityUnits && typeof densityUnits === 'object') densityUnits = densityUnits.ptr; _emscripten_bind_SIGCrown_setCanopyBulkDensity_2(self, canopyBulkDensity, densityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setCanopyCover'] = SIGCrown.prototype.setCanopyCover = function(canopyCover, coverUnits) { +SIGCrown.prototype['setCanopyCover'] = SIGCrown.prototype.setCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyCover, coverUnits) { var self = this.ptr; if (canopyCover && typeof canopyCover === 'object') canopyCover = canopyCover.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; _emscripten_bind_SIGCrown_setCanopyCover_2(self, canopyCover, coverUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setCanopyHeight'] = SIGCrown.prototype.setCanopyHeight = function(canopyHeight, canopyHeightUnits) { +SIGCrown.prototype['setCanopyHeight'] = SIGCrown.prototype.setCanopyHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeight, canopyHeightUnits) { var self = this.ptr; if (canopyHeight && typeof canopyHeight === 'object') canopyHeight = canopyHeight.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; _emscripten_bind_SIGCrown_setCanopyHeight_2(self, canopyHeight, canopyHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setCrownRatio'] = SIGCrown.prototype.setCrownRatio = function(crownRatio, crownRatioUnits) { +SIGCrown.prototype['setCrownRatio'] = SIGCrown.prototype.setCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatio, crownRatioUnits) { var self = this.ptr; if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGCrown_setCrownRatio_2(self, crownRatio, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setFuelModelNumber'] = SIGCrown.prototype.setFuelModelNumber = function(fuelModelNumber) { +SIGCrown.prototype['setFuelModelNumber'] = SIGCrown.prototype.setFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; _emscripten_bind_SIGCrown_setFuelModelNumber_1(self, fuelModelNumber); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setCrownFireCalculationMethod'] = SIGCrown.prototype.setCrownFireCalculationMethod = function(CrownFireCalculationMethod) { +SIGCrown.prototype['setCrownFireCalculationMethod'] = SIGCrown.prototype.setCrownFireCalculationMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function(CrownFireCalculationMethod) { var self = this.ptr; if (CrownFireCalculationMethod && typeof CrownFireCalculationMethod === 'object') CrownFireCalculationMethod = CrownFireCalculationMethod.ptr; _emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1(self, CrownFireCalculationMethod); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setElapsedTime'] = SIGCrown.prototype.setElapsedTime = function(elapsedTime, timeUnits) { +SIGCrown.prototype['setElapsedTime'] = SIGCrown.prototype.setElapsedTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elapsedTime, timeUnits) { var self = this.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; _emscripten_bind_SIGCrown_setElapsedTime_2(self, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setFuelModels'] = SIGCrown.prototype.setFuelModels = function(fuelModels) { +SIGCrown.prototype['setFuelModels'] = SIGCrown.prototype.setFuelModels = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModels) { var self = this.ptr; if (fuelModels && typeof fuelModels === 'object') fuelModels = fuelModels.ptr; _emscripten_bind_SIGCrown_setFuelModels_1(self, fuelModels); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureDeadAggregate'] = SIGCrown.prototype.setMoistureDeadAggregate = function(moistureDead, moistureUnits) { +SIGCrown.prototype['setMoistureDeadAggregate'] = SIGCrown.prototype.setMoistureDeadAggregate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureDead, moistureUnits) { var self = this.ptr; if (moistureDead && typeof moistureDead === 'object') moistureDead = moistureDead.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureDeadAggregate_2(self, moistureDead, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureFoliar'] = SIGCrown.prototype.setMoistureFoliar = function(foliarMoisture, moistureUnits) { +SIGCrown.prototype['setMoistureFoliar'] = SIGCrown.prototype.setMoistureFoliar = /** @suppress {undefinedVars, duplicate} @this{Object} */function(foliarMoisture, moistureUnits) { var self = this.ptr; if (foliarMoisture && typeof foliarMoisture === 'object') foliarMoisture = foliarMoisture.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureFoliar_2(self, foliarMoisture, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureHundredHour'] = SIGCrown.prototype.setMoistureHundredHour = function(moistureHundredHour, moistureUnits) { +SIGCrown.prototype['setMoistureHundredHour'] = SIGCrown.prototype.setMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureHundredHour, moistureUnits) { var self = this.ptr; if (moistureHundredHour && typeof moistureHundredHour === 'object') moistureHundredHour = moistureHundredHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureHundredHour_2(self, moistureHundredHour, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureInputMode'] = SIGCrown.prototype.setMoistureInputMode = function(moistureInputMode) { +SIGCrown.prototype['setMoistureInputMode'] = SIGCrown.prototype.setMoistureInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureInputMode) { var self = this.ptr; if (moistureInputMode && typeof moistureInputMode === 'object') moistureInputMode = moistureInputMode.ptr; _emscripten_bind_SIGCrown_setMoistureInputMode_1(self, moistureInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureLiveAggregate'] = SIGCrown.prototype.setMoistureLiveAggregate = function(moistureLive, moistureUnits) { +SIGCrown.prototype['setMoistureLiveAggregate'] = SIGCrown.prototype.setMoistureLiveAggregate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLive, moistureUnits) { var self = this.ptr; if (moistureLive && typeof moistureLive === 'object') moistureLive = moistureLive.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureLiveAggregate_2(self, moistureLive, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureLiveHerbaceous'] = SIGCrown.prototype.setMoistureLiveHerbaceous = function(moistureLiveHerbaceous, moistureUnits) { +SIGCrown.prototype['setMoistureLiveHerbaceous'] = SIGCrown.prototype.setMoistureLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLiveHerbaceous, moistureUnits) { var self = this.ptr; if (moistureLiveHerbaceous && typeof moistureLiveHerbaceous === 'object') moistureLiveHerbaceous = moistureLiveHerbaceous.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2(self, moistureLiveHerbaceous, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureLiveWoody'] = SIGCrown.prototype.setMoistureLiveWoody = function(moistureLiveWoody, moistureUnits) { +SIGCrown.prototype['setMoistureLiveWoody'] = SIGCrown.prototype.setMoistureLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLiveWoody, moistureUnits) { var self = this.ptr; if (moistureLiveWoody && typeof moistureLiveWoody === 'object') moistureLiveWoody = moistureLiveWoody.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureLiveWoody_2(self, moistureLiveWoody, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureOneHour'] = SIGCrown.prototype.setMoistureOneHour = function(moistureOneHour, moistureUnits) { +SIGCrown.prototype['setMoistureOneHour'] = SIGCrown.prototype.setMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureUnits) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureOneHour_2(self, moistureOneHour, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureScenarios'] = SIGCrown.prototype.setMoistureScenarios = function(moistureScenarios) { +SIGCrown.prototype['setMoistureScenarios'] = SIGCrown.prototype.setMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarios) { var self = this.ptr; if (moistureScenarios && typeof moistureScenarios === 'object') moistureScenarios = moistureScenarios.ptr; _emscripten_bind_SIGCrown_setMoistureScenarios_1(self, moistureScenarios); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureTenHour'] = SIGCrown.prototype.setMoistureTenHour = function(moistureTenHour, moistureUnits) { +SIGCrown.prototype['setMoistureTenHour'] = SIGCrown.prototype.setMoistureTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureTenHour, moistureUnits) { var self = this.ptr; if (moistureTenHour && typeof moistureTenHour === 'object') moistureTenHour = moistureTenHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureTenHour_2(self, moistureTenHour, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setSlope'] = SIGCrown.prototype.setSlope = function(slope, slopeUnits) { +SIGCrown.prototype['setSlope'] = SIGCrown.prototype.setSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slope, slopeUnits) { var self = this.ptr; if (slope && typeof slope === 'object') slope = slope.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; _emscripten_bind_SIGCrown_setSlope_2(self, slope, slopeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setUserProvidedWindAdjustmentFactor'] = SIGCrown.prototype.setUserProvidedWindAdjustmentFactor = function(userProvidedWindAdjustmentFactor) { +SIGCrown.prototype['setUserProvidedWindAdjustmentFactor'] = SIGCrown.prototype.setUserProvidedWindAdjustmentFactor = /** @suppress {undefinedVars, duplicate} @this{Object} */function(userProvidedWindAdjustmentFactor) { var self = this.ptr; if (userProvidedWindAdjustmentFactor && typeof userProvidedWindAdjustmentFactor === 'object') userProvidedWindAdjustmentFactor = userProvidedWindAdjustmentFactor.ptr; _emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1(self, userProvidedWindAdjustmentFactor); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setWindAdjustmentFactorCalculationMethod'] = SIGCrown.prototype.setWindAdjustmentFactorCalculationMethod = function(windAdjustmentFactorCalculationMethod) { +SIGCrown.prototype['setWindAdjustmentFactorCalculationMethod'] = SIGCrown.prototype.setWindAdjustmentFactorCalculationMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windAdjustmentFactorCalculationMethod) { var self = this.ptr; if (windAdjustmentFactorCalculationMethod && typeof windAdjustmentFactorCalculationMethod === 'object') windAdjustmentFactorCalculationMethod = windAdjustmentFactorCalculationMethod.ptr; _emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1(self, windAdjustmentFactorCalculationMethod); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setWindAndSpreadOrientationMode'] = SIGCrown.prototype.setWindAndSpreadOrientationMode = function(windAndSpreadAngleMode) { +SIGCrown.prototype['setWindAndSpreadOrientationMode'] = SIGCrown.prototype.setWindAndSpreadOrientationMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windAndSpreadAngleMode) { var self = this.ptr; if (windAndSpreadAngleMode && typeof windAndSpreadAngleMode === 'object') windAndSpreadAngleMode = windAndSpreadAngleMode.ptr; _emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1(self, windAndSpreadAngleMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setWindDirection'] = SIGCrown.prototype.setWindDirection = function(windDirection) { +SIGCrown.prototype['setWindDirection'] = SIGCrown.prototype.setWindDirection = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windDirection) { var self = this.ptr; if (windDirection && typeof windDirection === 'object') windDirection = windDirection.ptr; _emscripten_bind_SIGCrown_setWindDirection_1(self, windDirection); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setWindHeightInputMode'] = SIGCrown.prototype.setWindHeightInputMode = function(windHeightInputMode) { +SIGCrown.prototype['setWindHeightInputMode'] = SIGCrown.prototype.setWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windHeightInputMode) { var self = this.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGCrown_setWindHeightInputMode_1(self, windHeightInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setWindSpeed'] = SIGCrown.prototype.setWindSpeed = function(windSpeed, windSpeedUnits) { +SIGCrown.prototype['setWindSpeed'] = SIGCrown.prototype.setWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGCrown_setWindSpeed_2(self, windSpeed, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['updateCrownInputs'] = SIGCrown.prototype.updateCrownInputs = function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureFoliar, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyBaseHeight, canopyHeightUnits, crownRatio, crownRatioUnits, canopyBulkDensity, densityUnits) { +SIGCrown.prototype['updateCrownInputs'] = SIGCrown.prototype.updateCrownInputs = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureFoliar, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyBaseHeight, canopyHeightUnits, crownRatio, crownRatioUnits, canopyBulkDensity, densityUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; @@ -5188,10 +4494,9 @@ SIGCrown.prototype['updateCrownInputs'] = SIGCrown.prototype.updateCrownInputs = if (canopyBulkDensity && typeof canopyBulkDensity === 'object') canopyBulkDensity = canopyBulkDensity.ptr; if (densityUnits && typeof densityUnits === 'object') densityUnits = densityUnits.ptr; _emscripten_bind_SIGCrown_updateCrownInputs_25(self, fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureFoliar, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyBaseHeight, canopyHeightUnits, crownRatio, crownRatioUnits, canopyBulkDensity, densityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['updateCrownsSurfaceInputs'] = SIGCrown.prototype.updateCrownsSurfaceInputs = function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { +SIGCrown.prototype['updateCrownsSurfaceInputs'] = SIGCrown.prototype.updateCrownsSurfaceInputs = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; @@ -5215,84 +4520,69 @@ SIGCrown.prototype['updateCrownsSurfaceInputs'] = SIGCrown.prototype.updateCrown if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21(self, fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFinalFlameLength'] = SIGCrown.prototype.getFinalFlameLength = function(flameLengthUnits) { +SIGCrown.prototype['getFinalFlameLength'] = SIGCrown.prototype.getFinalFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGCrown_getFinalFlameLength_1(self, flameLengthUnits); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['__destroy__'] = SIGCrown.prototype.__destroy__ = function() { + SIGCrown.prototype['__destroy__'] = SIGCrown.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGCrown___destroy___0(self); }; - -// Interface: SpeciesMasterTableRecord - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SpeciesMasterTableRecord(rhs) { +// SpeciesMasterTableRecord +/** @suppress {undefinedVars, duplicate} @this{Object} */function SpeciesMasterTableRecord(rhs) { if (rhs && typeof rhs === 'object') rhs = rhs.ptr; if (rhs === undefined) { this.ptr = _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0(); getCache(SpeciesMasterTableRecord)[this.ptr] = this;return } this.ptr = _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1(rhs); getCache(SpeciesMasterTableRecord)[this.ptr] = this; -}; - +};; SpeciesMasterTableRecord.prototype = Object.create(WrapperObject.prototype); SpeciesMasterTableRecord.prototype.constructor = SpeciesMasterTableRecord; SpeciesMasterTableRecord.prototype.__class__ = SpeciesMasterTableRecord; SpeciesMasterTableRecord.__cache__ = {}; Module['SpeciesMasterTableRecord'] = SpeciesMasterTableRecord; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTableRecord.prototype['__destroy__'] = SpeciesMasterTableRecord.prototype.__destroy__ = function() { + SpeciesMasterTableRecord.prototype['__destroy__'] = SpeciesMasterTableRecord.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SpeciesMasterTableRecord___destroy___0(self); }; - -// Interface: SpeciesMasterTable - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SpeciesMasterTable() { +// SpeciesMasterTable +/** @suppress {undefinedVars, duplicate} @this{Object} */function SpeciesMasterTable() { this.ptr = _emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0(); getCache(SpeciesMasterTable)[this.ptr] = this; -}; - +};; SpeciesMasterTable.prototype = Object.create(WrapperObject.prototype); SpeciesMasterTable.prototype.constructor = SpeciesMasterTable; SpeciesMasterTable.prototype.__class__ = SpeciesMasterTable; SpeciesMasterTable.__cache__ = {}; Module['SpeciesMasterTable'] = SpeciesMasterTable; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTable.prototype['initializeMasterTable'] = SpeciesMasterTable.prototype.initializeMasterTable = function() { + +SpeciesMasterTable.prototype['initializeMasterTable'] = SpeciesMasterTable.prototype.initializeMasterTable = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SpeciesMasterTable_initializeMasterTable_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTable.prototype['getSpeciesTableIndexFromSpeciesCode'] = SpeciesMasterTable.prototype.getSpeciesTableIndexFromSpeciesCode = function(speciesCode) { +SpeciesMasterTable.prototype['getSpeciesTableIndexFromSpeciesCode'] = SpeciesMasterTable.prototype.getSpeciesTableIndexFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1(self, speciesCode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTable.prototype['getSpeciesTableIndexFromSpeciesCodeAndEquationType'] = SpeciesMasterTable.prototype.getSpeciesTableIndexFromSpeciesCodeAndEquationType = function(speciesCode, equationType) { +SpeciesMasterTable.prototype['getSpeciesTableIndexFromSpeciesCodeAndEquationType'] = SpeciesMasterTable.prototype.getSpeciesTableIndexFromSpeciesCodeAndEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode, equationType) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); if (equationType && typeof equationType === 'object') equationType = equationType.ptr; return _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2(self, speciesCode, equationType); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTable.prototype['insertRecord'] = SpeciesMasterTable.prototype.insertRecord = function(speciesCode, scientificName, commonName, mortalityEquation, brkEqu, crownCoefficientCode, Alaska, California, EasternArea, GreatBasin, NorthernRockies, Northwest, RocketyMountain, SouthernArea, SouthWest, equationType, crownDamageEquationCode) { +SpeciesMasterTable.prototype['insertRecord'] = SpeciesMasterTable.prototype.insertRecord = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode, scientificName, commonName, mortalityEquation, brkEqu, crownCoefficientCode, Alaska, California, EasternArea, GreatBasin, NorthernRockies, Northwest, RocketyMountain, SouthernArea, SouthWest, equationType, crownDamageEquationCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; @@ -5316,72 +4606,61 @@ SpeciesMasterTable.prototype['insertRecord'] = SpeciesMasterTable.prototype.inse if (equationType && typeof equationType === 'object') equationType = equationType.ptr; if (crownDamageEquationCode && typeof crownDamageEquationCode === 'object') crownDamageEquationCode = crownDamageEquationCode.ptr; _emscripten_bind_SpeciesMasterTable_insertRecord_17(self, speciesCode, scientificName, commonName, mortalityEquation, brkEqu, crownCoefficientCode, Alaska, California, EasternArea, GreatBasin, NorthernRockies, Northwest, RocketyMountain, SouthernArea, SouthWest, equationType, crownDamageEquationCode); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTable.prototype['__destroy__'] = SpeciesMasterTable.prototype.__destroy__ = function() { + SpeciesMasterTable.prototype['__destroy__'] = SpeciesMasterTable.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SpeciesMasterTable___destroy___0(self); }; - -// Interface: SIGMortality - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGMortality(speciesMasterTable) { +// SIGMortality +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGMortality(speciesMasterTable) { if (speciesMasterTable && typeof speciesMasterTable === 'object') speciesMasterTable = speciesMasterTable.ptr; this.ptr = _emscripten_bind_SIGMortality_SIGMortality_1(speciesMasterTable); getCache(SIGMortality)[this.ptr] = this; -}; - +};; SIGMortality.prototype = Object.create(WrapperObject.prototype); SIGMortality.prototype.constructor = SIGMortality; SIGMortality.prototype.__class__ = SIGMortality; SIGMortality.__cache__ = {}; Module['SIGMortality'] = SIGMortality; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['initializeMembers'] = SIGMortality.prototype.initializeMembers = function() { + +SIGMortality.prototype['initializeMembers'] = SIGMortality.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGMortality_initializeMembers_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['checkIsInGACCRegionAtSpeciesTableIndex'] = SIGMortality.prototype.checkIsInGACCRegionAtSpeciesTableIndex = function(index, region) { +SIGMortality.prototype['checkIsInGACCRegionAtSpeciesTableIndex'] = SIGMortality.prototype.checkIsInGACCRegionAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, region) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (region && typeof region === 'object') region = region.ptr; return !!(_emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2(self, index, region)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['checkIsInGACCRegionFromSpeciesCode'] = SIGMortality.prototype.checkIsInGACCRegionFromSpeciesCode = function(speciesCode, region) { +SIGMortality.prototype['checkIsInGACCRegionFromSpeciesCode'] = SIGMortality.prototype.checkIsInGACCRegionFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode, region) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); if (region && typeof region === 'object') region = region.ptr; return !!(_emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2(self, speciesCode, region)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['updateInputsForSpeciesCodeAndEquationType'] = SIGMortality.prototype.updateInputsForSpeciesCodeAndEquationType = function(speciesCode, equationType) { +SIGMortality.prototype['updateInputsForSpeciesCodeAndEquationType'] = SIGMortality.prototype.updateInputsForSpeciesCodeAndEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode, equationType) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); if (equationType && typeof equationType === 'object') equationType = equationType.ptr; return !!(_emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2(self, speciesCode, equationType)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['calculateMortality'] = SIGMortality.prototype.calculateMortality = function(probablityUnits) { +SIGMortality.prototype['calculateMortality'] = SIGMortality.prototype.calculateMortality = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probablityUnits) { var self = this.ptr; if (probablityUnits && typeof probablityUnits === 'object') probablityUnits = probablityUnits.ptr; return _emscripten_bind_SIGMortality_calculateMortality_1(self, probablityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['calculateScorchHeight'] = SIGMortality.prototype.calculateScorchHeight = function(firelineIntensity, firelineIntensityUnits, midFlameWindSpeed, windSpeedUnits, airTemperature, temperatureUnits, scorchHeightUnits) { +SIGMortality.prototype['calculateScorchHeight'] = SIGMortality.prototype.calculateScorchHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensity, firelineIntensityUnits, midFlameWindSpeed, windSpeedUnits, airTemperature, temperatureUnits, scorchHeightUnits) { var self = this.ptr; if (firelineIntensity && typeof firelineIntensity === 'object') firelineIntensity = firelineIntensity.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; @@ -5391,839 +4670,718 @@ SIGMortality.prototype['calculateScorchHeight'] = SIGMortality.prototype.calcula if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_calculateScorchHeight_7(self, firelineIntensity, firelineIntensityUnits, midFlameWindSpeed, windSpeedUnits, airTemperature, temperatureUnits, scorchHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['calculateMortalityAllDirections'] = SIGMortality.prototype.calculateMortalityAllDirections = function(probablityUnits) { +SIGMortality.prototype['calculateMortalityAllDirections'] = SIGMortality.prototype.calculateMortalityAllDirections = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probablityUnits) { var self = this.ptr; if (probablityUnits && typeof probablityUnits === 'object') probablityUnits = probablityUnits.ptr; _emscripten_bind_SIGMortality_calculateMortalityAllDirections_1(self, probablityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getRequiredFieldVector'] = SIGMortality.prototype.getRequiredFieldVector = function() { +SIGMortality.prototype['getRequiredFieldVector'] = SIGMortality.prototype.getRequiredFieldVector = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return wrapPointer(_emscripten_bind_SIGMortality_getRequiredFieldVector_0(self), BoolVector); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBeetleDamage'] = SIGMortality.prototype.getBeetleDamage = function() { +SIGMortality.prototype['getBeetleDamage'] = SIGMortality.prototype.getBeetleDamage = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getBeetleDamage_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownDamageEquationCode'] = SIGMortality.prototype.getCrownDamageEquationCode = function() { +SIGMortality.prototype['getCrownDamageEquationCode'] = SIGMortality.prototype.getCrownDamageEquationCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCrownDamageEquationCode_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownDamageEquationCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getCrownDamageEquationCodeAtSpeciesTableIndex = function(index) { +SIGMortality.prototype['getCrownDamageEquationCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getCrownDamageEquationCodeAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownDamageEquationCodeFromSpeciesCode'] = SIGMortality.prototype.getCrownDamageEquationCodeFromSpeciesCode = function(speciesCode) { +SIGMortality.prototype['getCrownDamageEquationCodeFromSpeciesCode'] = SIGMortality.prototype.getCrownDamageEquationCodeFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1(self, speciesCode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownDamageType'] = SIGMortality.prototype.getCrownDamageType = function() { +SIGMortality.prototype['getCrownDamageType'] = SIGMortality.prototype.getCrownDamageType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCrownDamageType_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCommonNameAtSpeciesTableIndex'] = SIGMortality.prototype.getCommonNameAtSpeciesTableIndex = function(index) { +SIGMortality.prototype['getCommonNameAtSpeciesTableIndex'] = SIGMortality.prototype.getCommonNameAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCommonNameFromSpeciesCode'] = SIGMortality.prototype.getCommonNameFromSpeciesCode = function(speciesCode) { +SIGMortality.prototype['getCommonNameFromSpeciesCode'] = SIGMortality.prototype.getCommonNameFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return UTF8ToString(_emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1(self, speciesCode)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getScientificNameAtSpeciesTableIndex'] = SIGMortality.prototype.getScientificNameAtSpeciesTableIndex = function(index) { +SIGMortality.prototype['getScientificNameAtSpeciesTableIndex'] = SIGMortality.prototype.getScientificNameAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getScientificNameFromSpeciesCode'] = SIGMortality.prototype.getScientificNameFromSpeciesCode = function(speciesCode) { +SIGMortality.prototype['getScientificNameFromSpeciesCode'] = SIGMortality.prototype.getScientificNameFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return UTF8ToString(_emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1(self, speciesCode)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getSpeciesCode'] = SIGMortality.prototype.getSpeciesCode = function() { +SIGMortality.prototype['getSpeciesCode'] = SIGMortality.prototype.getSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getSpeciesCode_0(self)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getSpeciesCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getSpeciesCodeAtSpeciesTableIndex = function(index) { +SIGMortality.prototype['getSpeciesCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getSpeciesCodeAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getEquationType'] = SIGMortality.prototype.getEquationType = function() { +SIGMortality.prototype['getEquationType'] = SIGMortality.prototype.getEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getEquationType_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getEquationTypeAtSpeciesTableIndex'] = SIGMortality.prototype.getEquationTypeAtSpeciesTableIndex = function(index) { +SIGMortality.prototype['getEquationTypeAtSpeciesTableIndex'] = SIGMortality.prototype.getEquationTypeAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getEquationTypeFromSpeciesCode'] = SIGMortality.prototype.getEquationTypeFromSpeciesCode = function(speciesCode) { +SIGMortality.prototype['getEquationTypeFromSpeciesCode'] = SIGMortality.prototype.getEquationTypeFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1(self, speciesCode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getFireSeverity'] = SIGMortality.prototype.getFireSeverity = function() { +SIGMortality.prototype['getFireSeverity'] = SIGMortality.prototype.getFireSeverity = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getFireSeverity_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getFlameLengthOrScorchHeightSwitch'] = SIGMortality.prototype.getFlameLengthOrScorchHeightSwitch = function() { +SIGMortality.prototype['getFlameLengthOrScorchHeightSwitch'] = SIGMortality.prototype.getFlameLengthOrScorchHeightSwitch = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getGACCRegion'] = SIGMortality.prototype.getGACCRegion = function() { +SIGMortality.prototype['getGACCRegion'] = SIGMortality.prototype.getGACCRegion = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getGACCRegion_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getSpeciesRecordVectorForGACCRegion'] = SIGMortality.prototype.getSpeciesRecordVectorForGACCRegion = function(region) { +SIGMortality.prototype['getSpeciesRecordVectorForGACCRegion'] = SIGMortality.prototype.getSpeciesRecordVectorForGACCRegion = /** @suppress {undefinedVars, duplicate} @this{Object} */function(region) { var self = this.ptr; if (region && typeof region === 'object') region = region.ptr; return wrapPointer(_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1(self, region), SpeciesMasterTableRecordVector); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getSpeciesRecordVectorForGACCRegionAndEquationType'] = SIGMortality.prototype.getSpeciesRecordVectorForGACCRegionAndEquationType = function(region, equationType) { +SIGMortality.prototype['getSpeciesRecordVectorForGACCRegionAndEquationType'] = SIGMortality.prototype.getSpeciesRecordVectorForGACCRegionAndEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(region, equationType) { var self = this.ptr; if (region && typeof region === 'object') region = region.ptr; if (equationType && typeof equationType === 'object') equationType = equationType.ptr; return wrapPointer(_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2(self, region, equationType), SpeciesMasterTableRecordVector); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBarkThickness'] = SIGMortality.prototype.getBarkThickness = function(barkThicknessUnits) { +SIGMortality.prototype['getBarkThickness'] = SIGMortality.prototype.getBarkThickness = /** @suppress {undefinedVars, duplicate} @this{Object} */function(barkThicknessUnits) { var self = this.ptr; if (barkThicknessUnits && typeof barkThicknessUnits === 'object') barkThicknessUnits = barkThicknessUnits.ptr; return _emscripten_bind_SIGMortality_getBarkThickness_1(self, barkThicknessUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBasalAreaKillled'] = SIGMortality.prototype.getBasalAreaKillled = function() { +SIGMortality.prototype['getBasalAreaKillled'] = SIGMortality.prototype.getBasalAreaKillled = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getBasalAreaKillled_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBasalAreaPostfire'] = SIGMortality.prototype.getBasalAreaPostfire = function() { +SIGMortality.prototype['getBasalAreaPostfire'] = SIGMortality.prototype.getBasalAreaPostfire = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getBasalAreaPostfire_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBasalAreaPrefire'] = SIGMortality.prototype.getBasalAreaPrefire = function() { +SIGMortality.prototype['getBasalAreaPrefire'] = SIGMortality.prototype.getBasalAreaPrefire = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getBasalAreaPrefire_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBoleCharHeight'] = SIGMortality.prototype.getBoleCharHeight = function(boleCharHeightUnits) { +SIGMortality.prototype['getBoleCharHeight'] = SIGMortality.prototype.getBoleCharHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(boleCharHeightUnits) { var self = this.ptr; if (boleCharHeightUnits && typeof boleCharHeightUnits === 'object') boleCharHeightUnits = boleCharHeightUnits.ptr; return _emscripten_bind_SIGMortality_getBoleCharHeight_1(self, boleCharHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBoleCharHeightBacking'] = SIGMortality.prototype.getBoleCharHeightBacking = function(boleCharHeightUnits) { +SIGMortality.prototype['getBoleCharHeightBacking'] = SIGMortality.prototype.getBoleCharHeightBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(boleCharHeightUnits) { var self = this.ptr; if (boleCharHeightUnits && typeof boleCharHeightUnits === 'object') boleCharHeightUnits = boleCharHeightUnits.ptr; return _emscripten_bind_SIGMortality_getBoleCharHeightBacking_1(self, boleCharHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBoleCharHeightFlanking'] = SIGMortality.prototype.getBoleCharHeightFlanking = function(boleCharHeightUnits) { +SIGMortality.prototype['getBoleCharHeightFlanking'] = SIGMortality.prototype.getBoleCharHeightFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(boleCharHeightUnits) { var self = this.ptr; if (boleCharHeightUnits && typeof boleCharHeightUnits === 'object') boleCharHeightUnits = boleCharHeightUnits.ptr; return _emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1(self, boleCharHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCambiumKillRating'] = SIGMortality.prototype.getCambiumKillRating = function() { +SIGMortality.prototype['getCambiumKillRating'] = SIGMortality.prototype.getCambiumKillRating = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCambiumKillRating_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownDamage'] = SIGMortality.prototype.getCrownDamage = function() { +SIGMortality.prototype['getCrownDamage'] = SIGMortality.prototype.getCrownDamage = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCrownDamage_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownRatio'] = SIGMortality.prototype.getCrownRatio = function(crownRatioUnits) { +SIGMortality.prototype['getCrownRatio'] = SIGMortality.prototype.getCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatioUnits) { var self = this.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; return _emscripten_bind_SIGMortality_getCrownRatio_1(self, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCVSorCLS'] = SIGMortality.prototype.getCVSorCLS = function() { +SIGMortality.prototype['getCVSorCLS'] = SIGMortality.prototype.getCVSorCLS = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getCVSorCLS_0(self)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getDBH'] = SIGMortality.prototype.getDBH = function(diameterUnits) { +SIGMortality.prototype['getDBH'] = SIGMortality.prototype.getDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(diameterUnits) { var self = this.ptr; if (diameterUnits && typeof diameterUnits === 'object') diameterUnits = diameterUnits.ptr; return _emscripten_bind_SIGMortality_getDBH_1(self, diameterUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getFlameLength'] = SIGMortality.prototype.getFlameLength = function(flameLengthUnits) { +SIGMortality.prototype['getFlameLength'] = SIGMortality.prototype.getFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGMortality_getFlameLength_1(self, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getFlameLengthOrScorchHeightValue'] = SIGMortality.prototype.getFlameLengthOrScorchHeightValue = function(flameLengthOrScorchHeightUnits) { +SIGMortality.prototype['getFlameLengthOrScorchHeightValue'] = SIGMortality.prototype.getFlameLengthOrScorchHeightValue = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthOrScorchHeightUnits) { var self = this.ptr; if (flameLengthOrScorchHeightUnits && typeof flameLengthOrScorchHeightUnits === 'object') flameLengthOrScorchHeightUnits = flameLengthOrScorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1(self, flameLengthOrScorchHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getKilledTrees'] = SIGMortality.prototype.getKilledTrees = function() { +SIGMortality.prototype['getKilledTrees'] = SIGMortality.prototype.getKilledTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getKilledTrees_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getProbabilityOfMortality'] = SIGMortality.prototype.getProbabilityOfMortality = function(probabilityUnits) { +SIGMortality.prototype['getProbabilityOfMortality'] = SIGMortality.prototype.getProbabilityOfMortality = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probabilityUnits) { var self = this.ptr; if (probabilityUnits && typeof probabilityUnits === 'object') probabilityUnits = probabilityUnits.ptr; return _emscripten_bind_SIGMortality_getProbabilityOfMortality_1(self, probabilityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getProbabilityOfMortalityBacking'] = SIGMortality.prototype.getProbabilityOfMortalityBacking = function(probabilityUnits) { +SIGMortality.prototype['getProbabilityOfMortalityBacking'] = SIGMortality.prototype.getProbabilityOfMortalityBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probabilityUnits) { var self = this.ptr; if (probabilityUnits && typeof probabilityUnits === 'object') probabilityUnits = probabilityUnits.ptr; return _emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1(self, probabilityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getProbabilityOfMortalityFlanking'] = SIGMortality.prototype.getProbabilityOfMortalityFlanking = function(probabilityUnits) { +SIGMortality.prototype['getProbabilityOfMortalityFlanking'] = SIGMortality.prototype.getProbabilityOfMortalityFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probabilityUnits) { var self = this.ptr; if (probabilityUnits && typeof probabilityUnits === 'object') probabilityUnits = probabilityUnits.ptr; return _emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1(self, probabilityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getScorchHeight'] = SIGMortality.prototype.getScorchHeight = function(scorchHeightUnits) { +SIGMortality.prototype['getScorchHeight'] = SIGMortality.prototype.getScorchHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(scorchHeightUnits) { var self = this.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_getScorchHeight_1(self, scorchHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getScorchHeightBacking'] = SIGMortality.prototype.getScorchHeightBacking = function(scorchHeightUnits) { +SIGMortality.prototype['getScorchHeightBacking'] = SIGMortality.prototype.getScorchHeightBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(scorchHeightUnits) { var self = this.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_getScorchHeightBacking_1(self, scorchHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getScorchHeightFlanking'] = SIGMortality.prototype.getScorchHeightFlanking = function(scorchHeightUnits) { +SIGMortality.prototype['getScorchHeightFlanking'] = SIGMortality.prototype.getScorchHeightFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(scorchHeightUnits) { var self = this.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_getScorchHeightFlanking_1(self, scorchHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTotalPrefireTrees'] = SIGMortality.prototype.getTotalPrefireTrees = function() { +SIGMortality.prototype['getTotalPrefireTrees'] = SIGMortality.prototype.getTotalPrefireTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getTotalPrefireTrees_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTreeCrownLengthScorched'] = SIGMortality.prototype.getTreeCrownLengthScorched = function(treeCrownLengthScorchedUnits) { +SIGMortality.prototype['getTreeCrownLengthScorched'] = SIGMortality.prototype.getTreeCrownLengthScorched = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeCrownLengthScorchedUnits) { var self = this.ptr; if (treeCrownLengthScorchedUnits && typeof treeCrownLengthScorchedUnits === 'object') treeCrownLengthScorchedUnits = treeCrownLengthScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1(self, treeCrownLengthScorchedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTreeCrownLengthScorchedBacking'] = SIGMortality.prototype.getTreeCrownLengthScorchedBacking = function(treeCrownLengthScorchedUnits) { +SIGMortality.prototype['getTreeCrownLengthScorchedBacking'] = SIGMortality.prototype.getTreeCrownLengthScorchedBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeCrownLengthScorchedUnits) { var self = this.ptr; if (treeCrownLengthScorchedUnits && typeof treeCrownLengthScorchedUnits === 'object') treeCrownLengthScorchedUnits = treeCrownLengthScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1(self, treeCrownLengthScorchedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTreeCrownLengthScorchedFlanking'] = SIGMortality.prototype.getTreeCrownLengthScorchedFlanking = function(treeCrownLengthScorchedUnits) { +SIGMortality.prototype['getTreeCrownLengthScorchedFlanking'] = SIGMortality.prototype.getTreeCrownLengthScorchedFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeCrownLengthScorchedUnits) { var self = this.ptr; if (treeCrownLengthScorchedUnits && typeof treeCrownLengthScorchedUnits === 'object') treeCrownLengthScorchedUnits = treeCrownLengthScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1(self, treeCrownLengthScorchedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTreeCrownVolumeScorched'] = SIGMortality.prototype.getTreeCrownVolumeScorched = function(getTreeCrownVolumeScorchedUnits) { +SIGMortality.prototype['getTreeCrownVolumeScorched'] = SIGMortality.prototype.getTreeCrownVolumeScorched = /** @suppress {undefinedVars, duplicate} @this{Object} */function(getTreeCrownVolumeScorchedUnits) { var self = this.ptr; if (getTreeCrownVolumeScorchedUnits && typeof getTreeCrownVolumeScorchedUnits === 'object') getTreeCrownVolumeScorchedUnits = getTreeCrownVolumeScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1(self, getTreeCrownVolumeScorchedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTreeCrownVolumeScorchedBacking'] = SIGMortality.prototype.getTreeCrownVolumeScorchedBacking = function(getTreeCrownVolumeScorchedUnits) { +SIGMortality.prototype['getTreeCrownVolumeScorchedBacking'] = SIGMortality.prototype.getTreeCrownVolumeScorchedBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(getTreeCrownVolumeScorchedUnits) { var self = this.ptr; if (getTreeCrownVolumeScorchedUnits && typeof getTreeCrownVolumeScorchedUnits === 'object') getTreeCrownVolumeScorchedUnits = getTreeCrownVolumeScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1(self, getTreeCrownVolumeScorchedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTreeCrownVolumeScorchedFlanking'] = SIGMortality.prototype.getTreeCrownVolumeScorchedFlanking = function(getTreeCrownVolumeScorchedUnits) { +SIGMortality.prototype['getTreeCrownVolumeScorchedFlanking'] = SIGMortality.prototype.getTreeCrownVolumeScorchedFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(getTreeCrownVolumeScorchedUnits) { var self = this.ptr; if (getTreeCrownVolumeScorchedUnits && typeof getTreeCrownVolumeScorchedUnits === 'object') getTreeCrownVolumeScorchedUnits = getTreeCrownVolumeScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1(self, getTreeCrownVolumeScorchedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTreeDensityPerUnitArea'] = SIGMortality.prototype.getTreeDensityPerUnitArea = function(areaUnits) { +SIGMortality.prototype['getTreeDensityPerUnitArea'] = SIGMortality.prototype.getTreeDensityPerUnitArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTreeHeight'] = SIGMortality.prototype.getTreeHeight = function(treeHeightUnits) { +SIGMortality.prototype['getTreeHeight'] = SIGMortality.prototype.getTreeHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeHeightUnits) { var self = this.ptr; if (treeHeightUnits && typeof treeHeightUnits === 'object') treeHeightUnits = treeHeightUnits.ptr; return _emscripten_bind_SIGMortality_getTreeHeight_1(self, treeHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['postfireCanopyCover'] = SIGMortality.prototype.postfireCanopyCover = function() { +SIGMortality.prototype['postfireCanopyCover'] = SIGMortality.prototype.postfireCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_postfireCanopyCover_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['prefireCanopyCover'] = SIGMortality.prototype.prefireCanopyCover = function() { +SIGMortality.prototype['prefireCanopyCover'] = SIGMortality.prototype.prefireCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_prefireCanopyCover_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBarkEquationNumberAtSpeciesTableIndex'] = SIGMortality.prototype.getBarkEquationNumberAtSpeciesTableIndex = function(index) { +SIGMortality.prototype['getBarkEquationNumberAtSpeciesTableIndex'] = SIGMortality.prototype.getBarkEquationNumberAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBarkEquationNumberFromSpeciesCode'] = SIGMortality.prototype.getBarkEquationNumberFromSpeciesCode = function(speciesCode) { +SIGMortality.prototype['getBarkEquationNumberFromSpeciesCode'] = SIGMortality.prototype.getBarkEquationNumberFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1(self, speciesCode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownCoefficientCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getCrownCoefficientCodeAtSpeciesTableIndex = function(index) { +SIGMortality.prototype['getCrownCoefficientCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getCrownCoefficientCodeAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownCoefficientCodeFromSpeciesCode'] = SIGMortality.prototype.getCrownCoefficientCodeFromSpeciesCode = function(speciesCode) { +SIGMortality.prototype['getCrownCoefficientCodeFromSpeciesCode'] = SIGMortality.prototype.getCrownCoefficientCodeFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1(self, speciesCode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownScorchOrBoleCharEquationNumber'] = SIGMortality.prototype.getCrownScorchOrBoleCharEquationNumber = function() { +SIGMortality.prototype['getCrownScorchOrBoleCharEquationNumber'] = SIGMortality.prototype.getCrownScorchOrBoleCharEquationNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getMortalityEquationNumberAtSpeciesTableIndex'] = SIGMortality.prototype.getMortalityEquationNumberAtSpeciesTableIndex = function(index) { +SIGMortality.prototype['getMortalityEquationNumberAtSpeciesTableIndex'] = SIGMortality.prototype.getMortalityEquationNumberAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getMortalityEquationNumberFromSpeciesCode'] = SIGMortality.prototype.getMortalityEquationNumberFromSpeciesCode = function(speciesCode) { +SIGMortality.prototype['getMortalityEquationNumberFromSpeciesCode'] = SIGMortality.prototype.getMortalityEquationNumberFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1(self, speciesCode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getNumberOfRecordsInSpeciesTable'] = SIGMortality.prototype.getNumberOfRecordsInSpeciesTable = function() { +SIGMortality.prototype['getNumberOfRecordsInSpeciesTable'] = SIGMortality.prototype.getNumberOfRecordsInSpeciesTable = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getSpeciesTableIndexFromSpeciesCode'] = SIGMortality.prototype.getSpeciesTableIndexFromSpeciesCode = function(speciesNameCode) { +SIGMortality.prototype['getSpeciesTableIndexFromSpeciesCode'] = SIGMortality.prototype.getSpeciesTableIndexFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesNameCode) { var self = this.ptr; ensureCache.prepare(); if (speciesNameCode && typeof speciesNameCode === 'object') speciesNameCode = speciesNameCode.ptr; else speciesNameCode = ensureString(speciesNameCode); return _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1(self, speciesNameCode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getSpeciesTableIndexFromSpeciesCodeAndEquationType'] = SIGMortality.prototype.getSpeciesTableIndexFromSpeciesCodeAndEquationType = function(speciesNameCode, equationType) { +SIGMortality.prototype['getSpeciesTableIndexFromSpeciesCodeAndEquationType'] = SIGMortality.prototype.getSpeciesTableIndexFromSpeciesCodeAndEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesNameCode, equationType) { var self = this.ptr; ensureCache.prepare(); if (speciesNameCode && typeof speciesNameCode === 'object') speciesNameCode = speciesNameCode.ptr; else speciesNameCode = ensureString(speciesNameCode); if (equationType && typeof equationType === 'object') equationType = equationType.ptr; return _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2(self, speciesNameCode, equationType); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setAirTemperature'] = SIGMortality.prototype.setAirTemperature = function(airTemperature, temperatureUnits) { +SIGMortality.prototype['setAirTemperature'] = SIGMortality.prototype.setAirTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(airTemperature, temperatureUnits) { var self = this.ptr; if (airTemperature && typeof airTemperature === 'object') airTemperature = airTemperature.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; _emscripten_bind_SIGMortality_setAirTemperature_2(self, airTemperature, temperatureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setBeetleDamage'] = SIGMortality.prototype.setBeetleDamage = function(beetleDamage) { +SIGMortality.prototype['setBeetleDamage'] = SIGMortality.prototype.setBeetleDamage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(beetleDamage) { var self = this.ptr; if (beetleDamage && typeof beetleDamage === 'object') beetleDamage = beetleDamage.ptr; _emscripten_bind_SIGMortality_setBeetleDamage_1(self, beetleDamage); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setBoleCharHeight'] = SIGMortality.prototype.setBoleCharHeight = function(boleCharHeight, boleCharHeightUnits) { +SIGMortality.prototype['setBoleCharHeight'] = SIGMortality.prototype.setBoleCharHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(boleCharHeight, boleCharHeightUnits) { var self = this.ptr; if (boleCharHeight && typeof boleCharHeight === 'object') boleCharHeight = boleCharHeight.ptr; if (boleCharHeightUnits && typeof boleCharHeightUnits === 'object') boleCharHeightUnits = boleCharHeightUnits.ptr; _emscripten_bind_SIGMortality_setBoleCharHeight_2(self, boleCharHeight, boleCharHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setCambiumKillRating'] = SIGMortality.prototype.setCambiumKillRating = function(cambiumKillRating) { +SIGMortality.prototype['setCambiumKillRating'] = SIGMortality.prototype.setCambiumKillRating = /** @suppress {undefinedVars, duplicate} @this{Object} */function(cambiumKillRating) { var self = this.ptr; if (cambiumKillRating && typeof cambiumKillRating === 'object') cambiumKillRating = cambiumKillRating.ptr; _emscripten_bind_SIGMortality_setCambiumKillRating_1(self, cambiumKillRating); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setCrownDamage'] = SIGMortality.prototype.setCrownDamage = function(crownDamage) { +SIGMortality.prototype['setCrownDamage'] = SIGMortality.prototype.setCrownDamage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownDamage) { var self = this.ptr; if (crownDamage && typeof crownDamage === 'object') crownDamage = crownDamage.ptr; _emscripten_bind_SIGMortality_setCrownDamage_1(self, crownDamage); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setCrownRatio'] = SIGMortality.prototype.setCrownRatio = function(crownRatio, crownRatioUnits) { +SIGMortality.prototype['setCrownRatio'] = SIGMortality.prototype.setCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatio, crownRatioUnits) { var self = this.ptr; if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGMortality_setCrownRatio_2(self, crownRatio, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setDBH'] = SIGMortality.prototype.setDBH = function(dbh, diameterUnits) { +SIGMortality.prototype['setDBH'] = SIGMortality.prototype.setDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dbh, diameterUnits) { var self = this.ptr; if (dbh && typeof dbh === 'object') dbh = dbh.ptr; if (diameterUnits && typeof diameterUnits === 'object') diameterUnits = diameterUnits.ptr; _emscripten_bind_SIGMortality_setDBH_2(self, dbh, diameterUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setEquationType'] = SIGMortality.prototype.setEquationType = function(equationType) { +SIGMortality.prototype['setEquationType'] = SIGMortality.prototype.setEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(equationType) { var self = this.ptr; if (equationType && typeof equationType === 'object') equationType = equationType.ptr; _emscripten_bind_SIGMortality_setEquationType_1(self, equationType); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setFireSeverity'] = SIGMortality.prototype.setFireSeverity = function(fireSeverity) { +SIGMortality.prototype['setFireSeverity'] = SIGMortality.prototype.setFireSeverity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fireSeverity) { var self = this.ptr; if (fireSeverity && typeof fireSeverity === 'object') fireSeverity = fireSeverity.ptr; _emscripten_bind_SIGMortality_setFireSeverity_1(self, fireSeverity); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setFirelineIntensity'] = SIGMortality.prototype.setFirelineIntensity = function(firelineIntensity, firelineIntensityUnits) { +SIGMortality.prototype['setFirelineIntensity'] = SIGMortality.prototype.setFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensity, firelineIntensityUnits) { var self = this.ptr; if (firelineIntensity && typeof firelineIntensity === 'object') firelineIntensity = firelineIntensity.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGMortality_setFirelineIntensity_2(self, firelineIntensity, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setFlameLength'] = SIGMortality.prototype.setFlameLength = function(flameLength, flameLengthUnits) { +SIGMortality.prototype['setFlameLength'] = SIGMortality.prototype.setFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLength, flameLengthUnits) { var self = this.ptr; if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; _emscripten_bind_SIGMortality_setFlameLength_2(self, flameLength, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setFlameLengthOrScorchHeightSwitch'] = SIGMortality.prototype.setFlameLengthOrScorchHeightSwitch = function(flameLengthOrScorchHeightSwitch) { +SIGMortality.prototype['setFlameLengthOrScorchHeightSwitch'] = SIGMortality.prototype.setFlameLengthOrScorchHeightSwitch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthOrScorchHeightSwitch) { var self = this.ptr; if (flameLengthOrScorchHeightSwitch && typeof flameLengthOrScorchHeightSwitch === 'object') flameLengthOrScorchHeightSwitch = flameLengthOrScorchHeightSwitch.ptr; _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1(self, flameLengthOrScorchHeightSwitch); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setFlameLengthOrScorchHeightValue'] = SIGMortality.prototype.setFlameLengthOrScorchHeightValue = function(flameLengthOrScorchHeightValue, flameLengthOrScorchHeightUnits) { +SIGMortality.prototype['setFlameLengthOrScorchHeightValue'] = SIGMortality.prototype.setFlameLengthOrScorchHeightValue = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthOrScorchHeightValue, flameLengthOrScorchHeightUnits) { var self = this.ptr; if (flameLengthOrScorchHeightValue && typeof flameLengthOrScorchHeightValue === 'object') flameLengthOrScorchHeightValue = flameLengthOrScorchHeightValue.ptr; if (flameLengthOrScorchHeightUnits && typeof flameLengthOrScorchHeightUnits === 'object') flameLengthOrScorchHeightUnits = flameLengthOrScorchHeightUnits.ptr; _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2(self, flameLengthOrScorchHeightValue, flameLengthOrScorchHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setMidFlameWindSpeed'] = SIGMortality.prototype.setMidFlameWindSpeed = function(midFlameWindSpeed, windSpeedUnits) { +SIGMortality.prototype['setMidFlameWindSpeed'] = SIGMortality.prototype.setMidFlameWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(midFlameWindSpeed, windSpeedUnits) { var self = this.ptr; if (midFlameWindSpeed && typeof midFlameWindSpeed === 'object') midFlameWindSpeed = midFlameWindSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGMortality_setMidFlameWindSpeed_2(self, midFlameWindSpeed, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setGACCRegion'] = SIGMortality.prototype.setGACCRegion = function(region) { +SIGMortality.prototype['setGACCRegion'] = SIGMortality.prototype.setGACCRegion = /** @suppress {undefinedVars, duplicate} @this{Object} */function(region) { var self = this.ptr; if (region && typeof region === 'object') region = region.ptr; _emscripten_bind_SIGMortality_setGACCRegion_1(self, region); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setScorchHeight'] = SIGMortality.prototype.setScorchHeight = function(scorchHeight, scorchHeightUnits) { +SIGMortality.prototype['setScorchHeight'] = SIGMortality.prototype.setScorchHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(scorchHeight, scorchHeightUnits) { var self = this.ptr; if (scorchHeight && typeof scorchHeight === 'object') scorchHeight = scorchHeight.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; _emscripten_bind_SIGMortality_setScorchHeight_2(self, scorchHeight, scorchHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setSpeciesCode'] = SIGMortality.prototype.setSpeciesCode = function(speciesCode) { +SIGMortality.prototype['setSpeciesCode'] = SIGMortality.prototype.setSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); _emscripten_bind_SIGMortality_setSpeciesCode_1(self, speciesCode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setSurfaceFireFirelineIntensity'] = SIGMortality.prototype.setSurfaceFireFirelineIntensity = function(value, firelineIntensityUnits) { +SIGMortality.prototype['setSurfaceFireFirelineIntensity'] = SIGMortality.prototype.setSurfaceFireFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, firelineIntensityUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2(self, value, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setSurfaceFireFirelineIntensityBacking'] = SIGMortality.prototype.setSurfaceFireFirelineIntensityBacking = function(value, firelineIntensityUnits) { +SIGMortality.prototype['setSurfaceFireFirelineIntensityBacking'] = SIGMortality.prototype.setSurfaceFireFirelineIntensityBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, firelineIntensityUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2(self, value, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setSurfaceFireFirelineIntensityFlanking'] = SIGMortality.prototype.setSurfaceFireFirelineIntensityFlanking = function(value, firelineIntensityUnits) { +SIGMortality.prototype['setSurfaceFireFirelineIntensityFlanking'] = SIGMortality.prototype.setSurfaceFireFirelineIntensityFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, firelineIntensityUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2(self, value, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setSurfaceFireFlameLength'] = SIGMortality.prototype.setSurfaceFireFlameLength = function(value, lengthUnits) { +SIGMortality.prototype['setSurfaceFireFlameLength'] = SIGMortality.prototype.setSurfaceFireFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, lengthUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2(self, value, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setSurfaceFireFlameLengthBacking'] = SIGMortality.prototype.setSurfaceFireFlameLengthBacking = function(value, lengthUnits) { +SIGMortality.prototype['setSurfaceFireFlameLengthBacking'] = SIGMortality.prototype.setSurfaceFireFlameLengthBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, lengthUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2(self, value, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setSurfaceFireFlameLengthFlanking'] = SIGMortality.prototype.setSurfaceFireFlameLengthFlanking = function(value, lengthUnits) { +SIGMortality.prototype['setSurfaceFireFlameLengthFlanking'] = SIGMortality.prototype.setSurfaceFireFlameLengthFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, lengthUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2(self, value, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setSurfaceFireScorchHeight'] = SIGMortality.prototype.setSurfaceFireScorchHeight = function(value, lengthUnits) { +SIGMortality.prototype['setSurfaceFireScorchHeight'] = SIGMortality.prototype.setSurfaceFireScorchHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, lengthUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2(self, value, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setTreeDensityPerUnitArea'] = SIGMortality.prototype.setTreeDensityPerUnitArea = function(numberOfTrees, areaUnits) { +SIGMortality.prototype['setTreeDensityPerUnitArea'] = SIGMortality.prototype.setTreeDensityPerUnitArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(numberOfTrees, areaUnits) { var self = this.ptr; if (numberOfTrees && typeof numberOfTrees === 'object') numberOfTrees = numberOfTrees.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; _emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2(self, numberOfTrees, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setTreeHeight'] = SIGMortality.prototype.setTreeHeight = function(treeHeight, treeHeightUnits) { +SIGMortality.prototype['setTreeHeight'] = SIGMortality.prototype.setTreeHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeHeight, treeHeightUnits) { var self = this.ptr; if (treeHeight && typeof treeHeight === 'object') treeHeight = treeHeight.ptr; if (treeHeightUnits && typeof treeHeightUnits === 'object') treeHeightUnits = treeHeightUnits.ptr; _emscripten_bind_SIGMortality_setTreeHeight_2(self, treeHeight, treeHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setUserProvidedWindAdjustmentFactor'] = SIGMortality.prototype.setUserProvidedWindAdjustmentFactor = function(userProvidedWindAdjustmentFactor) { +SIGMortality.prototype['setUserProvidedWindAdjustmentFactor'] = SIGMortality.prototype.setUserProvidedWindAdjustmentFactor = /** @suppress {undefinedVars, duplicate} @this{Object} */function(userProvidedWindAdjustmentFactor) { var self = this.ptr; if (userProvidedWindAdjustmentFactor && typeof userProvidedWindAdjustmentFactor === 'object') userProvidedWindAdjustmentFactor = userProvidedWindAdjustmentFactor.ptr; _emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1(self, userProvidedWindAdjustmentFactor); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setWindHeightInputMode'] = SIGMortality.prototype.setWindHeightInputMode = function(windHeightInputMode) { +SIGMortality.prototype['setWindHeightInputMode'] = SIGMortality.prototype.setWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windHeightInputMode) { var self = this.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGMortality_setWindHeightInputMode_1(self, windHeightInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setWindSpeed'] = SIGMortality.prototype.setWindSpeed = function(windSpeed, windSpeedUnits) { +SIGMortality.prototype['setWindSpeed'] = SIGMortality.prototype.setWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGMortality_setWindSpeed_2(self, windSpeed, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setWindSpeedAndWindHeightInputMode'] = SIGMortality.prototype.setWindSpeedAndWindHeightInputMode = function(windwindSpeed, windSpeedUnits, windHeightInputMode, userProvidedWindAdjustmentFactor) { +SIGMortality.prototype['setWindSpeedAndWindHeightInputMode'] = SIGMortality.prototype.setWindSpeedAndWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windwindSpeed, windSpeedUnits, windHeightInputMode, userProvidedWindAdjustmentFactor) { var self = this.ptr; if (windwindSpeed && typeof windwindSpeed === 'object') windwindSpeed = windwindSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; if (userProvidedWindAdjustmentFactor && typeof userProvidedWindAdjustmentFactor === 'object') userProvidedWindAdjustmentFactor = userProvidedWindAdjustmentFactor.ptr; _emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4(self, windwindSpeed, windSpeedUnits, windHeightInputMode, userProvidedWindAdjustmentFactor); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['__destroy__'] = SIGMortality.prototype.__destroy__ = function() { + SIGMortality.prototype['__destroy__'] = SIGMortality.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGMortality___destroy___0(self); }; - -// Interface: WindSpeedUtility - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function WindSpeedUtility() { +// WindSpeedUtility +/** @suppress {undefinedVars, duplicate} @this{Object} */function WindSpeedUtility() { this.ptr = _emscripten_bind_WindSpeedUtility_WindSpeedUtility_0(); getCache(WindSpeedUtility)[this.ptr] = this; -}; - +};; WindSpeedUtility.prototype = Object.create(WrapperObject.prototype); WindSpeedUtility.prototype.constructor = WindSpeedUtility; WindSpeedUtility.prototype.__class__ = WindSpeedUtility; WindSpeedUtility.__cache__ = {}; Module['WindSpeedUtility'] = WindSpeedUtility; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WindSpeedUtility.prototype['windSpeedAtMidflame'] = WindSpeedUtility.prototype.windSpeedAtMidflame = function(windSpeedAtTwentyFeet, windAdjustmentFactor) { + +WindSpeedUtility.prototype['windSpeedAtMidflame'] = WindSpeedUtility.prototype.windSpeedAtMidflame = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedAtTwentyFeet, windAdjustmentFactor) { var self = this.ptr; if (windSpeedAtTwentyFeet && typeof windSpeedAtTwentyFeet === 'object') windSpeedAtTwentyFeet = windSpeedAtTwentyFeet.ptr; if (windAdjustmentFactor && typeof windAdjustmentFactor === 'object') windAdjustmentFactor = windAdjustmentFactor.ptr; return _emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2(self, windSpeedAtTwentyFeet, windAdjustmentFactor); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WindSpeedUtility.prototype['windSpeedAtTwentyFeetFromTenMeter'] = WindSpeedUtility.prototype.windSpeedAtTwentyFeetFromTenMeter = function(windSpeedAtTenMeters) { +WindSpeedUtility.prototype['windSpeedAtTwentyFeetFromTenMeter'] = WindSpeedUtility.prototype.windSpeedAtTwentyFeetFromTenMeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedAtTenMeters) { var self = this.ptr; if (windSpeedAtTenMeters && typeof windSpeedAtTenMeters === 'object') windSpeedAtTenMeters = windSpeedAtTenMeters.ptr; return _emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1(self, windSpeedAtTenMeters); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WindSpeedUtility.prototype['__destroy__'] = WindSpeedUtility.prototype.__destroy__ = function() { + WindSpeedUtility.prototype['__destroy__'] = WindSpeedUtility.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_WindSpeedUtility___destroy___0(self); }; - -// Interface: SIGFineDeadFuelMoistureTool - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGFineDeadFuelMoistureTool() { +// SIGFineDeadFuelMoistureTool +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGFineDeadFuelMoistureTool() { this.ptr = _emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0(); getCache(SIGFineDeadFuelMoistureTool)[this.ptr] = this; -}; - +};; SIGFineDeadFuelMoistureTool.prototype = Object.create(WrapperObject.prototype); SIGFineDeadFuelMoistureTool.prototype.constructor = SIGFineDeadFuelMoistureTool; SIGFineDeadFuelMoistureTool.prototype.__class__ = SIGFineDeadFuelMoistureTool; SIGFineDeadFuelMoistureTool.__cache__ = {}; Module['SIGFineDeadFuelMoistureTool'] = SIGFineDeadFuelMoistureTool; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['calculate'] = SIGFineDeadFuelMoistureTool.prototype.calculate = function() { + +SIGFineDeadFuelMoistureTool.prototype['calculate'] = SIGFineDeadFuelMoistureTool.prototype.calculate = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['setTimeOfDayIndex'] = SIGFineDeadFuelMoistureTool.prototype.setTimeOfDayIndex = function(timeOfDayIndex) { +SIGFineDeadFuelMoistureTool.prototype['setTimeOfDayIndex'] = SIGFineDeadFuelMoistureTool.prototype.setTimeOfDayIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(timeOfDayIndex) { var self = this.ptr; if (timeOfDayIndex && typeof timeOfDayIndex === 'object') timeOfDayIndex = timeOfDayIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1(self, timeOfDayIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['setSlopeIndex'] = SIGFineDeadFuelMoistureTool.prototype.setSlopeIndex = function(slopeIndex) { +SIGFineDeadFuelMoistureTool.prototype['setSlopeIndex'] = SIGFineDeadFuelMoistureTool.prototype.setSlopeIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeIndex) { var self = this.ptr; if (slopeIndex && typeof slopeIndex === 'object') slopeIndex = slopeIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1(self, slopeIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['setShadingIndex'] = SIGFineDeadFuelMoistureTool.prototype.setShadingIndex = function(shadingIndex) { +SIGFineDeadFuelMoistureTool.prototype['setShadingIndex'] = SIGFineDeadFuelMoistureTool.prototype.setShadingIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(shadingIndex) { var self = this.ptr; if (shadingIndex && typeof shadingIndex === 'object') shadingIndex = shadingIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1(self, shadingIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['setAspectIndex'] = SIGFineDeadFuelMoistureTool.prototype.setAspectIndex = function(aspectIndex) { +SIGFineDeadFuelMoistureTool.prototype['setAspectIndex'] = SIGFineDeadFuelMoistureTool.prototype.setAspectIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspectIndex) { var self = this.ptr; if (aspectIndex && typeof aspectIndex === 'object') aspectIndex = aspectIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1(self, aspectIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['setRHIndex'] = SIGFineDeadFuelMoistureTool.prototype.setRHIndex = function(relativeHumidityIndex) { +SIGFineDeadFuelMoistureTool.prototype['setRHIndex'] = SIGFineDeadFuelMoistureTool.prototype.setRHIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(relativeHumidityIndex) { var self = this.ptr; if (relativeHumidityIndex && typeof relativeHumidityIndex === 'object') relativeHumidityIndex = relativeHumidityIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1(self, relativeHumidityIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['setElevationIndex'] = SIGFineDeadFuelMoistureTool.prototype.setElevationIndex = function(elevationIndex) { +SIGFineDeadFuelMoistureTool.prototype['setElevationIndex'] = SIGFineDeadFuelMoistureTool.prototype.setElevationIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elevationIndex) { var self = this.ptr; if (elevationIndex && typeof elevationIndex === 'object') elevationIndex = elevationIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1(self, elevationIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['setDryBulbIndex'] = SIGFineDeadFuelMoistureTool.prototype.setDryBulbIndex = function(dryBulbIndex) { +SIGFineDeadFuelMoistureTool.prototype['setDryBulbIndex'] = SIGFineDeadFuelMoistureTool.prototype.setDryBulbIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dryBulbIndex) { var self = this.ptr; if (dryBulbIndex && typeof dryBulbIndex === 'object') dryBulbIndex = dryBulbIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1(self, dryBulbIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['setMonthIndex'] = SIGFineDeadFuelMoistureTool.prototype.setMonthIndex = function(monthIndex) { +SIGFineDeadFuelMoistureTool.prototype['setMonthIndex'] = SIGFineDeadFuelMoistureTool.prototype.setMonthIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(monthIndex) { var self = this.ptr; if (monthIndex && typeof monthIndex === 'object') monthIndex = monthIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1(self, monthIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getFineDeadFuelMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getFineDeadFuelMoisture = function(desiredUnits) { +SIGFineDeadFuelMoistureTool.prototype['getFineDeadFuelMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getFineDeadFuelMoisture = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getSlopeIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getSlopeIndexSize = function() { +SIGFineDeadFuelMoistureTool.prototype['getSlopeIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getSlopeIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getElevationIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getElevationIndexSize = function() { +SIGFineDeadFuelMoistureTool.prototype['getElevationIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getElevationIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getMonthIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getMonthIndexSize = function() { +SIGFineDeadFuelMoistureTool.prototype['getMonthIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getMonthIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getDryBulbTemperatureIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getDryBulbTemperatureIndexSize = function() { +SIGFineDeadFuelMoistureTool.prototype['getDryBulbTemperatureIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getDryBulbTemperatureIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getReferenceMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getReferenceMoisture = function(desiredUnits) { +SIGFineDeadFuelMoistureTool.prototype['getReferenceMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getReferenceMoisture = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['calculateByIndex'] = SIGFineDeadFuelMoistureTool.prototype.calculateByIndex = function(aspectIndex, dryBulbIndex, elevationIndex, monthIndex, relativeHumidityIndex, shadingIndex, slopeIndex, timeOfDayIndex) { +SIGFineDeadFuelMoistureTool.prototype['calculateByIndex'] = SIGFineDeadFuelMoistureTool.prototype.calculateByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspectIndex, dryBulbIndex, elevationIndex, monthIndex, relativeHumidityIndex, shadingIndex, slopeIndex, timeOfDayIndex) { var self = this.ptr; if (aspectIndex && typeof aspectIndex === 'object') aspectIndex = aspectIndex.ptr; if (dryBulbIndex && typeof dryBulbIndex === 'object') dryBulbIndex = dryBulbIndex.ptr; @@ -6234,555 +5392,467 @@ SIGFineDeadFuelMoistureTool.prototype['calculateByIndex'] = SIGFineDeadFuelMoist if (slopeIndex && typeof slopeIndex === 'object') slopeIndex = slopeIndex.ptr; if (timeOfDayIndex && typeof timeOfDayIndex === 'object') timeOfDayIndex = timeOfDayIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8(self, aspectIndex, dryBulbIndex, elevationIndex, monthIndex, relativeHumidityIndex, shadingIndex, slopeIndex, timeOfDayIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getTimeOfDayIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getTimeOfDayIndexSize = function() { +SIGFineDeadFuelMoistureTool.prototype['getTimeOfDayIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getTimeOfDayIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getCorrectionMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getCorrectionMoisture = function(desiredUnits) { +SIGFineDeadFuelMoistureTool.prototype['getCorrectionMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getCorrectionMoisture = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getAspectIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getAspectIndexSize = function() { +SIGFineDeadFuelMoistureTool.prototype['getAspectIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getAspectIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getShadingIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getShadingIndexSize = function() { +SIGFineDeadFuelMoistureTool.prototype['getShadingIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getShadingIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getRelativeHumidityIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getRelativeHumidityIndexSize = function() { +SIGFineDeadFuelMoistureTool.prototype['getRelativeHumidityIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getRelativeHumidityIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0(self); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['__destroy__'] = SIGFineDeadFuelMoistureTool.prototype.__destroy__ = function() { + SIGFineDeadFuelMoistureTool.prototype['__destroy__'] = SIGFineDeadFuelMoistureTool.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0(self); }; - -// Interface: SIGSlopeTool - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGSlopeTool() { +// SIGSlopeTool +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGSlopeTool() { this.ptr = _emscripten_bind_SIGSlopeTool_SIGSlopeTool_0(); getCache(SIGSlopeTool)[this.ptr] = this; -}; - +};; SIGSlopeTool.prototype = Object.create(WrapperObject.prototype); SIGSlopeTool.prototype.constructor = SIGSlopeTool; SIGSlopeTool.prototype.__class__ = SIGSlopeTool; SIGSlopeTool.__cache__ = {}; Module['SIGSlopeTool'] = SIGSlopeTool; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getCentimetersPerKilometerAtIndex'] = SIGSlopeTool.prototype.getCentimetersPerKilometerAtIndex = function(index) { + +SIGSlopeTool.prototype['getCentimetersPerKilometerAtIndex'] = SIGSlopeTool.prototype.getCentimetersPerKilometerAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getCentimetersPerKilometerAtRepresentativeFraction'] = SIGSlopeTool.prototype.getCentimetersPerKilometerAtRepresentativeFraction = function(representativeFraction) { +SIGSlopeTool.prototype['getCentimetersPerKilometerAtRepresentativeFraction'] = SIGSlopeTool.prototype.getCentimetersPerKilometerAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1(self, representativeFraction); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistance'] = SIGSlopeTool.prototype.getHorizontalDistance = function(horizontalDistanceIndex, mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistance'] = SIGSlopeTool.prototype.getHorizontalDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(horizontalDistanceIndex, mapDistanceUnits) { var self = this.ptr; if (horizontalDistanceIndex && typeof horizontalDistanceIndex === 'object') horizontalDistanceIndex = horizontalDistanceIndex.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistance_2(self, horizontalDistanceIndex, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceAtIndex'] = SIGSlopeTool.prototype.getHorizontalDistanceAtIndex = function(index, mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceAtIndex'] = SIGSlopeTool.prototype.getHorizontalDistanceAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, mapDistanceUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2(self, index, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceFifteen'] = SIGSlopeTool.prototype.getHorizontalDistanceFifteen = function(mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceFifteen'] = SIGSlopeTool.prototype.getHorizontalDistanceFifteen = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1(self, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceFourtyFive'] = SIGSlopeTool.prototype.getHorizontalDistanceFourtyFive = function(mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceFourtyFive'] = SIGSlopeTool.prototype.getHorizontalDistanceFourtyFive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1(self, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceMaxSlope'] = SIGSlopeTool.prototype.getHorizontalDistanceMaxSlope = function(slopeUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceMaxSlope'] = SIGSlopeTool.prototype.getHorizontalDistanceMaxSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeUnits) { var self = this.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1(self, slopeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceNinety'] = SIGSlopeTool.prototype.getHorizontalDistanceNinety = function(mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceNinety'] = SIGSlopeTool.prototype.getHorizontalDistanceNinety = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1(self, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceSeventy'] = SIGSlopeTool.prototype.getHorizontalDistanceSeventy = function(mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceSeventy'] = SIGSlopeTool.prototype.getHorizontalDistanceSeventy = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1(self, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceSixty'] = SIGSlopeTool.prototype.getHorizontalDistanceSixty = function(mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceSixty'] = SIGSlopeTool.prototype.getHorizontalDistanceSixty = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1(self, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceThirty'] = SIGSlopeTool.prototype.getHorizontalDistanceThirty = function(mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceThirty'] = SIGSlopeTool.prototype.getHorizontalDistanceThirty = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1(self, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceZero'] = SIGSlopeTool.prototype.getHorizontalDistanceZero = function(mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceZero'] = SIGSlopeTool.prototype.getHorizontalDistanceZero = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1(self, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getInchesPerMileAtIndex'] = SIGSlopeTool.prototype.getInchesPerMileAtIndex = function(index) { +SIGSlopeTool.prototype['getInchesPerMileAtIndex'] = SIGSlopeTool.prototype.getInchesPerMileAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getInchesPerMileAtRepresentativeFraction'] = SIGSlopeTool.prototype.getInchesPerMileAtRepresentativeFraction = function(representativeFraction) { +SIGSlopeTool.prototype['getInchesPerMileAtRepresentativeFraction'] = SIGSlopeTool.prototype.getInchesPerMileAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1(self, representativeFraction); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getKilometersPerCentimeterAtIndex'] = SIGSlopeTool.prototype.getKilometersPerCentimeterAtIndex = function(index) { +SIGSlopeTool.prototype['getKilometersPerCentimeterAtIndex'] = SIGSlopeTool.prototype.getKilometersPerCentimeterAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getKilometersPerCentimeterAtRepresentativeFraction'] = SIGSlopeTool.prototype.getKilometersPerCentimeterAtRepresentativeFraction = function(representativeFraction) { +SIGSlopeTool.prototype['getKilometersPerCentimeterAtRepresentativeFraction'] = SIGSlopeTool.prototype.getKilometersPerCentimeterAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1(self, representativeFraction); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getMilesPerInchAtIndex'] = SIGSlopeTool.prototype.getMilesPerInchAtIndex = function(index) { +SIGSlopeTool.prototype['getMilesPerInchAtIndex'] = SIGSlopeTool.prototype.getMilesPerInchAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getMilesPerInchAtRepresentativeFraction'] = SIGSlopeTool.prototype.getMilesPerInchAtRepresentativeFraction = function(representativeFraction) { +SIGSlopeTool.prototype['getMilesPerInchAtRepresentativeFraction'] = SIGSlopeTool.prototype.getMilesPerInchAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1(self, representativeFraction); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getSlopeElevationChangeFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeElevationChangeFromMapMeasurements = function(elevationUnits) { +SIGSlopeTool.prototype['getSlopeElevationChangeFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeElevationChangeFromMapMeasurements = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elevationUnits) { var self = this.ptr; if (elevationUnits && typeof elevationUnits === 'object') elevationUnits = elevationUnits.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1(self, elevationUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getSlopeFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurements = function(slopeUnits) { +SIGSlopeTool.prototype['getSlopeFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurements = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeUnits) { var self = this.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1(self, slopeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getSlopeHorizontalDistanceFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeHorizontalDistanceFromMapMeasurements = function(distanceUnits) { +SIGSlopeTool.prototype['getSlopeHorizontalDistanceFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeHorizontalDistanceFromMapMeasurements = /** @suppress {undefinedVars, duplicate} @this{Object} */function(distanceUnits) { var self = this.ptr; if (distanceUnits && typeof distanceUnits === 'object') distanceUnits = distanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1(self, distanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getSlopeFromMapMeasurementsInDegrees'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurementsInDegrees = function() { +SIGSlopeTool.prototype['getSlopeFromMapMeasurementsInDegrees'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurementsInDegrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getSlopeFromMapMeasurementsInPercent'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurementsInPercent = function() { +SIGSlopeTool.prototype['getSlopeFromMapMeasurementsInPercent'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurementsInPercent = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getNumberOfHorizontalDistances'] = SIGSlopeTool.prototype.getNumberOfHorizontalDistances = function() { +SIGSlopeTool.prototype['getNumberOfHorizontalDistances'] = SIGSlopeTool.prototype.getNumberOfHorizontalDistances = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getNumberOfRepresentativeFractions'] = SIGSlopeTool.prototype.getNumberOfRepresentativeFractions = function() { +SIGSlopeTool.prototype['getNumberOfRepresentativeFractions'] = SIGSlopeTool.prototype.getNumberOfRepresentativeFractions = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getRepresentativeFractionAtIndex'] = SIGSlopeTool.prototype.getRepresentativeFractionAtIndex = function(index) { +SIGSlopeTool.prototype['getRepresentativeFractionAtIndex'] = SIGSlopeTool.prototype.getRepresentativeFractionAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getRepresentativeFractionAtRepresentativeFraction'] = SIGSlopeTool.prototype.getRepresentativeFractionAtRepresentativeFraction = function(representativeFraction) { +SIGSlopeTool.prototype['getRepresentativeFractionAtRepresentativeFraction'] = SIGSlopeTool.prototype.getRepresentativeFractionAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1(self, representativeFraction); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['calculateHorizontalDistance'] = SIGSlopeTool.prototype.calculateHorizontalDistance = function() { +SIGSlopeTool.prototype['calculateHorizontalDistance'] = SIGSlopeTool.prototype.calculateHorizontalDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['calculateSlopeFromMapMeasurements'] = SIGSlopeTool.prototype.calculateSlopeFromMapMeasurements = function() { +SIGSlopeTool.prototype['calculateSlopeFromMapMeasurements'] = SIGSlopeTool.prototype.calculateSlopeFromMapMeasurements = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['setCalculatedMapDistance'] = SIGSlopeTool.prototype.setCalculatedMapDistance = function(calculatedMapDistance, distanceUnits) { +SIGSlopeTool.prototype['setCalculatedMapDistance'] = SIGSlopeTool.prototype.setCalculatedMapDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(calculatedMapDistance, distanceUnits) { var self = this.ptr; if (calculatedMapDistance && typeof calculatedMapDistance === 'object') calculatedMapDistance = calculatedMapDistance.ptr; if (distanceUnits && typeof distanceUnits === 'object') distanceUnits = distanceUnits.ptr; _emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2(self, calculatedMapDistance, distanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['setContourInterval'] = SIGSlopeTool.prototype.setContourInterval = function(contourInterval, contourUnits) { +SIGSlopeTool.prototype['setContourInterval'] = SIGSlopeTool.prototype.setContourInterval = /** @suppress {undefinedVars, duplicate} @this{Object} */function(contourInterval, contourUnits) { var self = this.ptr; if (contourInterval && typeof contourInterval === 'object') contourInterval = contourInterval.ptr; if (contourUnits && typeof contourUnits === 'object') contourUnits = contourUnits.ptr; _emscripten_bind_SIGSlopeTool_setContourInterval_2(self, contourInterval, contourUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['setMapDistance'] = SIGSlopeTool.prototype.setMapDistance = function(mapDistance, distanceUnits) { +SIGSlopeTool.prototype['setMapDistance'] = SIGSlopeTool.prototype.setMapDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistance, distanceUnits) { var self = this.ptr; if (mapDistance && typeof mapDistance === 'object') mapDistance = mapDistance.ptr; if (distanceUnits && typeof distanceUnits === 'object') distanceUnits = distanceUnits.ptr; _emscripten_bind_SIGSlopeTool_setMapDistance_2(self, mapDistance, distanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['setMapRepresentativeFraction'] = SIGSlopeTool.prototype.setMapRepresentativeFraction = function(mapRepresentativeFraction) { +SIGSlopeTool.prototype['setMapRepresentativeFraction'] = SIGSlopeTool.prototype.setMapRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapRepresentativeFraction) { var self = this.ptr; if (mapRepresentativeFraction && typeof mapRepresentativeFraction === 'object') mapRepresentativeFraction = mapRepresentativeFraction.ptr; _emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1(self, mapRepresentativeFraction); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['setMaxSlopeSteepness'] = SIGSlopeTool.prototype.setMaxSlopeSteepness = function(maxSlopeSteepness) { +SIGSlopeTool.prototype['setMaxSlopeSteepness'] = SIGSlopeTool.prototype.setMaxSlopeSteepness = /** @suppress {undefinedVars, duplicate} @this{Object} */function(maxSlopeSteepness) { var self = this.ptr; if (maxSlopeSteepness && typeof maxSlopeSteepness === 'object') maxSlopeSteepness = maxSlopeSteepness.ptr; _emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1(self, maxSlopeSteepness); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['setNumberOfContours'] = SIGSlopeTool.prototype.setNumberOfContours = function(numberOfContours) { +SIGSlopeTool.prototype['setNumberOfContours'] = SIGSlopeTool.prototype.setNumberOfContours = /** @suppress {undefinedVars, duplicate} @this{Object} */function(numberOfContours) { var self = this.ptr; if (numberOfContours && typeof numberOfContours === 'object') numberOfContours = numberOfContours.ptr; _emscripten_bind_SIGSlopeTool_setNumberOfContours_1(self, numberOfContours); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['__destroy__'] = SIGSlopeTool.prototype.__destroy__ = function() { + SIGSlopeTool.prototype['__destroy__'] = SIGSlopeTool.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSlopeTool___destroy___0(self); }; - -// Interface: VaporPressureDeficitCalculator - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function VaporPressureDeficitCalculator() { +// VaporPressureDeficitCalculator +/** @suppress {undefinedVars, duplicate} @this{Object} */function VaporPressureDeficitCalculator() { this.ptr = _emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0(); getCache(VaporPressureDeficitCalculator)[this.ptr] = this; -}; - +};; VaporPressureDeficitCalculator.prototype = Object.create(WrapperObject.prototype); VaporPressureDeficitCalculator.prototype.constructor = VaporPressureDeficitCalculator; VaporPressureDeficitCalculator.prototype.__class__ = VaporPressureDeficitCalculator; VaporPressureDeficitCalculator.__cache__ = {}; Module['VaporPressureDeficitCalculator'] = VaporPressureDeficitCalculator; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -VaporPressureDeficitCalculator.prototype['runCalculation'] = VaporPressureDeficitCalculator.prototype.runCalculation = function() { + +VaporPressureDeficitCalculator.prototype['runCalculation'] = VaporPressureDeficitCalculator.prototype.runCalculation = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -VaporPressureDeficitCalculator.prototype['setTemperature'] = VaporPressureDeficitCalculator.prototype.setTemperature = function(temperature, units) { +VaporPressureDeficitCalculator.prototype['setTemperature'] = VaporPressureDeficitCalculator.prototype.setTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperature, units) { var self = this.ptr; if (temperature && typeof temperature === 'object') temperature = temperature.ptr; if (units && typeof units === 'object') units = units.ptr; _emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2(self, temperature, units); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -VaporPressureDeficitCalculator.prototype['setRelativeHumidity'] = VaporPressureDeficitCalculator.prototype.setRelativeHumidity = function(relativeHumidity, units) { +VaporPressureDeficitCalculator.prototype['setRelativeHumidity'] = VaporPressureDeficitCalculator.prototype.setRelativeHumidity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(relativeHumidity, units) { var self = this.ptr; if (relativeHumidity && typeof relativeHumidity === 'object') relativeHumidity = relativeHumidity.ptr; if (units && typeof units === 'object') units = units.ptr; _emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2(self, relativeHumidity, units); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -VaporPressureDeficitCalculator.prototype['getVaporPressureDeficit'] = VaporPressureDeficitCalculator.prototype.getVaporPressureDeficit = function(units) { +VaporPressureDeficitCalculator.prototype['getVaporPressureDeficit'] = VaporPressureDeficitCalculator.prototype.getVaporPressureDeficit = /** @suppress {undefinedVars, duplicate} @this{Object} */function(units) { var self = this.ptr; if (units && typeof units === 'object') units = units.ptr; return _emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1(self, units); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -VaporPressureDeficitCalculator.prototype['__destroy__'] = VaporPressureDeficitCalculator.prototype.__destroy__ = function() { + VaporPressureDeficitCalculator.prototype['__destroy__'] = VaporPressureDeficitCalculator.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_VaporPressureDeficitCalculator___destroy___0(self); }; - -// Interface: RelativeHumidityTool - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function RelativeHumidityTool() { +// RelativeHumidityTool +/** @suppress {undefinedVars, duplicate} @this{Object} */function RelativeHumidityTool() { this.ptr = _emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0(); getCache(RelativeHumidityTool)[this.ptr] = this; -}; - +};; RelativeHumidityTool.prototype = Object.create(WrapperObject.prototype); RelativeHumidityTool.prototype.constructor = RelativeHumidityTool; RelativeHumidityTool.prototype.__class__ = RelativeHumidityTool; RelativeHumidityTool.__cache__ = {}; Module['RelativeHumidityTool'] = RelativeHumidityTool; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['calculate'] = RelativeHumidityTool.prototype.calculate = function() { + +RelativeHumidityTool.prototype['calculate'] = RelativeHumidityTool.prototype.calculate = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_RelativeHumidityTool_calculate_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['getDryBulbTemperature'] = RelativeHumidityTool.prototype.getDryBulbTemperature = function(temperatureUnits) { +RelativeHumidityTool.prototype['getDryBulbTemperature'] = RelativeHumidityTool.prototype.getDryBulbTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperatureUnits) { var self = this.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1(self, temperatureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['getSiteElevation'] = RelativeHumidityTool.prototype.getSiteElevation = function(lengthUnits) { +RelativeHumidityTool.prototype['getSiteElevation'] = RelativeHumidityTool.prototype.getSiteElevation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getSiteElevation_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['getWetBulbTemperature'] = RelativeHumidityTool.prototype.getWetBulbTemperature = function(temperatureUnits) { +RelativeHumidityTool.prototype['getWetBulbTemperature'] = RelativeHumidityTool.prototype.getWetBulbTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperatureUnits) { var self = this.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1(self, temperatureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['getDewPointTemperature'] = RelativeHumidityTool.prototype.getDewPointTemperature = function(temperatureUnits) { +RelativeHumidityTool.prototype['getDewPointTemperature'] = RelativeHumidityTool.prototype.getDewPointTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperatureUnits) { var self = this.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1(self, temperatureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['getRelativeHumidity'] = RelativeHumidityTool.prototype.getRelativeHumidity = function(fractionUnits) { +RelativeHumidityTool.prototype['getRelativeHumidity'] = RelativeHumidityTool.prototype.getRelativeHumidity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fractionUnits) { var self = this.ptr; if (fractionUnits && typeof fractionUnits === 'object') fractionUnits = fractionUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1(self, fractionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['getWetBulbDepression'] = RelativeHumidityTool.prototype.getWetBulbDepression = function(temperatureUnits) { +RelativeHumidityTool.prototype['getWetBulbDepression'] = RelativeHumidityTool.prototype.getWetBulbDepression = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperatureUnits) { var self = this.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1(self, temperatureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['setDryBulbTemperature'] = RelativeHumidityTool.prototype.setDryBulbTemperature = function(dryBulbTemperature, temperatureUnits) { +RelativeHumidityTool.prototype['setDryBulbTemperature'] = RelativeHumidityTool.prototype.setDryBulbTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dryBulbTemperature, temperatureUnits) { var self = this.ptr; if (dryBulbTemperature && typeof dryBulbTemperature === 'object') dryBulbTemperature = dryBulbTemperature.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; _emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2(self, dryBulbTemperature, temperatureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['setSiteElevation'] = RelativeHumidityTool.prototype.setSiteElevation = function(siteElevation, lengthUnits) { +RelativeHumidityTool.prototype['setSiteElevation'] = RelativeHumidityTool.prototype.setSiteElevation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(siteElevation, lengthUnits) { var self = this.ptr; if (siteElevation && typeof siteElevation === 'object') siteElevation = siteElevation.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_RelativeHumidityTool_setSiteElevation_2(self, siteElevation, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.prototype.setWetBulbTemperature = function(wetBulbTemperature, temperatureUnits) { +RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.prototype.setWetBulbTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(wetBulbTemperature, temperatureUnits) { var self = this.ptr; if (wetBulbTemperature && typeof wetBulbTemperature === 'object') wetBulbTemperature = wetBulbTemperature.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; _emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2(self, wetBulbTemperature, temperatureUnits); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['__destroy__'] = RelativeHumidityTool.prototype.__destroy__ = function() { + RelativeHumidityTool.prototype['__destroy__'] = RelativeHumidityTool.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_RelativeHumidityTool___destroy___0(self); }; - -// Interface: SafeSeparationDistanceCalculator - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SafeSeparationDistanceCalculator() { +// SafeSeparationDistanceCalculator +/** @suppress {undefinedVars, duplicate} @this{Object} */function SafeSeparationDistanceCalculator() { this.ptr = _emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0(); getCache(SafeSeparationDistanceCalculator)[this.ptr] = this; -}; - +};; SafeSeparationDistanceCalculator.prototype = Object.create(WrapperObject.prototype); SafeSeparationDistanceCalculator.prototype.constructor = SafeSeparationDistanceCalculator; SafeSeparationDistanceCalculator.prototype.__class__ = SafeSeparationDistanceCalculator; SafeSeparationDistanceCalculator.__cache__ = {}; Module['SafeSeparationDistanceCalculator'] = SafeSeparationDistanceCalculator; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['calculate'] = SafeSeparationDistanceCalculator.prototype.calculate = function() { + +SafeSeparationDistanceCalculator.prototype['calculate'] = SafeSeparationDistanceCalculator.prototype.calculate = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SafeSeparationDistanceCalculator_calculate_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['getBurningCondition'] = SafeSeparationDistanceCalculator.prototype.getBurningCondition = function() { +SafeSeparationDistanceCalculator.prototype['getBurningCondition'] = SafeSeparationDistanceCalculator.prototype.getBurningCondition = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['getSlopeClass'] = SafeSeparationDistanceCalculator.prototype.getSlopeClass = function() { +SafeSeparationDistanceCalculator.prototype['getSlopeClass'] = SafeSeparationDistanceCalculator.prototype.getSlopeClass = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['getSpeedClass'] = SafeSeparationDistanceCalculator.prototype.getSpeedClass = function() { +SafeSeparationDistanceCalculator.prototype['getSpeedClass'] = SafeSeparationDistanceCalculator.prototype.getSpeedClass = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['getSafeSeparationDistance'] = SafeSeparationDistanceCalculator.prototype.getSafeSeparationDistance = function(lengthUnits) { +SafeSeparationDistanceCalculator.prototype['getSafeSeparationDistance'] = SafeSeparationDistanceCalculator.prototype.getSafeSeparationDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['getSafetyZoneSize'] = SafeSeparationDistanceCalculator.prototype.getSafetyZoneSize = function(areaUnits) { +SafeSeparationDistanceCalculator.prototype['getSafetyZoneSize'] = SafeSeparationDistanceCalculator.prototype.getSafetyZoneSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['getVegetationHeight'] = SafeSeparationDistanceCalculator.prototype.getVegetationHeight = function(lengthUnits) { +SafeSeparationDistanceCalculator.prototype['getVegetationHeight'] = SafeSeparationDistanceCalculator.prototype.getVegetationHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['getSafetyCondition'] = SafeSeparationDistanceCalculator.prototype.getSafetyCondition = function() { +SafeSeparationDistanceCalculator.prototype['getSafetyCondition'] = SafeSeparationDistanceCalculator.prototype.getSafetyCondition = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['setBurningCondition'] = SafeSeparationDistanceCalculator.prototype.setBurningCondition = function(condition) { +SafeSeparationDistanceCalculator.prototype['setBurningCondition'] = SafeSeparationDistanceCalculator.prototype.setBurningCondition = /** @suppress {undefinedVars, duplicate} @this{Object} */function(condition) { var self = this.ptr; if (condition && typeof condition === 'object') condition = condition.ptr; _emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1(self, condition); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['setSlopeClass'] = SafeSeparationDistanceCalculator.prototype.setSlopeClass = function(slope) { +SafeSeparationDistanceCalculator.prototype['setSlopeClass'] = SafeSeparationDistanceCalculator.prototype.setSlopeClass = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slope) { var self = this.ptr; if (slope && typeof slope === 'object') slope = slope.ptr; _emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1(self, slope); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['setSpeedClass'] = SafeSeparationDistanceCalculator.prototype.setSpeedClass = function(speed) { +SafeSeparationDistanceCalculator.prototype['setSpeedClass'] = SafeSeparationDistanceCalculator.prototype.setSpeedClass = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speed) { var self = this.ptr; if (speed && typeof speed === 'object') speed = speed.ptr; _emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1(self, speed); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['setVegetationHeight'] = SafeSeparationDistanceCalculator.prototype.setVegetationHeight = function(height, lengthUnits) { +SafeSeparationDistanceCalculator.prototype['setVegetationHeight'] = SafeSeparationDistanceCalculator.prototype.setVegetationHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(height, lengthUnits) { var self = this.ptr; if (height && typeof height === 'object') height = height.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2(self, height, lengthUnits); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistanceCalculator.prototype.__destroy__ = function() { + SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistanceCalculator.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SafeSeparationDistanceCalculator___destroy___0(self); }; - (function() { function setupEnums() { -// $AreaUnits_AreaUnitsEnum + + // AreaUnits_AreaUnitsEnum Module['AreaUnits']['SquareFeet'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet(); @@ -6797,21 +5867,24 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['AreaUnits']['SquareKilometers'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers(); -// $BasalAreaUnits_BasalAreaUnitsEnum + + // BasalAreaUnits_BasalAreaUnitsEnum Module['BasalAreaUnits']['SquareFeetPerAcre'] = _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre(); Module['BasalAreaUnits']['SquareMetersPerHectare'] = _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare(); -// $FractionUnits_FractionUnitsEnum + + // FractionUnits_FractionUnitsEnum Module['FractionUnits']['Fraction'] = _emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction(); Module['FractionUnits']['Percent'] = _emscripten_enum_FractionUnits_FractionUnitsEnum_Percent(); -// $LengthUnits_LengthUnitsEnum + + // LengthUnits_LengthUnitsEnum Module['LengthUnits']['Feet'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Feet(); @@ -6830,7 +5903,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['LengthUnits']['Kilometers'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers(); -// $LoadingUnits_LoadingUnitsEnum + + // LoadingUnits_LoadingUnitsEnum Module['LoadingUnits']['PoundsPerSquareFoot'] = _emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot(); @@ -6841,7 +5915,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['LoadingUnits']['KilogramsPerSquareMeter'] = _emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter(); -// $SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum + + // SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum Module['SurfaceAreaToVolumeUnits']['SquareFeetOverCubicFeet'] = _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet(); @@ -6852,7 +5927,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['SurfaceAreaToVolumeUnits']['SquareCentimetersOverCubicCentimeters'] = _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters(); -// $SpeedUnits_SpeedUnitsEnum + + // SpeedUnits_SpeedUnitsEnum Module['SpeedUnits']['FeetPerMinute'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute(); @@ -6867,7 +5943,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['SpeedUnits']['KilometersPerHour'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour(); -// $PressureUnits_PressureUnitsEnum + + // PressureUnits_PressureUnitsEnum Module['PressureUnits']['Pascal'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal(); @@ -6888,35 +5965,40 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['PressureUnits']['PoundPerSquareInch'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch(); -// $SlopeUnits_SlopeUnitsEnum + + // SlopeUnits_SlopeUnitsEnum Module['SlopeUnits']['Degrees'] = _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees(); Module['SlopeUnits']['Percent'] = _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent(); -// $DensityUnits_DensityUnitsEnum + + // DensityUnits_DensityUnitsEnum Module['DensityUnits']['PoundsPerCubicFoot'] = _emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot(); Module['DensityUnits']['KilogramsPerCubicMeter'] = _emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter(); -// $HeatOfCombustionUnits_HeatOfCombustionUnitsEnum + + // HeatOfCombustionUnits_HeatOfCombustionUnitsEnum Module['HeatOfCombustionUnits']['BtusPerPound'] = _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound(); Module['HeatOfCombustionUnits']['KilojoulesPerKilogram'] = _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram(); -// $HeatSinkUnits_HeatSinkUnitsEnum + + // HeatSinkUnits_HeatSinkUnitsEnum Module['HeatSinkUnits']['BtusPerCubicFoot'] = _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot(); Module['HeatSinkUnits']['KilojoulesPerCubicMeter'] = _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter(); -// $HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum + + // HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum Module['HeatPerUnitAreaUnits']['BtusPerSquareFoot'] = _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot(); @@ -6925,7 +6007,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['HeatPerUnitAreaUnits']['KilowattSecondsPerSquareMeter'] = _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter(); -// $HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum + + // HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum Module['HeatSourceAndReactionIntensityUnits']['BtusPerSquareFootPerMinute'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute(); @@ -6938,7 +6021,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['HeatSourceAndReactionIntensityUnits']['KilowattsPerSquareMeter'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter(); -// $FirelineIntensityUnits_FirelineIntensityUnitsEnum + + // FirelineIntensityUnits_FirelineIntensityUnitsEnum Module['FirelineIntensityUnits']['BtusPerFootPerSecond'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond(); @@ -6951,7 +6035,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['FirelineIntensityUnits']['KilowattsPerMeter'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter(); -// $TemperatureUnits_TemperatureUnitsEnum + + // TemperatureUnits_TemperatureUnitsEnum Module['TemperatureUnits']['Fahrenheit'] = _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit(); @@ -6960,7 +6045,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['TemperatureUnits']['Kelvin'] = _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin(); -// $TimeUnits_TimeUnitsEnum + + // TimeUnits_TimeUnitsEnum Module['TimeUnits']['Minutes'] = _emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes(); @@ -6969,14 +6055,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['TimeUnits']['Hours'] = _emscripten_enum_TimeUnits_TimeUnitsEnum_Hours(); -// $ContainTactic_ContainTacticEnum + + // ContainTactic_ContainTacticEnum Module['HeadAttack'] = _emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack(); Module['RearAttack'] = _emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack(); -// $ContainStatus_ContainStatusEnum + + // ContainStatus_ContainStatusEnum Module['Unreported'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Unreported(); @@ -6997,7 +6085,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['TimeLimitExceeded'] = _emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded(); -// $ContainFlank_ContainFlankEnum + + // ContainFlank_ContainFlankEnum Module['LeftFlank'] = _emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank(); @@ -7008,14 +6097,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['NeitherFlank'] = _emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank(); -// $ContainMode + + // ContainMode Module['Default'] = _emscripten_enum_ContainMode_Default(); Module['ComputeWithOptimalResource'] = _emscripten_enum_ContainMode_ComputeWithOptimalResource(); -// $IgnitionFuelBedType_IgnitionFuelBedTypeEnum + + // IgnitionFuelBedType_IgnitionFuelBedTypeEnum Module['PonderosaPineLitter'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter(); @@ -7034,7 +6125,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['PeatMoss'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss(); -// $LightningCharge_LightningChargeEnum + + // LightningCharge_LightningChargeEnum Module['Negative'] = _emscripten_enum_LightningCharge_LightningChargeEnum_Negative(); @@ -7043,14 +6135,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['Unknown'] = _emscripten_enum_LightningCharge_LightningChargeEnum_Unknown(); -// $SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum + + // SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum Module['CLOSED'] = _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED(); Module['OPEN'] = _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN(); -// $SpotTreeSpecies_SpotTreeSpeciesEnum + + // SpotTreeSpecies_SpotTreeSpeciesEnum Module['ENGELMANN_SPRUCE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE(); @@ -7081,7 +6175,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['LOBLOLLY_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE(); -// $SpotFireLocation_SpotFireLocationEnum + + // SpotFireLocation_SpotFireLocationEnum Module['MIDSLOPE_WINDWARD'] = _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD(); @@ -7092,14 +6187,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['RIDGE_TOP'] = _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP(); -// $FuelLifeState_FuelLifeStateEnum + + // FuelLifeState_FuelLifeStateEnum Module['Dead'] = _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead(); Module['Live'] = _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live(); -// $FuelConstantsEnum_FuelConstantsEnum + + // FuelConstantsEnum_FuelConstantsEnum Module['MaxLifeStates'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates(); @@ -7114,14 +6211,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['MaxFuelModels'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels(); -// $AspenFireSeverity_AspenFireSeverityEnum + + // AspenFireSeverity_AspenFireSeverityEnum Module['Low'] = _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low(); Module['Moderate'] = _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate(); -// $ChaparralFuelType_ChaparralFuelTypeEnum + + // ChaparralFuelType_ChaparralFuelTypeEnum Module['NotSet'] = _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet(); @@ -7130,14 +6229,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['MixedBrush'] = _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush(); -// $ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum + + // ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum Module['DirectFuelLoad'] = _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad(); Module['FuelLoadFromDepthAndChaparralType'] = _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType(); -// $MoistureInputMode_MoistureInputModeEnum + + // MoistureInputMode_MoistureInputModeEnum Module['BySizeClass'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass(); @@ -7150,7 +6251,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['MoistureScenario'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario(); -// $MoistureClassInput_MoistureClassInputEnum + + // MoistureClassInput_MoistureClassInputEnum Module['OneHour'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour(); @@ -7167,14 +6269,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['LiveAggregate'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate(); -// $SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum + + // SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum Module['FromIgnitionPoint'] = _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint(); Module['FromPerimeter'] = _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter(); -// $TwoFuelModelsMethod_TwoFuelModelsMethodEnum + + // TwoFuelModelsMethod_TwoFuelModelsMethodEnum Module['NoMethod'] = _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod(); @@ -7185,14 +6289,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['TwoDimensional'] = _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional(); -// $WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum + + // WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum Module['Unsheltered'] = _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered(); Module['Sheltered'] = _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered(); -// $WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum + + // WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum Module['UserInput'] = _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput(); @@ -7201,14 +6307,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['DontUseCrownRatio'] = _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio(); -// $WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum + + // WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum Module['RelativeToUpslope'] = _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope(); Module['RelativeToNorth'] = _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth(); -// $WindHeightInputMode_WindHeightInputModeEnum + + // WindHeightInputMode_WindHeightInputModeEnum Module['DirectMidflame'] = _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame(); @@ -7217,14 +6325,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['TenMeter'] = _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter(); -// $WindUpslopeAlignmentMode + + // WindUpslopeAlignmentMode Module['NotAligned'] = _emscripten_enum_WindUpslopeAlignmentMode_NotAligned(); Module['Aligned'] = _emscripten_enum_WindUpslopeAlignmentMode_Aligned(); -// $SurfaceRunInDirectionOf + + // SurfaceRunInDirectionOf Module['MaxSpread'] = _emscripten_enum_SurfaceRunInDirectionOf_MaxSpread(); @@ -7233,7 +6343,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['HeadingBackingFlanking'] = _emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking(); -// $FireType_FireTypeEnum + + // FireType_FireTypeEnum Module['Surface'] = _emscripten_enum_FireType_FireTypeEnum_Surface(); @@ -7244,7 +6355,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['Crowning'] = _emscripten_enum_FireType_FireTypeEnum_Crowning(); -// $BeetleDamage + + // BeetleDamage Module['not_set'] = _emscripten_enum_BeetleDamage_not_set(); @@ -7253,14 +6365,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['yes'] = _emscripten_enum_BeetleDamage_yes(); -// $CrownFireCalculationMethod + + // CrownFireCalculationMethod Module['rothermel'] = _emscripten_enum_CrownFireCalculationMethod_rothermel(); Module['scott_and_reinhardt'] = _emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt(); -// $CrownDamageEquationCode + + // CrownDamageEquationCode Module['not_set'] = _emscripten_enum_CrownDamageEquationCode_not_set(); @@ -7287,7 +6401,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['douglas_fir'] = _emscripten_enum_CrownDamageEquationCode_douglas_fir(); -// $CrownDamageType + + // CrownDamageType Module['not_set'] = _emscripten_enum_CrownDamageType_not_set(); @@ -7298,7 +6413,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['crown_kill'] = _emscripten_enum_CrownDamageType_crown_kill(); -// $EquationType + + // EquationType Module['not_set'] = _emscripten_enum_EquationType_not_set(); @@ -7309,7 +6425,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['crown_damage'] = _emscripten_enum_EquationType_crown_damage(); -// $FireSeverity + + // FireSeverity Module['not_set'] = _emscripten_enum_FireSeverity_not_set(); @@ -7318,14 +6435,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['low'] = _emscripten_enum_FireSeverity_low(); -// $FlameLengthOrScorchHeightSwitch + + // FlameLengthOrScorchHeightSwitch Module['flame_length'] = _emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length(); Module['scorch_height'] = _emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height(); -// $GACC + + // GACC Module['NotSet'] = _emscripten_enum_GACC_NotSet(); @@ -7348,7 +6467,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['Southwest'] = _emscripten_enum_GACC_Southwest(); -// $RequiredFieldNames + + // RequiredFieldNames Module['region'] = _emscripten_enum_RequiredFieldNames_region(); @@ -7379,7 +6499,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['num_inputs'] = _emscripten_enum_RequiredFieldNames_num_inputs(); -// $FDFMToolAspectIndex_AspectIndexEnum + + // FDFMToolAspectIndex_AspectIndexEnum Module['NORTH'] = _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH(); @@ -7390,7 +6511,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['WEST'] = _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST(); -// $FDFMToolDryBulbIndex_DryBulbIndexEnum + + // FDFMToolDryBulbIndex_DryBulbIndexEnum Module['TEN_TO_TWENTY_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F(); @@ -7405,7 +6527,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F(); -// $FDFMToolElevationIndex_ElevationIndexEnum + + // FDFMToolElevationIndex_ElevationIndexEnum Module['BELOW_1000_TO_2000_FT'] = _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT(); @@ -7414,7 +6537,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['ABOVE_1000_TO_2000_FT'] = _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT(); -// $FDFMToolMonthIndex_MonthIndexEnum + + // FDFMToolMonthIndex_MonthIndexEnum Module['MAY_JUNE_JULY'] = _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY(); @@ -7423,7 +6547,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['NOV_DEC_JAN'] = _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN(); -// $FDFMToolRHIndex_RHIndexEnum + + // FDFMToolRHIndex_RHIndexEnum Module['ZERO_TO_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT(); @@ -7468,21 +6593,24 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['ONE_HUNDRED_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT(); -// $FDFMToolShadingIndex_ShadingIndexEnum + + // FDFMToolShadingIndex_ShadingIndexEnum Module['EXPOSED'] = _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED(); Module['SHADED'] = _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED(); -// $FDFMToolSlopeIndex_SlopeIndexEnum + + // FDFMToolSlopeIndex_SlopeIndexEnum Module['ZERO_TO_THIRTY_PERCENT'] = _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT(); Module['GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT'] = _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT(); -// $FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum + + // FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum Module['EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE(); @@ -7497,7 +6625,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET(); -// $RepresentativeFraction_RepresentativeFractionEnum + + // RepresentativeFraction_RepresentativeFractionEnum Module['NINTEEN_HUNDRED_EIGHTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY(); @@ -7536,7 +6665,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY(); -// $HorizontalDistanceIndex_HorizontalDistanceIndexEnum + + // HorizontalDistanceIndex_HorizontalDistanceIndexEnum Module['UPSLOPE_ZERO_DEGREES'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES(); @@ -7553,7 +6683,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['CROSS_SLOPE_NINETY_DEGREES'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES(); -// $BurningCondition_BurningConditionEnum + + // BurningCondition_BurningConditionEnum Module['Low'] = _emscripten_enum_BurningCondition_BurningConditionEnum_Low(); @@ -7562,7 +6693,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['Extreme'] = _emscripten_enum_BurningCondition_BurningConditionEnum_Extreme(); -// $SlopeClass_SlopeClassEnum + + // SlopeClass_SlopeClassEnum Module['Flat'] = _emscripten_enum_SlopeClass_SlopeClassEnum_Flat(); @@ -7571,7 +6703,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['Steep'] = _emscripten_enum_SlopeClass_SlopeClassEnum_Steep(); -// $SpeedClass_SpeedClassEnum + + // SpeedClass_SpeedClassEnum Module['Light'] = _emscripten_enum_SpeedClass_SpeedClassEnum_Light(); @@ -7580,7 +6713,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['High'] = _emscripten_enum_SpeedClass_SpeedClassEnum_High(); -// $SafetyCondition_SafetyConditionEnum + + // SafetyCondition_SafetyConditionEnum Module['Low'] = _emscripten_enum_SafetyCondition_SafetyConditionEnum_Low(); diff --git a/components/schema_migrate/src/schema_migrate/core.clj b/components/schema_migrate/src/schema_migrate/core.clj index ecfa8445..e09e7c90 100644 --- a/components/schema_migrate/src/schema_migrate/core.clj +++ b/components/schema_migrate/src/schema_migrate/core.clj @@ -377,7 +377,8 @@ (spec/explain :behave/action payload)))) (defn ->variable - [_conn {:keys [nname domain-uuid list-eid translation-key help-key kind bp6-label bp6-code map-units-convertible?] :as params}] + [_conn {:keys [nname domain-uuid list-eid translation-key help-key kind bp6-label bp6-code map-units-convertible? + dimension-uuid native-unit-uuid metric-unit-uuid english-unit-uuid] :as params}] (let [payload (cond-> {} (nil? (:bp/uuid params)) (assoc :bp/uuid (rand-uuid)) (not (:bp/nid params)) (assoc :bp/nid (nano-id)) @@ -387,6 +388,10 @@ nname (assoc :variable/name nname) kind (assoc :variable/kind kind) domain-uuid (assoc :variable/domain-uuid domain-uuid) + dimension-uuid (assoc :variable/dimension-uuid dimension-uuid) + native-unit-uuid (assoc :variable/native-unit-uuid native-unit-uuid) + english-unit-uuid (assoc :variable/english-unit-uuid english-unit-uuid) + metric-unit-uuid (assoc :variable/metric-unit-uuid metric-unit-uuid) list-eid (assoc :variable/list list-eid) translation-key (assoc :variable/translation-key translation-key) help-key (assoc :variable/help-translation-key help-key) diff --git a/development/migrations/2025_12_15_update_slope_tool.clj b/development/migrations/2025_12_15_update_slope_tool.clj new file mode 100644 index 00000000..851f54d2 --- /dev/null +++ b/development/migrations/2025_12_15_update_slope_tool.clj @@ -0,0 +1,93 @@ +(ns migrations.2025-12-15-update-slope-tool + (:require [schema-migrate.interface :as sm] + [datomic.api :as d] + [behave-cms.store :refer [default-conn]] + [behave-cms.server :as cms])) + +;; =========================================================================================================== +;; Overview +;; =========================================================================================================== + +;; =========================================================================================================== +;; Initialize +;; =========================================================================================================== + +(cms/init-db!) + +#_{:clj-kondo/ignore [:missing-docstring]} +(def conn (default-conn)) + +(def existing-slope-steepness-deg-variable-ied + (sm/name->eid conn :variable/name "Slope Steepness Deg")) + +;; =========================================================================================================== +;; Payload +;; =========================================================================================================== + +#_{:clj-kondo/ignore [:missing-docstring]} +(def payload + (concat + [;; Add new slope variable + (sm/->variable conn {:db/id -1 + :nname "Slope Steepness Percent" + :dimension-uuid (:bp/uuid (d/entity (d/db conn) (sm/name->eid conn :dimension/name "Slope"))) + :native-unit-uuid (:bp/uuid (d/entity (d/db conn) (sm/name->eid conn :unit/name "Percent (%)"))) + :kind :continuous}) + + + ;; update existing slope variable + [:db/retract existing-slope-steepness-deg-variable-ied :variable/domain-uuid] + {:db/id existing-slope-steepness-deg-variable-ied + :variable/dimension-uuid (:bp/uuid (d/entity (d/db conn) (sm/name->eid conn :dimension/name "Slope"))) + :variable/native-unit-uuid (:bp/uuid (d/entity (d/db conn) (sm/name->eid conn :unit/name "Degrees (deg)")))} + + ;; delete existing slope tool variable + [:db/retractEntity (sm/t-key->eid conn "behaveplus:slope-tool:slope-from-map-measurements:slope-steepness-")] + + ;; add new slope tool variables + {:db/id (sm/name->eid conn :subtool/name "Slope from Map Measurements") + :subtool/variables [(sm/postwalk-insert + {:subtool-variable/io :output + :variable/_subtool-variables -1 + :subtool-variable/order 4 + :subtool-variable/cpp-namespace-uuid (sm/cpp-ns->uuid conn "global") + :subtool-variable/cpp-class-uuid (sm/cpp-class->uuid conn "global" "SIGSlopeTool") + :subtool-variable/cpp-function-uuid (sm/cpp-fn->uuid conn "global" "SIGSlopeTool" "getSlopeFromMapMeasurementsInPercent") + :subtool-variable/translation-key "behaveplus:slope-tool:slope-from-map-measurements:slope-steepness-percent" + :subtool-variable/help-key "behaveplus:slope-tool:slope-from-map-measurements:slope-steepness-percent:help"}) + + (sm/postwalk-insert + {:subtool-variable/io :output + :variable/_subtool-variables existing-slope-steepness-deg-variable-ied + :subtool-variable/order 5 + :subtool-variable/cpp-namespace-uuid (sm/cpp-ns->uuid conn "global") + :subtool-variable/cpp-class-uuid (sm/cpp-class->uuid conn "global" "SIGSlopeTool") + :subtool-variable/cpp-function-uuid (sm/cpp-fn->uuid conn "global" "SIGSlopeTool" "getSlopeFromMapMeasurementsInDegrees") + :subtool-variable/translation-key "behaveplus:slope-tool:slope-from-map-measurements:slope-steepness-deg" + :subtool-variable/help-key "behaveplus:slope-tool:slope-from-map-measurements:slope-steepness-deg:help"})]} + + ;;reorder existing subtool variables + {:db/id (sm/t-key->eid conn "behaveplus:slope-tool:slope-from-map-measurements:slope-elevation-change") + :subtool-variable/order 6} + {:db/id (sm/t-key->eid conn "behaveplus:slope-tool:slope-from-map-measurements:slope-horizontal-distance") + :subtool-variable/order 7}] + + ;; add translations + (sm/build-translations-payload conn {"behaveplus:slope-tool:slope-from-map-measurements:slope-steepness-percent" "Slope" + "behaveplus:slope-tool:slope-from-map-measurements:slope-steepness-deg" "Slope"}))) + +;; =========================================================================================================== +;; Transact Payload +;; =========================================================================================================== + +(comment + #_{:clj-kondo/ignore [:missing-docstring]} + (try (def tx-data @(d/transact conn payload)) + (catch Exception e (str "caught exception: " (.getMessage e))))) + +;; =========================================================================================================== +;; In case we need to rollback. +;; =========================================================================================================== + +(comment + (sm/rollback-tx! conn tx-data)) diff --git a/projects/behave/resources/public/js/behave-min.js b/projects/behave/resources/public/js/behave-min.js index 349aa584..37ec2083 100644 --- a/projects/behave/resources/public/js/behave-min.js +++ b/projects/behave/resources/public/js/behave-min.js @@ -2,7 +2,7 @@ // The Module object: Our interface to the outside world. We import // and export values on it. There are various ways Module can be used: // 1. Not defined. We create it here -// 2. A function parameter, function(moduleArg) => Promise +// 2. A function parameter, function(Module) { ..generated code.. } // 3. pre-run appended it, var Module = {}; ..generated code.. // 4. External script tag defines var Module. // We need to check if Module already exists (e.g. case 3 above). @@ -14,39 +14,38 @@ // can continue to use Module afterwards as well. var Module = typeof Module != 'undefined' ? Module : {}; -// Determine the runtime environment we are in. You can customize this by -// setting the ENVIRONMENT setting at compile time (see settings.js). - -// Attempt to auto-detect the environment -var ENVIRONMENT_IS_WEB = typeof window == 'object'; -var ENVIRONMENT_IS_WORKER = typeof WorkerGlobalScope != 'undefined'; -// N.b. Electron.js environment is simultaneously a NODE-environment, but -// also a web environment. -var ENVIRONMENT_IS_NODE = typeof process == 'object' && process.versions?.node && process.type != 'renderer'; -var ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER; - // --pre-jses are emitted after the Module integration code, so that they can // refer to Module (if they choose; they can also define Module) -// include: /Users/rsheperd/code/sig/behave-app/behave-lib/include/js/pre.js Module["onRuntimeInitialized"] = window.onWASMModuleLoaded; -// end include: /Users/rsheperd/code/sig/behave-app/behave-lib/include/js/pre.js + +// Sometimes an existing Module object exists with properties +// meant to overwrite the default module functionality. Here +// we collect those properties and reapply _after_ we configure +// the current environment's defaults to avoid having to be so +// defensive during initialization. +var moduleOverrides = Object.assign({}, Module); + var arguments_ = []; var thisProgram = './this.program'; var quit_ = (status, toThrow) => { throw toThrow; }; -// In MODULARIZE mode _scriptName needs to be captured already at the very top of the page immediately when the page is parsed, so it is generated there -// before the page load. In non-MODULARIZE modes generate it here. -var _scriptName = typeof document != 'undefined' ? document.currentScript?.src : undefined; +// Determine the runtime environment we are in. You can customize this by +// setting the ENVIRONMENT setting at compile time (see settings.js). -if (typeof __filename != 'undefined') { // Node - _scriptName = __filename; -} else -if (ENVIRONMENT_IS_WORKER) { - _scriptName = self.location.href; +// Attempt to auto-detect the environment +var ENVIRONMENT_IS_WEB = typeof window == 'object'; +var ENVIRONMENT_IS_WORKER = typeof importScripts == 'function'; +// N.b. Electron.js environment is simultaneously a NODE-environment, but +// also a web environment. +var ENVIRONMENT_IS_NODE = typeof process == 'object' && typeof process.versions == 'object' && typeof process.versions.node == 'string'; +var ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER; + +if (Module['ENVIRONMENT']) { + throw new Error('Module.ENVIRONMENT has been deprecated. To force the environment, use the ENVIRONMENT compile-time option (for example, -sENVIRONMENT=web or -sENVIRONMENT=node)'); } // `/` should be present at the end if `scriptDirectory` is not empty @@ -59,41 +58,63 @@ function locateFile(path) { } // Hooks that are implemented differently in different runtime environments. -var readAsync, readBinary; +var read_, + readAsync, + readBinary, + setWindowTitle; if (ENVIRONMENT_IS_NODE) { - const isNode = typeof process == 'object' && process.versions?.node && process.type != 'renderer'; - if (!isNode) throw new Error('not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)'); + if (typeof process == 'undefined' || !process.release || process.release.name !== 'node') throw new Error('not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)'); var nodeVersion = process.versions.node; var numericVersion = nodeVersion.split('.').slice(0, 3); - numericVersion = (numericVersion[0] * 10000) + (numericVersion[1] * 100) + (numericVersion[2].split('-')[0] * 1); - if (numericVersion < 160000) { - throw new Error('This emscripten-generated code requires node v16.0.0 (detected v' + nodeVersion + ')'); + numericVersion = (numericVersion[0] * 10000) + (numericVersion[1] * 100) + numericVersion[2] * 1; + var minVersion = 101900; + if (numericVersion < 101900) { + throw new Error('This emscripten-generated code requires node v10.19.19.0 (detected v' + nodeVersion + ')'); } + // `require()` is no-op in an ESM module, use `createRequire()` to construct + // the require()` function. This is only necessary for multi-environment + // builds, `-sENVIRONMENT=node` emits a static import declaration instead. + // TODO: Swap all `require()`'s with `import()`'s? // These modules will usually be used on Node.js. Load them eagerly to avoid // the complexity of lazy-loading. var fs = require('fs'); + var nodePath = require('path'); - scriptDirectory = __dirname + '/'; + if (ENVIRONMENT_IS_WORKER) { + scriptDirectory = nodePath.dirname(scriptDirectory) + '/'; + } else { + scriptDirectory = __dirname + '/'; + } // include: node_shell_read.js +read_ = (filename, binary) => { + // We need to re-wrap `file://` strings to URLs. Normalizing isn't + // necessary in that case, the path should already be absolute. + filename = isFileURI(filename) ? new URL(filename) : nodePath.normalize(filename); + return fs.readFileSync(filename, binary ? undefined : 'utf8'); +}; + readBinary = (filename) => { - // We need to re-wrap `file://` strings to URLs. - filename = isFileURI(filename) ? new URL(filename) : filename; - var ret = fs.readFileSync(filename); - assert(Buffer.isBuffer(ret)); + var ret = read_(filename, true); + if (!ret.buffer) { + ret = new Uint8Array(ret); + } + assert(ret.buffer); return ret; }; -readAsync = async (filename, binary = true) => { - // See the comment in the `readBinary` function. - filename = isFileURI(filename) ? new URL(filename) : filename; - var ret = fs.readFileSync(filename, binary ? undefined : 'utf8'); - assert(binary ? Buffer.isBuffer(ret) : typeof ret == 'string'); - return ret; +readAsync = (filename, onload, onerror) => { + // See the comment in the `read_` function. + filename = isFileURI(filename) ? new URL(filename) : nodePath.normalize(filename); + fs.readFile(filename, function(err, data) { + if (err) onerror(err); + else onload(data.buffer); + }); }; + // end include: node_shell_read.js if (process.argv.length > 1) { thisProgram = process.argv[1].replace(/\\/g, '/'); @@ -101,21 +122,100 @@ readAsync = async (filename, binary = true) => { arguments_ = process.argv.slice(2); - // MODULARIZE will export the module in the proper place outside, we don't need to export here if (typeof module != 'undefined') { module['exports'] = Module; } + process.on('uncaughtException', function(ex) { + // suppress ExitStatus exceptions from showing an error + if (ex !== 'unwind' && !(ex instanceof ExitStatus) && !(ex.context instanceof ExitStatus)) { + throw ex; + } + }); + + // Without this older versions of node (< v15) will log unhandled rejections + // but return 0, which is not normally the desired behaviour. This is + // not be needed with node v15 and about because it is now the default + // behaviour: + // See https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode + var nodeMajor = process.versions.node.split(".")[0]; + if (nodeMajor < 15) { + process.on('unhandledRejection', function(reason) { throw reason; }); + } + quit_ = (status, toThrow) => { process.exitCode = status; throw toThrow; }; + Module['inspect'] = function () { return '[Emscripten Module object]'; }; + } else if (ENVIRONMENT_IS_SHELL) { - const isNode = typeof process == 'object' && process.versions?.node && process.type != 'renderer'; - if (isNode || typeof window == 'object' || typeof WorkerGlobalScope != 'undefined') throw new Error('not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)'); + if ((typeof process == 'object' && typeof require === 'function') || typeof window == 'object' || typeof importScripts == 'function') throw new Error('not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)'); + + if (typeof read != 'undefined') { + read_ = function shell_read(f) { + return read(f); + }; + } + + readBinary = function readBinary(f) { + let data; + if (typeof readbuffer == 'function') { + return new Uint8Array(readbuffer(f)); + } + data = read(f, 'binary'); + assert(typeof data == 'object'); + return data; + }; + + readAsync = function readAsync(f, onload, onerror) { + setTimeout(() => onload(readBinary(f)), 0); + }; + + if (typeof clearTimeout == 'undefined') { + globalThis.clearTimeout = (id) => {}; + } + + if (typeof scriptArgs != 'undefined') { + arguments_ = scriptArgs; + } else if (typeof arguments != 'undefined') { + arguments_ = arguments; + } + + if (typeof quit == 'function') { + quit_ = (status, toThrow) => { + // Unlike node which has process.exitCode, d8 has no such mechanism. So we + // have no way to set the exit code and then let the program exit with + // that code when it naturally stops running (say, when all setTimeouts + // have completed). For that reason, we must call `quit` - the only way to + // set the exit code - but quit also halts immediately. To increase + // consistency with node (and the web) we schedule the actual quit call + // using a setTimeout to give the current stack and any exception handlers + // a chance to run. This enables features such as addOnPostRun (which + // expected to be able to run code after main returns). + setTimeout(() => { + if (!(toThrow instanceof ExitStatus)) { + let toLog = toThrow; + if (toThrow && typeof toThrow == 'object' && toThrow.stack) { + toLog = [toThrow, toThrow.stack]; + } + err('exiting due to exception: ' + toLog); + } + quit(status); + }); + throw toThrow; + }; + } + + if (typeof print != 'undefined') { + // Prefer to use print/printErr where they exist, as they usually work better. + if (typeof console == 'undefined') console = /** @type{!Console} */({}); + console.log = /** @type{!function(this:Console, ...*): undefined} */ (print); + console.warn = console.error = /** @type{!function(this:Console, ...*): undefined} */ (typeof printErr != 'undefined' ? printErr : print); + } } else @@ -123,81 +223,115 @@ if (ENVIRONMENT_IS_SHELL) { // Node.js workers are detected as a combination of ENVIRONMENT_IS_WORKER and // ENVIRONMENT_IS_NODE. if (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) { - try { - scriptDirectory = new URL('.', _scriptName).href; // includes trailing slash - } catch { - // Must be a `blob:` or `data:` URL (e.g. `blob:http://site.com/etc/etc`), we cannot - // infer anything from them. + if (ENVIRONMENT_IS_WORKER) { // Check worker, not web, since window could be polyfilled + scriptDirectory = self.location.href; + } else if (typeof document != 'undefined' && document.currentScript) { // web + scriptDirectory = document.currentScript.src; + } + // blob urls look like blob:http://site.com/etc/etc and we cannot infer anything from them. + // otherwise, slice off the final part of the url to find the script directory. + // if scriptDirectory does not contain a slash, lastIndexOf will return -1, + // and scriptDirectory will correctly be replaced with an empty string. + // If scriptDirectory contains a query (starting with ?) or a fragment (starting with #), + // they are removed because they could contain a slash. + if (scriptDirectory.indexOf('blob:') !== 0) { + scriptDirectory = scriptDirectory.substr(0, scriptDirectory.replace(/[?#].*/, "").lastIndexOf('/')+1); + } else { + scriptDirectory = ''; } - if (!(typeof window == 'object' || typeof WorkerGlobalScope != 'undefined')) throw new Error('not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)'); + if (!(typeof window == 'object' || typeof importScripts == 'function')) throw new Error('not compiled for this environment (did you build to HTML and try to run it not on the web, or set ENVIRONMENT to something - like node - and run it someplace else - like on the web?)'); + // Differentiate the Web Worker from the Node Worker case, as reading must + // be done differently. { // include: web_or_worker_shell_read.js -if (ENVIRONMENT_IS_WORKER) { - readBinary = (url) => { +read_ = (url) => { var xhr = new XMLHttpRequest(); xhr.open('GET', url, false); - xhr.responseType = 'arraybuffer'; xhr.send(null); - return new Uint8Array(/** @type{!ArrayBuffer} */(xhr.response)); - }; + return xhr.responseText; } - readAsync = async (url) => { - // Fetch has some additional restrictions over XHR, like it can't be used on a file:// url. - // See https://github.com/github/fetch/pull/92#issuecomment-140665932 - // Cordova or Electron apps are typically loaded from a file:// url. - // So use XHR on webview if URL is a file URL. - if (isFileURI(url)) { - return new Promise((resolve, reject) => { + if (ENVIRONMENT_IS_WORKER) { + readBinary = (url) => { var xhr = new XMLHttpRequest(); - xhr.open('GET', url, true); + xhr.open('GET', url, false); xhr.responseType = 'arraybuffer'; - xhr.onload = () => { - if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0 - resolve(xhr.response); - return; - } - reject(xhr.status); - }; - xhr.onerror = reject; xhr.send(null); - }); - } - var response = await fetch(url, { credentials: 'same-origin' }); - if (response.ok) { - return response.arrayBuffer(); - } - throw new Error(response.status + ' : ' + response.url); - }; + return new Uint8Array(/** @type{!ArrayBuffer} */(xhr.response)); + }; + } + + readAsync = (url, onload, onerror) => { + var xhr = new XMLHttpRequest(); + xhr.open('GET', url, true); + xhr.responseType = 'arraybuffer'; + xhr.onload = () => { + if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0 + onload(xhr.response); + return; + } + onerror(); + }; + xhr.onerror = onerror; + xhr.send(null); + } + // end include: web_or_worker_shell_read.js } + + setWindowTitle = (title) => document.title = title; } else { throw new Error('environment detection error'); } -var out = console.log.bind(console); -var err = console.error.bind(console); - +var out = Module['print'] || console.log.bind(console); +var err = Module['printErr'] || console.warn.bind(console); + +// Merge back in the overrides +Object.assign(Module, moduleOverrides); +// Free the object hierarchy contained in the overrides, this lets the GC +// reclaim data used e.g. in memoryInitializerRequest, which is a large typed array. +moduleOverrides = null; +checkIncomingModuleAPI(); + +// Emit code to handle expected values on the Module object. This applies Module.x +// to the proper local x. This has two benefits: first, we only emit it if it is +// expected to arrive, and second, by using a local everywhere else that can be +// minified. + +if (Module['arguments']) arguments_ = Module['arguments'];legacyModuleProp('arguments', 'arguments_'); + +if (Module['thisProgram']) thisProgram = Module['thisProgram'];legacyModuleProp('thisProgram', 'thisProgram'); + +if (Module['quit']) quit_ = Module['quit'];legacyModuleProp('quit', 'quit_'); + +// perform assertions in shell.js after we set up out() and err(), as otherwise if an assertion fails it cannot print the message +// Assertions on removed incoming Module JS APIs. +assert(typeof Module['memoryInitializerPrefixURL'] == 'undefined', 'Module.memoryInitializerPrefixURL option was removed, use Module.locateFile instead'); +assert(typeof Module['pthreadMainPrefixURL'] == 'undefined', 'Module.pthreadMainPrefixURL option was removed, use Module.locateFile instead'); +assert(typeof Module['cdInitializerPrefixURL'] == 'undefined', 'Module.cdInitializerPrefixURL option was removed, use Module.locateFile instead'); +assert(typeof Module['filePackagePrefixURL'] == 'undefined', 'Module.filePackagePrefixURL option was removed, use Module.locateFile instead'); +assert(typeof Module['read'] == 'undefined', 'Module.read option was removed (modify read_ in JS)'); +assert(typeof Module['readAsync'] == 'undefined', 'Module.readAsync option was removed (modify readAsync in JS)'); +assert(typeof Module['readBinary'] == 'undefined', 'Module.readBinary option was removed (modify readBinary in JS)'); +assert(typeof Module['setWindowTitle'] == 'undefined', 'Module.setWindowTitle option was removed (modify setWindowTitle in JS)'); +assert(typeof Module['TOTAL_MEMORY'] == 'undefined', 'Module.TOTAL_MEMORY has been renamed Module.INITIAL_MEMORY'); +legacyModuleProp('read', 'read_'); +legacyModuleProp('readAsync', 'readAsync'); +legacyModuleProp('readBinary', 'readBinary'); +legacyModuleProp('setWindowTitle', 'setWindowTitle'); var IDBFS = 'IDBFS is no longer included by default; build with -lidbfs.js'; var PROXYFS = 'PROXYFS is no longer included by default; build with -lproxyfs.js'; var WORKERFS = 'WORKERFS is no longer included by default; build with -lworkerfs.js'; -var FETCHFS = 'FETCHFS is no longer included by default; build with -lfetchfs.js'; -var ICASEFS = 'ICASEFS is no longer included by default; build with -licasefs.js'; -var JSFILEFS = 'JSFILEFS is no longer included by default; build with -ljsfilefs.js'; -var OPFS = 'OPFS is no longer included by default; build with -lopfs.js'; - var NODEFS = 'NODEFS is no longer included by default; build with -lnodefs.js'; -// perform assertions in shell.js after we set up out() and err(), as otherwise -// if an assertion fails it cannot print the message +assert(!ENVIRONMENT_IS_SHELL, "shell environment detected but not enabled at build time. Add 'shell' to `-sENVIRONMENT` to enable."); -assert(!ENVIRONMENT_IS_SHELL, 'shell environment detected but not enabled at build time. Add `shell` to `-sENVIRONMENT` to enable.'); // end include: shell.js - // include: preamble.js // === Preamble library stuff === @@ -210,13 +344,17 @@ assert(!ENVIRONMENT_IS_SHELL, 'shell environment detected but not enabled at bui // is up at http://kripken.github.io/emscripten-site/docs/api_reference/preamble.js.html var wasmBinary; +if (Module['wasmBinary']) wasmBinary = Module['wasmBinary'];legacyModuleProp('wasmBinary', 'wasmBinary'); +var noExitRuntime = Module['noExitRuntime'] || true;legacyModuleProp('noExitRuntime', 'noExitRuntime'); if (typeof WebAssembly != 'object') { - err('no native wasm support detected'); + abort('no native wasm support detected'); } // Wasm globals +var wasmMemory; + //======================================== // Runtime essentials //======================================== @@ -230,10 +368,6 @@ var ABORT = false; // but only when noExitRuntime is false. var EXITSTATUS; -// In STRICT mode, we only define assert() when ASSERTIONS is set. i.e. we -// don't define it at all in release modes. This matches the behaviour of -// MINIMAL_RUNTIME. -// TODO(sbc): Make this the default even without STRICT enabled. /** @type {function(*, string=)} */ function assert(condition, text) { if (!condition) { @@ -244,21 +378,252 @@ function assert(condition, text) { // We used to include malloc/free by default in the past. Show a helpful error in // builds with assertions. +// include: runtime_strings.js +// runtime_strings.js: String related runtime functions that are part of both +// MINIMAL_RUNTIME and regular runtime. + +var UTF8Decoder = typeof TextDecoder != 'undefined' ? new TextDecoder('utf8') : undefined; + +/** + * Given a pointer 'idx' to a null-terminated UTF8-encoded string in the given + * array that contains uint8 values, returns a copy of that string as a + * Javascript String object. + * heapOrArray is either a regular array, or a JavaScript typed array view. + * @param {number} idx + * @param {number=} maxBytesToRead + * @return {string} + */ +function UTF8ArrayToString(heapOrArray, idx, maxBytesToRead) { + var endIdx = idx + maxBytesToRead; + var endPtr = idx; + // TextDecoder needs to know the byte length in advance, it doesn't stop on + // null terminator by itself. Also, use the length info to avoid running tiny + // strings through TextDecoder, since .subarray() allocates garbage. + // (As a tiny code save trick, compare endPtr against endIdx using a negation, + // so that undefined means Infinity) + while (heapOrArray[endPtr] && !(endPtr >= endIdx)) ++endPtr; + + if (endPtr - idx > 16 && heapOrArray.buffer && UTF8Decoder) { + return UTF8Decoder.decode(heapOrArray.subarray(idx, endPtr)); + } + var str = ''; + // If building with TextDecoder, we have already computed the string length + // above, so test loop end condition against that + while (idx < endPtr) { + // For UTF8 byte structure, see: + // http://en.wikipedia.org/wiki/UTF-8#Description + // https://www.ietf.org/rfc/rfc2279.txt + // https://tools.ietf.org/html/rfc3629 + var u0 = heapOrArray[idx++]; + if (!(u0 & 0x80)) { str += String.fromCharCode(u0); continue; } + var u1 = heapOrArray[idx++] & 63; + if ((u0 & 0xE0) == 0xC0) { str += String.fromCharCode(((u0 & 31) << 6) | u1); continue; } + var u2 = heapOrArray[idx++] & 63; + if ((u0 & 0xF0) == 0xE0) { + u0 = ((u0 & 15) << 12) | (u1 << 6) | u2; + } else { + if ((u0 & 0xF8) != 0xF0) warnOnce('Invalid UTF-8 leading byte ' + ptrToString(u0) + ' encountered when deserializing a UTF-8 string in wasm memory to a JS string!'); + u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | (heapOrArray[idx++] & 63); + } + + if (u0 < 0x10000) { + str += String.fromCharCode(u0); + } else { + var ch = u0 - 0x10000; + str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); + } + } + return str; +} + +/** + * Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the + * emscripten HEAP, returns a copy of that string as a Javascript String object. + * + * @param {number} ptr + * @param {number=} maxBytesToRead - An optional length that specifies the + * maximum number of bytes to read. You can omit this parameter to scan the + * string until the first \0 byte. If maxBytesToRead is passed, and the string + * at [ptr, ptr+maxBytesToReadr[ contains a null byte in the middle, then the + * string will cut short at that byte index (i.e. maxBytesToRead will not + * produce a string of exact length [ptr, ptr+maxBytesToRead[) N.B. mixing + * frequent uses of UTF8ToString() with and without maxBytesToRead may throw + * JS JIT optimizations off, so it is worth to consider consistently using one + * @return {string} + */ +function UTF8ToString(ptr, maxBytesToRead) { + assert(typeof ptr == 'number'); + return ptr ? UTF8ArrayToString(HEAPU8, ptr, maxBytesToRead) : ''; +} + +/** + * Copies the given Javascript String object 'str' to the given byte array at + * address 'outIdx', encoded in UTF8 form and null-terminated. The copy will + * require at most str.length*4+1 bytes of space in the HEAP. Use the function + * lengthBytesUTF8 to compute the exact number of bytes (excluding null + * terminator) that this function will write. + * + * @param {string} str - The Javascript string to copy. + * @param {ArrayBufferView|Array} heap - The array to copy to. Each + * index in this array is assumed + * to be one 8-byte element. + * @param {number} outIdx - The starting offset in the array to begin the copying. + * @param {number} maxBytesToWrite - The maximum number of bytes this function + * can write to the array. This count should + * include the null terminator, i.e. if + * maxBytesToWrite=1, only the null terminator + * will be written and nothing else. + * maxBytesToWrite=0 does not write any bytes + * to the output, not even the null + * terminator. + * @return {number} The number of bytes written, EXCLUDING the null terminator. + */ +function stringToUTF8Array(str, heap, outIdx, maxBytesToWrite) { + // Parameter maxBytesToWrite is not optional. Negative values, 0, null, + // undefined and false each don't write out any bytes. + if (!(maxBytesToWrite > 0)) + return 0; + + var startIdx = outIdx; + var endIdx = outIdx + maxBytesToWrite - 1; // -1 for string null terminator. + for (var i = 0; i < str.length; ++i) { + // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code + // unit, not a Unicode code point of the character! So decode + // UTF16->UTF32->UTF8. + // See http://unicode.org/faq/utf_bom.html#utf16-3 + // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description + // and https://www.ietf.org/rfc/rfc2279.txt + // and https://tools.ietf.org/html/rfc3629 + var u = str.charCodeAt(i); // possibly a lead surrogate + if (u >= 0xD800 && u <= 0xDFFF) { + var u1 = str.charCodeAt(++i); + u = 0x10000 + ((u & 0x3FF) << 10) | (u1 & 0x3FF); + } + if (u <= 0x7F) { + if (outIdx >= endIdx) break; + heap[outIdx++] = u; + } else if (u <= 0x7FF) { + if (outIdx + 1 >= endIdx) break; + heap[outIdx++] = 0xC0 | (u >> 6); + heap[outIdx++] = 0x80 | (u & 63); + } else if (u <= 0xFFFF) { + if (outIdx + 2 >= endIdx) break; + heap[outIdx++] = 0xE0 | (u >> 12); + heap[outIdx++] = 0x80 | ((u >> 6) & 63); + heap[outIdx++] = 0x80 | (u & 63); + } else { + if (outIdx + 3 >= endIdx) break; + if (u > 0x10FFFF) warnOnce('Invalid Unicode code point ' + ptrToString(u) + ' encountered when serializing a JS string to a UTF-8 string in wasm memory! (Valid unicode code points should be in range 0-0x10FFFF).'); + heap[outIdx++] = 0xF0 | (u >> 18); + heap[outIdx++] = 0x80 | ((u >> 12) & 63); + heap[outIdx++] = 0x80 | ((u >> 6) & 63); + heap[outIdx++] = 0x80 | (u & 63); + } + } + // Null-terminate the pointer to the buffer. + heap[outIdx] = 0; + return outIdx - startIdx; +} + +/** + * Copies the given Javascript String object 'str' to the emscripten HEAP at + * address 'outPtr', null-terminated and encoded in UTF8 form. The copy will + * require at most str.length*4+1 bytes of space in the HEAP. + * Use the function lengthBytesUTF8 to compute the exact number of bytes + * (excluding null terminator) that this function will write. + * + * @return {number} The number of bytes written, EXCLUDING the null terminator. + */ +function stringToUTF8(str, outPtr, maxBytesToWrite) { + assert(typeof maxBytesToWrite == 'number', 'stringToUTF8(str, outPtr, maxBytesToWrite) is missing the third parameter that specifies the length of the output buffer!'); + return stringToUTF8Array(str, HEAPU8,outPtr, maxBytesToWrite); +} + /** - * Indicates whether filename is delivered via file protocol (as opposed to http/https) - * @noinline + * Returns the number of bytes the given Javascript string takes if encoded as a + * UTF8 byte array, EXCLUDING the null terminator byte. + * + * @param {string} str - JavaScript string to operator on + * @return {number} Length, in bytes, of the UTF8 encoded string. */ -var isFileURI = (filename) => filename.startsWith('file://'); +function lengthBytesUTF8(str) { + var len = 0; + for (var i = 0; i < str.length; ++i) { + // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code + // unit, not a Unicode code point of the character! So decode + // UTF16->UTF32->UTF8. + // See http://unicode.org/faq/utf_bom.html#utf16-3 + var c = str.charCodeAt(i); // possibly a lead surrogate + if (c <= 0x7F) { + len++; + } else if (c <= 0x7FF) { + len += 2; + } else if (c >= 0xD800 && c <= 0xDFFF) { + len += 4; ++i; + } else { + len += 3; + } + } + return len; +} + +// end include: runtime_strings.js +// Memory management + +var HEAP, +/** @type {!Int8Array} */ + HEAP8, +/** @type {!Uint8Array} */ + HEAPU8, +/** @type {!Int16Array} */ + HEAP16, +/** @type {!Uint16Array} */ + HEAPU16, +/** @type {!Int32Array} */ + HEAP32, +/** @type {!Uint32Array} */ + HEAPU32, +/** @type {!Float32Array} */ + HEAPF32, +/** @type {!Float64Array} */ + HEAPF64; + +function updateMemoryViews() { + var b = wasmMemory.buffer; + Module['HEAP8'] = HEAP8 = new Int8Array(b); + Module['HEAP16'] = HEAP16 = new Int16Array(b); + Module['HEAP32'] = HEAP32 = new Int32Array(b); + Module['HEAPU8'] = HEAPU8 = new Uint8Array(b); + Module['HEAPU16'] = HEAPU16 = new Uint16Array(b); + Module['HEAPU32'] = HEAPU32 = new Uint32Array(b); + Module['HEAPF32'] = HEAPF32 = new Float32Array(b); + Module['HEAPF64'] = HEAPF64 = new Float64Array(b); +} -// include: runtime_common.js +assert(!Module['STACK_SIZE'], 'STACK_SIZE can no longer be set at runtime. Use -sSTACK_SIZE at link time') + +assert(typeof Int32Array != 'undefined' && typeof Float64Array !== 'undefined' && Int32Array.prototype.subarray != undefined && Int32Array.prototype.set != undefined, + 'JS engine does not provide full typed array support'); + +// If memory is defined in wasm, the user can't provide it, or set INITIAL_MEMORY +assert(!Module['wasmMemory'], 'Use of `wasmMemory` detected. Use -sIMPORTED_MEMORY to define wasmMemory externally'); +assert(!Module['INITIAL_MEMORY'], 'Detected runtime INITIAL_MEMORY setting. Use -sIMPORTED_MEMORY to define wasmMemory dynamically'); + +// include: runtime_init_table.js +// In regular non-RELOCATABLE mode the table is exported +// from the wasm module and this will be assigned once +// the exports are available. +var wasmTable; + +// end include: runtime_init_table.js // include: runtime_stack_check.js // Initializes the stack cookie. Called at the startup of main and at the startup of each thread in pthreads mode. function writeStackCookie() { var max = _emscripten_stack_get_end(); assert((max & 3) == 0); // If the stack ends at address zero we write our cookies 4 bytes into the - // stack. This prevents interference with SAFE_HEAP and ASAN which also - // monitor writes to address zero. + // stack. This prevents interference with the (separate) address-zero check + // below. if (max == 0) { max += 4; } @@ -268,7 +633,7 @@ function writeStackCookie() { HEAPU32[((max)>>2)] = 0x02135467; HEAPU32[(((max)+(4))>>2)] = 0x89BACDFE; // Also test the global address 0 for integrity. - HEAPU32[((0)>>2)] = 1668509029; + HEAPU32[0] = 0x63736d65; /* 'emsc' */ } function checkStackCookie() { @@ -281,254 +646,106 @@ function checkStackCookie() { var cookie1 = HEAPU32[((max)>>2)]; var cookie2 = HEAPU32[(((max)+(4))>>2)]; if (cookie1 != 0x02135467 || cookie2 != 0x89BACDFE) { - abort(`Stack overflow! Stack cookie has been overwritten at ${ptrToString(max)}, expected hex dwords 0x89BACDFE and 0x2135467, but received ${ptrToString(cookie2)} ${ptrToString(cookie1)}`); + abort('Stack overflow! Stack cookie has been overwritten at ' + ptrToString(max) + ', expected hex dwords 0x89BACDFE and 0x2135467, but received ' + ptrToString(cookie2) + ' ' + ptrToString(cookie1)); } // Also test the global address 0 for integrity. - if (HEAPU32[((0)>>2)] != 0x63736d65 /* 'emsc' */) { + if (HEAPU32[0] !== 0x63736d65 /* 'emsc' */) { abort('Runtime error: The application has corrupted its heap memory area (address zero)!'); } } -// end include: runtime_stack_check.js -// include: runtime_exceptions.js -// Base Emscripten EH error class -class EmscriptenEH extends Error {} - -class EmscriptenSjLj extends EmscriptenEH {} - -class CppException extends EmscriptenEH { - constructor(excPtr) { - super(excPtr); - this.excPtr = excPtr; - const excInfo = getExceptionMessage(excPtr); - this.name = excInfo[0]; - this.message = excInfo[1]; - } -} -// end include: runtime_exceptions.js -// include: runtime_debug.js -var runtimeDebug = true; // Switch to false at runtime to disable logging at the right times - -// Used by XXXXX_DEBUG settings to output debug messages. -function dbg(...args) { - if (!runtimeDebug && typeof runtimeDebug != 'undefined') return; - // TODO(sbc): Make this configurable somehow. Its not always convenient for - // logging to show up as warnings. - console.warn(...args); -} +// end include: runtime_stack_check.js +// include: runtime_assertions.js // Endianness check -(() => { +(function() { var h16 = new Int16Array(1); var h8 = new Int8Array(h16.buffer); h16[0] = 0x6373; if (h8[0] !== 0x73 || h8[1] !== 0x63) throw 'Runtime error: expected the system to be little-endian! (Run with -sSUPPORT_BIG_ENDIAN to bypass)'; })(); -function consumedModuleProp(prop) { - if (!Object.getOwnPropertyDescriptor(Module, prop)) { - Object.defineProperty(Module, prop, { - configurable: true, - set() { - abort(`Attempt to set \`Module.${prop}\` after it has already been processed. This can happen, for example, when code is injected via '--post-js' rather than '--pre-js'`); +// end include: runtime_assertions.js +var __ATPRERUN__ = []; // functions called before the runtime is initialized +var __ATINIT__ = []; // functions called during startup +var __ATEXIT__ = []; // functions called during shutdown +var __ATPOSTRUN__ = []; // functions called after the main() is called - } - }); - } -} +var runtimeInitialized = false; -function makeInvalidEarlyAccess(name) { - return () => assert(false, `call to '${name}' via reference taken before Wasm module initialization`); +var runtimeKeepaliveCounter = 0; +function keepRuntimeAlive() { + return noExitRuntime || runtimeKeepaliveCounter > 0; } -function ignoredModuleProp(prop) { - if (Object.getOwnPropertyDescriptor(Module, prop)) { - abort(`\`Module.${prop}\` was supplied but \`${prop}\` not included in INCOMING_MODULE_JS_API`); +function preRun() { + if (Module['preRun']) { + if (typeof Module['preRun'] == 'function') Module['preRun'] = [Module['preRun']]; + while (Module['preRun'].length) { + addOnPreRun(Module['preRun'].shift()); + } } + callRuntimeCallbacks(__ATPRERUN__); } -// forcing the filesystem exports a few things by default -function isExportedByForceFilesystem(name) { - return name === 'FS_createPath' || - name === 'FS_createDataFile' || - name === 'FS_createPreloadedFile' || - name === 'FS_unlink' || - name === 'addRunDependency' || - // The old FS has some functionality that WasmFS lacks. - name === 'FS_createLazyFile' || - name === 'FS_createDevice' || - name === 'removeRunDependency'; +function initRuntime() { + assert(!runtimeInitialized); + runtimeInitialized = true; + + checkStackCookie(); + + +if (!Module["noFSInit"] && !FS.init.initialized) + FS.init(); +FS.ignorePermissions = false; + +TTY.init(); + callRuntimeCallbacks(__ATINIT__); } -/** - * Intercept access to a global symbol. This enables us to give informative - * warnings/errors when folks attempt to use symbols they did not include in - * their build, or no symbols that no longer exist. - */ -function hookGlobalSymbolAccess(sym, func) { - if (typeof globalThis != 'undefined' && !Object.getOwnPropertyDescriptor(globalThis, sym)) { - Object.defineProperty(globalThis, sym, { - configurable: true, - get() { - func(); - return undefined; - } - }); +function postRun() { + checkStackCookie(); + + if (Module['postRun']) { + if (typeof Module['postRun'] == 'function') Module['postRun'] = [Module['postRun']]; + while (Module['postRun'].length) { + addOnPostRun(Module['postRun'].shift()); + } } -} -function missingGlobal(sym, msg) { - hookGlobalSymbolAccess(sym, () => { - warnOnce(`\`${sym}\` is not longer defined by emscripten. ${msg}`); - }); + callRuntimeCallbacks(__ATPOSTRUN__); } -missingGlobal('buffer', 'Please use HEAP8.buffer or wasmMemory.buffer'); -missingGlobal('asm', 'Please use wasmExports instead'); +function addOnPreRun(cb) { + __ATPRERUN__.unshift(cb); +} -function missingLibrarySymbol(sym) { - hookGlobalSymbolAccess(sym, () => { - // Can't `abort()` here because it would break code that does runtime - // checks. e.g. `if (typeof SDL === 'undefined')`. - var msg = `\`${sym}\` is a library symbol and not included by default; add it to your library.js __deps or to DEFAULT_LIBRARY_FUNCS_TO_INCLUDE on the command line`; - // DEFAULT_LIBRARY_FUNCS_TO_INCLUDE requires the name as it appears in - // library.js, which means $name for a JS name with no prefix, or name - // for a JS name like _name. - var librarySymbol = sym; - if (!librarySymbol.startsWith('_')) { - librarySymbol = '$' + sym; - } - msg += ` (e.g. -sDEFAULT_LIBRARY_FUNCS_TO_INCLUDE='${librarySymbol}')`; - if (isExportedByForceFilesystem(sym)) { - msg += '. Alternatively, forcing filesystem support (-sFORCE_FILESYSTEM) can export this for you'; - } - warnOnce(msg); - }); +function addOnInit(cb) { + __ATINIT__.unshift(cb); +} - // Any symbol that is not included from the JS library is also (by definition) - // not exported on the Module object. - unexportedRuntimeSymbol(sym); +function addOnExit(cb) { } -function unexportedRuntimeSymbol(sym) { - if (!Object.getOwnPropertyDescriptor(Module, sym)) { - Object.defineProperty(Module, sym, { - configurable: true, - get() { - var msg = `'${sym}' was not exported. add it to EXPORTED_RUNTIME_METHODS (see the Emscripten FAQ)`; - if (isExportedByForceFilesystem(sym)) { - msg += '. Alternatively, forcing filesystem support (-sFORCE_FILESYSTEM) can export this for you'; - } - abort(msg); - } - }); - } +function addOnPostRun(cb) { + __ATPOSTRUN__.unshift(cb); } -// end include: runtime_debug.js -// Memory management +// include: runtime_math.js +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/imul -var wasmMemory; +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/fround -var -/** @type {!Int8Array} */ - HEAP8, -/** @type {!Uint8Array} */ - HEAPU8, -/** @type {!Int16Array} */ - HEAP16, -/** @type {!Uint16Array} */ - HEAPU16, -/** @type {!Int32Array} */ - HEAP32, -/** @type {!Uint32Array} */ - HEAPU32, -/** @type {!Float32Array} */ - HEAPF32, -/** @type {!Float64Array} */ - HEAPF64; - -// BigInt64Array type is not correctly defined in closure -var -/** not-@type {!BigInt64Array} */ - HEAP64, -/* BigUint64Array type is not correctly defined in closure -/** not-@type {!BigUint64Array} */ - HEAPU64; - -var runtimeInitialized = false; - - - -function updateMemoryViews() { - var b = wasmMemory.buffer; - HEAP8 = new Int8Array(b); - HEAP16 = new Int16Array(b); - HEAPU8 = new Uint8Array(b); - HEAPU16 = new Uint16Array(b); - HEAP32 = new Int32Array(b); - HEAPU32 = new Uint32Array(b); - HEAPF32 = new Float32Array(b); - HEAPF64 = new Float64Array(b); - HEAP64 = new BigInt64Array(b); - HEAPU64 = new BigUint64Array(b); -} - -// include: memoryprofiler.js -// end include: memoryprofiler.js -// end include: runtime_common.js -assert(typeof Int32Array != 'undefined' && typeof Float64Array !== 'undefined' && Int32Array.prototype.subarray != undefined && Int32Array.prototype.set != undefined, - 'JS engine does not provide full typed array support'); - -function preRun() { - if (Module['preRun']) { - if (typeof Module['preRun'] == 'function') Module['preRun'] = [Module['preRun']]; - while (Module['preRun'].length) { - addOnPreRun(Module['preRun'].shift()); - } - } - consumedModuleProp('preRun'); - // Begin ATPRERUNS hooks - callRuntimeCallbacks(onPreRuns); - // End ATPRERUNS hooks -} - -function initRuntime() { - assert(!runtimeInitialized); - runtimeInitialized = true; - - checkStackCookie(); - - // Begin ATINITS hooks - callRuntimeCallbacks(onInits); -if (!Module['noFSInit'] && !FS.initialized) FS.init(); -TTY.init(); - // End ATINITS hooks - - wasmExports['__wasm_call_ctors'](); - - // Begin ATPOSTCTORS hooks - FS.ignorePermissions = false; - // End ATPOSTCTORS hooks -} +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/clz32 -function postRun() { - checkStackCookie(); - // PThreads reuse the runtime from the main thread. - - if (Module['postRun']) { - if (typeof Module['postRun'] == 'function') Module['postRun'] = [Module['postRun']]; - while (Module['postRun'].length) { - addOnPostRun(Module['postRun'].shift()); - } - } - consumedModuleProp('postRun'); +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/trunc - // Begin ATPOSTRUNS hooks - callRuntimeCallbacks(onPostRuns); - // End ATPOSTRUNS hooks -} +assert(Math.imul, 'This browser does not support Math.imul(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill'); +assert(Math.fround, 'This browser does not support Math.fround(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill'); +assert(Math.clz32, 'This browser does not support Math.clz32(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill'); +assert(Math.trunc, 'This browser does not support Math.trunc(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill'); +// end include: runtime_math.js // A counter of dependencies for calling run(). If we need to // do asynchronous work before running, increment this and // decrement it. Incrementing must happen in a place like @@ -537,21 +754,31 @@ function postRun() { // it happens right before run - run will be postponed until // the dependencies are met. var runDependencies = 0; +var runDependencyWatcher = null; var dependenciesFulfilled = null; // overridden to take different actions when all run dependencies are fulfilled var runDependencyTracking = {}; -var runDependencyWatcher = null; + +function getUniqueRunDependency(id) { + var orig = id; + while (1) { + if (!runDependencyTracking[id]) return id; + id = orig + Math.random(); + } +} function addRunDependency(id) { runDependencies++; - Module['monitorRunDependencies']?.(runDependencies); + if (Module['monitorRunDependencies']) { + Module['monitorRunDependencies'](runDependencies); + } if (id) { assert(!runDependencyTracking[id]); runDependencyTracking[id] = 1; if (runDependencyWatcher === null && typeof setInterval != 'undefined') { // Check for missing dependencies every few seconds - runDependencyWatcher = setInterval(() => { + runDependencyWatcher = setInterval(function() { if (ABORT) { clearInterval(runDependencyWatcher); runDependencyWatcher = null; @@ -563,7 +790,7 @@ function addRunDependency(id) { shown = true; err('still waiting on run dependencies:'); } - err(`dependency: ${dep}`); + err('dependency: ' + dep); } if (shown) { err('(end of list)'); @@ -578,7 +805,9 @@ function addRunDependency(id) { function removeRunDependency(id) { runDependencies--; - Module['monitorRunDependencies']?.(runDependencies); + if (Module['monitorRunDependencies']) { + Module['monitorRunDependencies'](runDependencies); + } if (id) { assert(runDependencyTracking[id]); @@ -601,7 +830,9 @@ function removeRunDependency(id) { /** @param {string|number=} what */ function abort(what) { - Module['onAbort']?.(what); + if (Module['onAbort']) { + Module['onAbort'](what); + } what = 'Aborted(' + what + ')'; // TODO(sbc): Should we remove printing and leave it up to whoever @@ -609,6 +840,7 @@ function abort(what) { err(what); ABORT = true; + EXITSTATUS = 1; // Use a wasm runtime error, because a JS error might be seen as a foreign // exception, which means we'd run destructors on it. We need the error to @@ -620,7 +852,7 @@ function abort(what) { // allows this in the wasm spec. // Suppress closure compiler warning here. Closure compiler's builtin extern - // definition for WebAssembly.RuntimeError claims it takes no arguments even + // defintion for WebAssembly.RuntimeError claims it takes no arguments even // though it can. // TODO(https://github.com/google/closure-compiler/pull/3913): Remove if/when upstream closure gets fixed. /** @suppress {checkTypes} */ @@ -632,124 +864,196 @@ function abort(what) { throw e; } -function createExportWrapper(name, nargs) { - return (...args) => { - assert(runtimeInitialized, `native function \`${name}\` called before runtime initialization`); - var f = wasmExports[name]; - assert(f, `exported native function \`${name}\` not found`); - // Only assert for too many arguments. Too few can be valid since the missing arguments will be zero filled. - assert(args.length <= nargs, `native function \`${name}\` called with ${args.length} args but expects ${nargs}`); - return f(...args); +// include: memoryprofiler.js +// end include: memoryprofiler.js +// include: URIUtils.js +// Prefix of data URIs emitted by SINGLE_FILE and related options. +var dataURIPrefix = 'data:application/octet-stream;base64,'; + +// Indicates whether filename is a base64 data URI. +function isDataURI(filename) { + // Prefix of data URIs emitted by SINGLE_FILE and related options. + return filename.startsWith(dataURIPrefix); +} + +// Indicates whether filename is delivered via file protocol (as opposed to http/https) +function isFileURI(filename) { + return filename.startsWith('file://'); +} + +// end include: URIUtils.js +/** @param {boolean=} fixedasm */ +function createExportWrapper(name, fixedasm) { + return function() { + var displayName = name; + var asm = fixedasm; + if (!fixedasm) { + asm = Module['asm']; + } + assert(runtimeInitialized, 'native function `' + displayName + '` called before runtime initialization'); + if (!asm[name]) { + assert(asm[name], 'exported native function `' + displayName + '` not found'); + } + return asm[name].apply(null, arguments); }; } -var wasmBinaryFile; +// include: runtime_exceptions.js +// Base Emscripten EH error class +class EmscriptenEH extends Error {} + +class EmscriptenSjLj extends EmscriptenEH {} -function findWasmBinary() { - return locateFile('behave-min.wasm'); +class CppException extends EmscriptenEH { + constructor(excPtr) { + super(excPtr); + const excInfo = getExceptionMessage(excPtr); + this.name = excInfo[0]; + this.message = excInfo[1]; + } } -function getBinarySync(file) { - if (file == wasmBinaryFile && wasmBinary) { - return new Uint8Array(wasmBinary); +// end include: runtime_exceptions.js +var wasmBinaryFile; + wasmBinaryFile = 'behave-min.wasm'; + if (!isDataURI(wasmBinaryFile)) { + wasmBinaryFile = locateFile(wasmBinaryFile); + } + +function getBinary(file) { + try { + if (file == wasmBinaryFile && wasmBinary) { + return new Uint8Array(wasmBinary); + } + if (readBinary) { + return readBinary(file); + } + throw "both async and sync fetching of the wasm failed"; } - if (readBinary) { - return readBinary(file); + catch (err) { + abort(err); } - throw 'both async and sync fetching of the wasm failed'; } -async function getWasmBinary(binaryFile) { - // If we don't have the binary yet, load it asynchronously using readAsync. - if (!wasmBinary) { - // Fetch the binary using readAsync - try { - var response = await readAsync(binaryFile); - return new Uint8Array(response); - } catch { - // Fall back to getBinarySync below; +function getBinaryPromise(binaryFile) { + // If we don't have the binary yet, try to to load it asynchronously. + // Fetch has some additional restrictions over XHR, like it can't be used on a file:// url. + // See https://github.com/github/fetch/pull/92#issuecomment-140665932 + // Cordova or Electron apps are typically loaded from a file:// url. + // So use fetch if it is available and the url is not a file, otherwise fall back to XHR. + if (!wasmBinary && (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER)) { + if (typeof fetch == 'function' + && !isFileURI(binaryFile) + ) { + return fetch(binaryFile, { credentials: 'same-origin' }).then(function(response) { + if (!response['ok']) { + throw "failed to load wasm binary file at '" + binaryFile + "'"; + } + return response['arrayBuffer'](); + }).catch(function () { + return getBinary(binaryFile); + }); + } + else { + if (readAsync) { + // fetch is not available or url is file => try XHR (readAsync uses XHR internally) + return new Promise(function(resolve, reject) { + readAsync(binaryFile, function(response) { resolve(new Uint8Array(/** @type{!ArrayBuffer} */(response))) }, reject) + }); + } } } - // Otherwise, getBinarySync should be able to get it synchronously - return getBinarySync(binaryFile); + // Otherwise, getBinary should be able to get it synchronously + return Promise.resolve().then(function() { return getBinary(binaryFile); }); } -async function instantiateArrayBuffer(binaryFile, imports) { - try { - var binary = await getWasmBinary(binaryFile); - var instance = await WebAssembly.instantiate(binary, imports); +function instantiateArrayBuffer(binaryFile, imports, receiver) { + return getBinaryPromise(binaryFile).then(function(binary) { + return WebAssembly.instantiate(binary, imports); + }).then(function (instance) { return instance; - } catch (reason) { - err(`failed to asynchronously prepare wasm: ${reason}`); + }).then(receiver, function(reason) { + err('failed to asynchronously prepare wasm: ' + reason); // Warn on some common problems. if (isFileURI(wasmBinaryFile)) { - err(`warning: Loading from a file URI (${wasmBinaryFile}) is not supported in most browsers. See https://emscripten.org/docs/getting_started/FAQ.html#how-do-i-run-a-local-webserver-for-testing-why-does-my-program-stall-in-downloading-or-preparing`); + err('warning: Loading from a file URI (' + wasmBinaryFile + ') is not supported in most browsers. See https://emscripten.org/docs/getting_started/FAQ.html#how-do-i-run-a-local-webserver-for-testing-why-does-my-program-stall-in-downloading-or-preparing'); } abort(reason); - } + }); } -async function instantiateAsync(binary, binaryFile, imports) { - if (!binary && typeof WebAssembly.instantiateStreaming == 'function' +function instantiateAsync(binary, binaryFile, imports, callback) { + if (!binary && + typeof WebAssembly.instantiateStreaming == 'function' && + !isDataURI(binaryFile) && // Don't use streaming for file:// delivered objects in a webview, fetch them synchronously. - && !isFileURI(binaryFile) + !isFileURI(binaryFile) && // Avoid instantiateStreaming() on Node.js environment for now, as while // Node.js v18.1.0 implements it, it does not have a full fetch() // implementation yet. // // Reference: // https://github.com/emscripten-core/emscripten/pull/16917 - && !ENVIRONMENT_IS_NODE - ) { - try { - var response = fetch(binaryFile, { credentials: 'same-origin' }); - var instantiationResult = await WebAssembly.instantiateStreaming(response, imports); - return instantiationResult; - } catch (reason) { - // We expect the most common failure cause to be a bad MIME type for the binary, - // in which case falling back to ArrayBuffer instantiation should work. - err(`wasm streaming compile failed: ${reason}`); - err('falling back to ArrayBuffer instantiation'); - // fall back of instantiateArrayBuffer below - }; + !ENVIRONMENT_IS_NODE && + typeof fetch == 'function') { + return fetch(binaryFile, { credentials: 'same-origin' }).then(function(response) { + // Suppress closure warning here since the upstream definition for + // instantiateStreaming only allows Promise rather than + // an actual Response. + // TODO(https://github.com/google/closure-compiler/pull/3913): Remove if/when upstream closure is fixed. + /** @suppress {checkTypes} */ + var result = WebAssembly.instantiateStreaming(response, imports); + + return result.then( + callback, + function(reason) { + // We expect the most common failure cause to be a bad MIME type for the binary, + // in which case falling back to ArrayBuffer instantiation should work. + err('wasm streaming compile failed: ' + reason); + err('falling back to ArrayBuffer instantiation'); + return instantiateArrayBuffer(binaryFile, imports, callback); + }); + }); + } else { + return instantiateArrayBuffer(binaryFile, imports, callback); } - return instantiateArrayBuffer(binaryFile, imports); } -function getWasmImports() { +// Create the wasm instance. +// Receives the wasm imports, returns the exports. +function createWasm() { // prepare imports - return { + var info = { 'env': wasmImports, 'wasi_snapshot_preview1': wasmImports, - } -} - -// Create the wasm instance. -// Receives the wasm imports, returns the exports. -async function createWasm() { + }; // Load the wasm module and create an instance of using native support in the JS engine. // handle a generated wasm instance, receiving its exports and // performing other necessary setup /** @param {WebAssembly.Module=} module*/ function receiveInstance(instance, module) { - wasmExports = instance.exports; + var exports = instance.exports; - + Module['asm'] = exports; - wasmMemory = wasmExports['memory']; - - assert(wasmMemory, 'memory not found in wasm exports'); + wasmMemory = Module['asm']['memory']; + assert(wasmMemory, "memory not found in wasm exports"); + // This assertion doesn't hold when emscripten is run in --post-link + // mode. + // TODO(sbc): Read INITIAL_MEMORY out of the wasm file in post-link mode. + //assert(wasmMemory.buffer.byteLength === 16777216); updateMemoryViews(); - wasmTable = wasmExports['__indirect_function_table']; - - assert(wasmTable, 'table not found in wasm exports'); + wasmTable = Module['asm']['__indirect_function_table']; + assert(wasmTable, "table not found in wasm exports"); + + addOnInit(Module['asm']['__wasm_call_ctors']); - assignWasmExports(wasmExports); removeRunDependency('wasm-instantiate'); - return wasmExports; + + return exports; } // wait for the pthread pool (if any) addRunDependency('wasm-instantiate'); @@ -766,61 +1070,302 @@ async function createWasm() { trueModule = null; // TODO: Due to Closure regression https://github.com/google/closure-compiler/issues/3193, the above line no longer optimizes out down to the following line. // When the regression is fixed, can restore the above PTHREADS-enabled path. - return receiveInstance(result['instance']); + receiveInstance(result['instance']); } - var info = getWasmImports(); - // User shell pages can write their own Module.instantiateWasm = function(imports, successCallback) callback - // to manually instantiate the Wasm module themselves. This allows pages to - // run the instantiation parallel to any other async startup actions they are - // performing. - // Also pthreads and wasm workers initialize the wasm instance through this - // path. + // to manually instantiate the Wasm module themselves. This allows pages to run the instantiation parallel + // to any other async startup actions they are performing. + // Also pthreads and wasm workers initialize the wasm instance through this path. if (Module['instantiateWasm']) { - return new Promise((resolve, reject) => { - try { - Module['instantiateWasm'](info, (mod, inst) => { - resolve(receiveInstance(mod, inst)); - }); - } catch(e) { - err(`Module.instantiateWasm callback failed with error: ${e}`); - reject(e); + try { + return Module['instantiateWasm'](info, receiveInstance); + } catch(e) { + err('Module.instantiateWasm callback failed with error: ' + e); + return false; + } + } + + instantiateAsync(wasmBinary, wasmBinaryFile, info, receiveInstantiationResult); + return {}; // no exports yet; we'll fill them in later +} + +// Globals used by JS i64 conversions (see makeSetValue) +var tempDouble; +var tempI64; + +// include: runtime_debug.js +function legacyModuleProp(prop, newName) { + if (!Object.getOwnPropertyDescriptor(Module, prop)) { + Object.defineProperty(Module, prop, { + configurable: true, + get: function() { + abort('Module.' + prop + ' has been replaced with plain ' + newName + ' (the initial value can be provided on Module, but after startup the value is only looked for on a local variable of that name)'); } }); } +} + +function ignoredModuleProp(prop) { + if (Object.getOwnPropertyDescriptor(Module, prop)) { + abort('`Module.' + prop + '` was supplied but `' + prop + '` not included in INCOMING_MODULE_JS_API'); + } +} - wasmBinaryFile ??= findWasmBinary(); - var result = await instantiateAsync(wasmBinary, wasmBinaryFile, info); - var exports = receiveInstantiationResult(result); - return exports; +// forcing the filesystem exports a few things by default +function isExportedByForceFilesystem(name) { + return name === 'FS_createPath' || + name === 'FS_createDataFile' || + name === 'FS_createPreloadedFile' || + name === 'FS_unlink' || + name === 'addRunDependency' || + // The old FS has some functionality that WasmFS lacks. + name === 'FS_createLazyFile' || + name === 'FS_createDevice' || + name === 'removeRunDependency'; } -// end include: preamble.js +function missingGlobal(sym, msg) { + if (typeof globalThis !== 'undefined') { + Object.defineProperty(globalThis, sym, { + configurable: true, + get: function() { + warnOnce('`' + sym + '` is not longer defined by emscripten. ' + msg); + return undefined; + } + }); + } +} -// Begin JS library code +missingGlobal('buffer', 'Please use HEAP8.buffer or wasmMemory.buffer'); +function missingLibrarySymbol(sym) { + if (typeof globalThis !== 'undefined' && !Object.getOwnPropertyDescriptor(globalThis, sym)) { + Object.defineProperty(globalThis, sym, { + configurable: true, + get: function() { + // Can't `abort()` here because it would break code that does runtime + // checks. e.g. `if (typeof SDL === 'undefined')`. + var msg = '`' + sym + '` is a library symbol and not included by default; add it to your library.js __deps or to DEFAULT_LIBRARY_FUNCS_TO_INCLUDE on the command line'; + // DEFAULT_LIBRARY_FUNCS_TO_INCLUDE requires the name as it appears in + // library.js, which means $name for a JS name with no prefix, or name + // for a JS name like _name. + var librarySymbol = sym; + if (!librarySymbol.startsWith('_')) { + librarySymbol = '$' + sym; + } + msg += " (e.g. -sDEFAULT_LIBRARY_FUNCS_TO_INCLUDE=" + librarySymbol + ")"; + if (isExportedByForceFilesystem(sym)) { + msg += '. Alternatively, forcing filesystem support (-sFORCE_FILESYSTEM) can export this for you'; + } + warnOnce(msg); + return undefined; + } + }); + } + // Any symbol that is not included from the JS libary is also (by definition) + // not exported on the Module object. + unexportedRuntimeSymbol(sym); +} - class ExitStatus { - name = 'ExitStatus'; - constructor(status) { - this.message = `Program terminated with exit(${status})`; - this.status = status; +function unexportedRuntimeSymbol(sym) { + if (!Object.getOwnPropertyDescriptor(Module, sym)) { + Object.defineProperty(Module, sym, { + configurable: true, + get: function() { + var msg = "'" + sym + "' was not exported. add it to EXPORTED_RUNTIME_METHODS (see the FAQ)"; + if (isExportedByForceFilesystem(sym)) { + msg += '. Alternatively, forcing filesystem support (-sFORCE_FILESYSTEM) can export this for you'; + } + abort(msg); } + }); + } +} + +// Used by XXXXX_DEBUG settings to output debug messages. +function dbg(text) { + // TODO(sbc): Make this configurable somehow. Its not always convenient for + // logging to show up as errors. + console.error(text); +} + +// end include: runtime_debug.js +// === Body === + +function array_bounds_check_error(idx,size) { throw 'Array index ' + idx + ' out of bounds: [0,' + size + ')'; } + + + +// end include: preamble.js + + /** @constructor */ + function ExitStatus(status) { + this.name = 'ExitStatus'; + this.message = 'Program terminated with exit(' + status + ')'; + this.status = status; } - var callRuntimeCallbacks = (callbacks) => { + function callRuntimeCallbacks(callbacks) { while (callbacks.length > 0) { // Pass the module as the first argument. callbacks.shift()(Module); } - }; - var onPostRuns = []; - var addOnPostRun = (cb) => onPostRuns.push(cb); + } - var onPreRuns = []; - var addOnPreRun = (cb) => onPreRuns.push(cb); + + var wasmTableMirror = []; + + function getWasmTableEntry(funcPtr) { + var func = wasmTableMirror[funcPtr]; + if (!func) { + if (funcPtr >= wasmTableMirror.length) wasmTableMirror.length = funcPtr + 1; + wasmTableMirror[funcPtr] = func = wasmTable.get(funcPtr); + } + assert(wasmTable.get(funcPtr) == func, "JavaScript-side Wasm function table mirror is out of date!"); + return func; + } + function exception_decRef(info) { + // A rethrown exception can reach refcount 0; it must not be discarded + // Its next handler will clear the rethrown flag and addRef it, prior to + // final decRef and destruction here + if (info.release_ref() && !info.get_rethrown()) { + var destructor = info.get_destructor(); + if (destructor) { + // In Wasm, destructors return 'this' as in ARM + getWasmTableEntry(destructor)(info.excPtr); + } + ___cxa_free_exception(info.excPtr); + } + } + + /** @constructor */ + function ExceptionInfo(excPtr) { + this.excPtr = excPtr; + this.ptr = excPtr - 24; + + this.set_type = function(type) { + HEAPU32[(((this.ptr)+(4))>>2)] = type; + }; + + this.get_type = function() { + return HEAPU32[(((this.ptr)+(4))>>2)]; + }; + + this.set_destructor = function(destructor) { + HEAPU32[(((this.ptr)+(8))>>2)] = destructor; + }; + + this.get_destructor = function() { + return HEAPU32[(((this.ptr)+(8))>>2)]; + }; + + this.set_refcount = function(refcount) { + HEAP32[((this.ptr)>>2)] = refcount; + }; + + this.set_caught = function (caught) { + caught = caught ? 1 : 0; + HEAP8[(((this.ptr)+(12))>>0)] = caught; + }; + + this.get_caught = function () { + return HEAP8[(((this.ptr)+(12))>>0)] != 0; + }; + + this.set_rethrown = function (rethrown) { + rethrown = rethrown ? 1 : 0; + HEAP8[(((this.ptr)+(13))>>0)] = rethrown; + }; + + this.get_rethrown = function () { + return HEAP8[(((this.ptr)+(13))>>0)] != 0; + }; + + // Initialize native structure fields. Should be called once after allocated. + this.init = function(type, destructor) { + this.set_adjusted_ptr(0); + this.set_type(type); + this.set_destructor(destructor); + this.set_refcount(0); + this.set_caught(false); + this.set_rethrown(false); + } + + this.add_ref = function() { + var value = HEAP32[((this.ptr)>>2)]; + HEAP32[((this.ptr)>>2)] = value + 1; + }; + + // Returns true if last reference released. + this.release_ref = function() { + var prev = HEAP32[((this.ptr)>>2)]; + HEAP32[((this.ptr)>>2)] = prev - 1; + assert(prev > 0); + return prev === 1; + }; + + this.set_adjusted_ptr = function(adjustedPtr) { + HEAPU32[(((this.ptr)+(16))>>2)] = adjustedPtr; + }; + + this.get_adjusted_ptr = function() { + return HEAPU32[(((this.ptr)+(16))>>2)]; + }; + + // Get pointer which is expected to be received by catch clause in C++ code. It may be adjusted + // when the pointer is casted to some of the exception object base classes (e.g. when virtual + // inheritance is used). When a pointer is thrown this method should return the thrown pointer + // itself. + this.get_exception_ptr = function() { + // Work around a fastcomp bug, this code is still included for some reason in a build without + // exceptions support. + var isPointer = ___cxa_is_pointer_type(this.get_type()); + if (isPointer) { + return HEAPU32[((this.excPtr)>>2)]; + } + var adjusted = this.get_adjusted_ptr(); + if (adjusted !== 0) return adjusted; + return this.excPtr; + }; + } + function ___cxa_decrement_exception_refcount(ptr) { + if (!ptr) return; + exception_decRef(new ExceptionInfo(ptr)); + } + function decrementExceptionRefcount(ptr) { + ___cxa_decrement_exception_refcount(ptr); + } + + + function withStackSave(f) { + var stack = stackSave(); + var ret = f(); + stackRestore(stack); + return ret; + } + function getExceptionMessageCommon(ptr) { + return withStackSave(function() { + var type_addr_addr = stackAlloc(4); + var message_addr_addr = stackAlloc(4); + ___get_exception_message(ptr, type_addr_addr, message_addr_addr); + var type_addr = HEAPU32[((type_addr_addr)>>2)]; + var message_addr = HEAPU32[((message_addr_addr)>>2)]; + var type = UTF8ToString(type_addr); + _free(type_addr); + var message; + if (message_addr) { + message = UTF8ToString(message_addr); + _free(message_addr); + } + return [type, message]; + }); + } + function getExceptionMessage(ptr) { + return getExceptionMessageCommon(ptr); + } + Module["getExceptionMessage"] = getExceptionMessage; /** @@ -830,26 +1375,34 @@ async function createWasm() { function getValue(ptr, type = 'i8') { if (type.endsWith('*')) type = '*'; switch (type) { - case 'i1': return HEAP8[ptr]; - case 'i8': return HEAP8[ptr]; + case 'i1': return HEAP8[((ptr)>>0)]; + case 'i8': return HEAP8[((ptr)>>0)]; case 'i16': return HEAP16[((ptr)>>1)]; case 'i32': return HEAP32[((ptr)>>2)]; - case 'i64': return HEAP64[((ptr)>>3)]; + case 'i64': return HEAP32[((ptr)>>2)]; case 'float': return HEAPF32[((ptr)>>2)]; case 'double': return HEAPF64[((ptr)>>3)]; case '*': return HEAPU32[((ptr)>>2)]; - default: abort(`invalid type for getValue: ${type}`); + default: abort('invalid type for getValue: ' + type); } } - var noExitRuntime = true; + function exception_addRef(info) { + info.add_ref(); + } + + function ___cxa_increment_exception_refcount(ptr) { + if (!ptr) return; + exception_addRef(new ExceptionInfo(ptr)); + } + function incrementExceptionRefcount(ptr) { + ___cxa_increment_exception_refcount(ptr); + } - var ptrToString = (ptr) => { + function ptrToString(ptr) { assert(typeof ptr === 'number'); - // With CAN_ADDRESS_2GB or MEMORY64, pointers are already unsigned. - ptr >>>= 0; return '0x' + ptr.toString(16).padStart(8, '0'); - }; + } /** @@ -860,114 +1413,36 @@ async function createWasm() { function setValue(ptr, value, type = 'i8') { if (type.endsWith('*')) type = '*'; switch (type) { - case 'i1': HEAP8[ptr] = value; break; - case 'i8': HEAP8[ptr] = value; break; + case 'i1': HEAP8[((ptr)>>0)] = value; break; + case 'i8': HEAP8[((ptr)>>0)] = value; break; case 'i16': HEAP16[((ptr)>>1)] = value; break; case 'i32': HEAP32[((ptr)>>2)] = value; break; - case 'i64': HEAP64[((ptr)>>3)] = BigInt(value); break; + case 'i64': (tempI64 = [value>>>0,(tempDouble=value,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[((ptr)>>2)] = tempI64[0],HEAP32[(((ptr)+(4))>>2)] = tempI64[1]); break; case 'float': HEAPF32[((ptr)>>2)] = value; break; case 'double': HEAPF64[((ptr)>>3)] = value; break; case '*': HEAPU32[((ptr)>>2)] = value; break; - default: abort(`invalid type for setValue: ${type}`); + default: abort('invalid type for setValue: ' + type); } } - var stackRestore = (val) => __emscripten_stack_restore(val); - - var stackSave = () => _emscripten_stack_get_current(); - - var warnOnce = (text) => { - warnOnce.shown ||= {}; + function warnOnce(text) { + if (!warnOnce.shown) warnOnce.shown = {}; if (!warnOnce.shown[text]) { warnOnce.shown[text] = 1; if (ENVIRONMENT_IS_NODE) text = 'warning: ' + text; err(text); } - }; + } - var UTF8Decoder = typeof TextDecoder != 'undefined' ? new TextDecoder() : undefined; - - /** - * Given a pointer 'idx' to a null-terminated UTF8-encoded string in the given - * array that contains uint8 values, returns a copy of that string as a - * Javascript String object. - * heapOrArray is either a regular array, or a JavaScript typed array view. - * @param {number=} idx - * @param {number=} maxBytesToRead - * @return {string} - */ - var UTF8ArrayToString = (heapOrArray, idx = 0, maxBytesToRead = NaN) => { - var endIdx = idx + maxBytesToRead; - var endPtr = idx; - // TextDecoder needs to know the byte length in advance, it doesn't stop on - // null terminator by itself. Also, use the length info to avoid running tiny - // strings through TextDecoder, since .subarray() allocates garbage. - // (As a tiny code save trick, compare endPtr against endIdx using a negation, - // so that undefined/NaN means Infinity) - while (heapOrArray[endPtr] && !(endPtr >= endIdx)) ++endPtr; - - // When using conditional TextDecoder, skip it for short strings as the overhead of the native call is not worth it. - if (endPtr - idx > 16 && heapOrArray.buffer && UTF8Decoder) { - return UTF8Decoder.decode(heapOrArray.subarray(idx, endPtr)); - } - var str = ''; - // If building with TextDecoder, we have already computed the string length - // above, so test loop end condition against that - while (idx < endPtr) { - // For UTF8 byte structure, see: - // http://en.wikipedia.org/wiki/UTF-8#Description - // https://www.ietf.org/rfc/rfc2279.txt - // https://tools.ietf.org/html/rfc3629 - var u0 = heapOrArray[idx++]; - if (!(u0 & 0x80)) { str += String.fromCharCode(u0); continue; } - var u1 = heapOrArray[idx++] & 63; - if ((u0 & 0xE0) == 0xC0) { str += String.fromCharCode(((u0 & 31) << 6) | u1); continue; } - var u2 = heapOrArray[idx++] & 63; - if ((u0 & 0xF0) == 0xE0) { - u0 = ((u0 & 15) << 12) | (u1 << 6) | u2; - } else { - if ((u0 & 0xF8) != 0xF0) warnOnce('Invalid UTF-8 leading byte ' + ptrToString(u0) + ' encountered when deserializing a UTF-8 string in wasm memory to a JS string!'); - u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | (heapOrArray[idx++] & 63); - } - - if (u0 < 0x10000) { - str += String.fromCharCode(u0); - } else { - var ch = u0 - 0x10000; - str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF)); - } - } - return str; - }; - - /** - * Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the - * emscripten HEAP, returns a copy of that string as a Javascript String object. - * - * @param {number} ptr - * @param {number=} maxBytesToRead - An optional length that specifies the - * maximum number of bytes to read. You can omit this parameter to scan the - * string until the first 0 byte. If maxBytesToRead is passed, and the string - * at [ptr, ptr+maxBytesToReadr[ contains a null byte in the middle, then the - * string will cut short at that byte index (i.e. maxBytesToRead will not - * produce a string of exact length [ptr, ptr+maxBytesToRead[) N.B. mixing - * frequent uses of UTF8ToString() with and without maxBytesToRead may throw - * JS JIT optimizations off, so it is worth to consider consistently using one - * @return {string} - */ - var UTF8ToString = (ptr, maxBytesToRead) => { - assert(typeof ptr == 'number', `UTF8ToString expects a number (got ${typeof ptr})`); - return ptr ? UTF8ArrayToString(HEAPU8, ptr, maxBytesToRead) : ''; - }; - var ___assert_fail = (condition, filename, line, func) => - abort(`Assertion failed: ${UTF8ToString(condition)}, at: ` + [filename ? UTF8ToString(filename) : 'unknown filename', line, func ? UTF8ToString(func) : 'unknown function']); + function ___assert_fail(condition, filename, line, func) { + abort('Assertion failed: ' + UTF8ToString(condition) + ', at: ' + [filename ? UTF8ToString(filename) : 'unknown filename', line, func ? UTF8ToString(func) : 'unknown function']); + } var exceptionCaught = []; - var uncaughtExceptionCount = 0; - var ___cxa_begin_catch = (ptr) => { + function ___cxa_begin_catch(ptr) { var info = new ExceptionInfo(ptr); if (!info.get_caught()) { info.set_caught(true); @@ -975,74 +1450,34 @@ async function createWasm() { } info.set_rethrown(false); exceptionCaught.push(info); - ___cxa_increment_exception_refcount(ptr); - return ___cxa_get_exception_ptr(ptr); - }; + exception_addRef(info); + return info.get_exception_ptr(); + } - var exceptionLast = 0; - - class ExceptionInfo { - // excPtr - Thrown object pointer to wrap. Metadata pointer is calculated from it. - constructor(excPtr) { - this.excPtr = excPtr; - this.ptr = excPtr - 24; - } - - set_type(type) { - HEAPU32[(((this.ptr)+(4))>>2)] = type; - } - - get_type() { - return HEAPU32[(((this.ptr)+(4))>>2)]; - } - - set_destructor(destructor) { - HEAPU32[(((this.ptr)+(8))>>2)] = destructor; - } - - get_destructor() { - return HEAPU32[(((this.ptr)+(8))>>2)]; - } - - set_caught(caught) { - caught = caught ? 1 : 0; - HEAP8[(this.ptr)+(12)] = caught; - } - - get_caught() { - return HEAP8[(this.ptr)+(12)] != 0; - } - set_rethrown(rethrown) { - rethrown = rethrown ? 1 : 0; - HEAP8[(this.ptr)+(13)] = rethrown; - } + var exceptionLast = 0; - get_rethrown() { - return HEAP8[(this.ptr)+(13)] != 0; - } + function ___cxa_end_catch() { + // Clear state flag. + _setThrew(0); + assert(exceptionCaught.length > 0); + // Call destructor if one is registered then clear it. + var info = exceptionCaught.pop(); - // Initialize native structure fields. Should be called once after allocated. - init(type, destructor) { - this.set_adjusted_ptr(0); - this.set_type(type); - this.set_destructor(destructor); - } + exception_decRef(info); + exceptionLast = 0; // XXX in decRef? + } + - set_adjusted_ptr(adjustedPtr) { - HEAPU32[(((this.ptr)+(16))>>2)] = adjustedPtr; - } - get_adjusted_ptr() { - return HEAPU32[(((this.ptr)+(16))>>2)]; - } + function ___resumeException(ptr) { + if (!exceptionLast) { exceptionLast = ptr; } + throw new CppException(ptr); } - var setTempRet0 = (val) => __emscripten_tempret_set(val); - var findMatchingCatch = (args) => { - var thrown = - exceptionLast?.excPtr; + function ___cxa_find_matching_catch() { + var thrown = exceptionLast; if (!thrown) { // just pass through the null ptr setTempRet0(0); @@ -1062,7 +1497,8 @@ async function createWasm() { // Due to inheritance, those types may not precisely match the // type of the thrown object. Find one which matches, and // return the type of the catch block which should be called. - for (var caughtType of args) { + for (var i = 0; i < arguments.length; i++) { + var caughtType = arguments[i]; if (caughtType === 0 || caughtType === thrownType) { // Catch all clause matched or exactly the same type is caught break; @@ -1075,47 +1511,51 @@ async function createWasm() { } setTempRet0(thrownType); return thrown; - }; - var ___cxa_find_matching_catch_2 = () => findMatchingCatch([]); + } + var ___cxa_find_matching_catch_2 = ___cxa_find_matching_catch; + + var ___cxa_find_matching_catch_3 = ___cxa_find_matching_catch; - var ___cxa_find_matching_catch_3 = (arg0) => findMatchingCatch([arg0]); + + + function ___cxa_rethrow() { + var info = exceptionCaught.pop(); + if (!info) { + abort('no exception to throw'); + } + var ptr = info.excPtr; + if (!info.get_rethrown()) { + // Only pop if the corresponding push was through rethrow_primary_exception + exceptionCaught.push(info); + info.set_rethrown(true); + info.set_caught(false); + uncaughtExceptionCount++; + } + exceptionLast = ptr; + throw new CppException(ptr); + } - var ___cxa_throw = (ptr, type, destructor) => { + function ___cxa_throw(ptr, type, destructor) { var info = new ExceptionInfo(ptr); // Initialize ExceptionInfo content after it was allocated in __cxa_allocate_exception. info.init(type, destructor); - exceptionLast = new CppException(ptr); + exceptionLast = ptr; uncaughtExceptionCount++; - throw exceptionLast; - }; + throw new CppException(ptr); + } - var ___resumeException = (ptr) => { - if (!exceptionLast) { - exceptionLast = new CppException(ptr); - } - throw exceptionLast; - }; - /** @suppress {duplicate } */ - var syscallGetVarargI = () => { - assert(SYSCALLS.varargs != undefined); - // the `+` prepended here is necessary to convince the JSCompiler that varargs is indeed a number. - var ret = HEAP32[((+SYSCALLS.varargs)>>2)]; - SYSCALLS.varargs += 4; - return ret; - }; - var syscallGetVarargP = syscallGetVarargI; - + function setErrNo(value) { + HEAP32[((___errno_location())>>2)] = value; + return value; + } - var PATH = { - isAbs:(path) => path.charAt(0) === '/', - splitPath:(filename) => { + var PATH = {isAbs:(path) => path.charAt(0) === '/',splitPath:(filename) => { var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/; return splitPathRe.exec(filename).slice(1); - }, - normalizeArray:(parts, allowAboveRoot) => { + },normalizeArray:(parts, allowAboveRoot) => { // if the path tries to go above the root, `up` ends up > 0 var up = 0; for (var i = parts.length - 1; i >= 0; i--) { @@ -1137,10 +1577,9 @@ async function createWasm() { } } return parts; - }, - normalize:(path) => { + },normalize:(path) => { var isAbsolute = PATH.isAbs(path), - trailingSlash = path.slice(-1) === '/'; + trailingSlash = path.substr(-1) === '/'; // Normalize the path path = PATH.normalizeArray(path.split('/').filter((p) => !!p), !isAbsolute).join('/'); if (!path && !isAbsolute) { @@ -1150,8 +1589,7 @@ async function createWasm() { path += '/'; } return (isAbsolute ? '/' : '') + path; - }, - dirname:(path) => { + },dirname:(path) => { var result = PATH.splitPath(path), root = result[0], dir = result[1]; @@ -1161,37 +1599,51 @@ async function createWasm() { } if (dir) { // It has a dirname, strip trailing slash - dir = dir.slice(0, -1); + dir = dir.substr(0, dir.length - 1); } return root + dir; - }, - basename:(path) => path && path.match(/([^\/]+|\/)\/*$/)[1], - join:(...paths) => PATH.normalize(paths.join('/')), - join2:(l, r) => PATH.normalize(l + '/' + r), - }; - - var initRandomFill = () => { - // This block is not needed on v19+ since crypto.getRandomValues is builtin + },basename:(path) => { + // EMSCRIPTEN return '/'' for '/', not an empty string + if (path === '/') return '/'; + path = PATH.normalize(path); + path = path.replace(/\/$/, ""); + var lastSlash = path.lastIndexOf('/'); + if (lastSlash === -1) return path; + return path.substr(lastSlash+1); + },join:function() { + var paths = Array.prototype.slice.call(arguments); + return PATH.normalize(paths.join('/')); + },join2:(l, r) => { + return PATH.normalize(l + '/' + r); + }}; + + function getRandomDevice() { + if (typeof crypto == 'object' && typeof crypto['getRandomValues'] == 'function') { + // for modern web browsers + var randomBuffer = new Uint8Array(1); + return () => { crypto.getRandomValues(randomBuffer); return randomBuffer[0]; }; + } else if (ENVIRONMENT_IS_NODE) { - var nodeCrypto = require('crypto'); - return (view) => nodeCrypto.randomFillSync(view); + // for nodejs with or without crypto support included + try { + var crypto_module = require('crypto'); + // nodejs has crypto support + return () => crypto_module['randomBytes'](1)[0]; + } catch (e) { + // nodejs doesn't have crypto support + } } - - return (view) => crypto.getRandomValues(view); - }; - var randomFill = (view) => { - // Lazily init on the first invocation. - (randomFill = initRandomFill())(view); - }; + // we couldn't find a proper implementation, as Math.random() is not suitable for /dev/random, see emscripten-core/emscripten/pull/7096 + return () => abort("no cryptographic support found for randomDevice. consider polyfilling it if you want to use something insecure like Math.random(), e.g. put this in a --pre-js: var crypto = { getRandomValues: function(array) { for (var i = 0; i < array.length; i++) array[i] = (Math.random()*256)|0 } };"); + } - var PATH_FS = { - resolve:(...args) => { + var PATH_FS = {resolve:function() { var resolvedPath = '', resolvedAbsolute = false; - for (var i = args.length - 1; i >= -1 && !resolvedAbsolute; i--) { - var path = (i >= 0) ? args[i] : FS.cwd(); + for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) { + var path = (i >= 0) ? arguments[i] : FS.cwd(); // Skip empty and invalid entries if (typeof path != 'string') { throw new TypeError('Arguments to path.resolve must be strings'); @@ -1205,10 +1657,9 @@ async function createWasm() { // handle relative paths to be safe (might happen when process.cwd() fails) resolvedPath = PATH.normalizeArray(resolvedPath.split('/').filter((p) => !!p), !resolvedAbsolute).join('/'); return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.'; - }, - relative:(from, to) => { - from = PATH_FS.resolve(from).slice(1); - to = PATH_FS.resolve(to).slice(1); + },relative:(from, to) => { + from = PATH_FS.resolve(from).substr(1); + to = PATH_FS.resolve(to).substr(1); function trim(arr) { var start = 0; for (; start < arr.length; start++) { @@ -1237,135 +1688,18 @@ async function createWasm() { } outputParts = outputParts.concat(toParts.slice(samePartsLength)); return outputParts.join('/'); - }, - }; - - - - var FS_stdin_getChar_buffer = []; + }}; - var lengthBytesUTF8 = (str) => { - var len = 0; - for (var i = 0; i < str.length; ++i) { - // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code - // unit, not a Unicode code point of the character! So decode - // UTF16->UTF32->UTF8. - // See http://unicode.org/faq/utf_bom.html#utf16-3 - var c = str.charCodeAt(i); // possibly a lead surrogate - if (c <= 0x7F) { - len++; - } else if (c <= 0x7FF) { - len += 2; - } else if (c >= 0xD800 && c <= 0xDFFF) { - len += 4; ++i; - } else { - len += 3; - } - } - return len; - }; - var stringToUTF8Array = (str, heap, outIdx, maxBytesToWrite) => { - assert(typeof str === 'string', `stringToUTF8Array expects a string (got ${typeof str})`); - // Parameter maxBytesToWrite is not optional. Negative values, 0, null, - // undefined and false each don't write out any bytes. - if (!(maxBytesToWrite > 0)) - return 0; - - var startIdx = outIdx; - var endIdx = outIdx + maxBytesToWrite - 1; // -1 for string null terminator. - for (var i = 0; i < str.length; ++i) { - // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description - // and https://www.ietf.org/rfc/rfc2279.txt - // and https://tools.ietf.org/html/rfc3629 - var u = str.codePointAt(i); - if (u <= 0x7F) { - if (outIdx >= endIdx) break; - heap[outIdx++] = u; - } else if (u <= 0x7FF) { - if (outIdx + 1 >= endIdx) break; - heap[outIdx++] = 0xC0 | (u >> 6); - heap[outIdx++] = 0x80 | (u & 63); - } else if (u <= 0xFFFF) { - if (outIdx + 2 >= endIdx) break; - heap[outIdx++] = 0xE0 | (u >> 12); - heap[outIdx++] = 0x80 | ((u >> 6) & 63); - heap[outIdx++] = 0x80 | (u & 63); - } else { - if (outIdx + 3 >= endIdx) break; - if (u > 0x10FFFF) warnOnce('Invalid Unicode code point ' + ptrToString(u) + ' encountered when serializing a JS string to a UTF-8 string in wasm memory! (Valid unicode code points should be in range 0-0x10FFFF).'); - heap[outIdx++] = 0xF0 | (u >> 18); - heap[outIdx++] = 0x80 | ((u >> 12) & 63); - heap[outIdx++] = 0x80 | ((u >> 6) & 63); - heap[outIdx++] = 0x80 | (u & 63); - // Gotcha: if codePoint is over 0xFFFF, it is represented as a surrogate pair in UTF-16. - // We need to manually skip over the second code unit for correct iteration. - i++; - } - } - // Null-terminate the pointer to the buffer. - heap[outIdx] = 0; - return outIdx - startIdx; - }; /** @type {function(string, boolean=, number=)} */ - var intArrayFromString = (stringy, dontAddNull, length) => { - var len = length > 0 ? length : lengthBytesUTF8(stringy)+1; - var u8array = new Array(len); - var numBytesWritten = stringToUTF8Array(stringy, u8array, 0, u8array.length); - if (dontAddNull) u8array.length = numBytesWritten; - return u8array; - }; - var FS_stdin_getChar = () => { - if (!FS_stdin_getChar_buffer.length) { - var result = null; - if (ENVIRONMENT_IS_NODE) { - // we will read data by chunks of BUFSIZE - var BUFSIZE = 256; - var buf = Buffer.alloc(BUFSIZE); - var bytesRead = 0; - - // For some reason we must suppress a closure warning here, even though - // fd definitely exists on process.stdin, and is even the proper way to - // get the fd of stdin, - // https://github.com/nodejs/help/issues/2136#issuecomment-523649904 - // This started to happen after moving this logic out of library_tty.js, - // so it is related to the surrounding code in some unclear manner. - /** @suppress {missingProperties} */ - var fd = process.stdin.fd; - - try { - bytesRead = fs.readSync(fd, buf, 0, BUFSIZE); - } catch(e) { - // Cross-platform differences: on Windows, reading EOF throws an - // exception, but on other OSes, reading EOF returns 0. Uniformize - // behavior by treating the EOF exception to return 0. - if (e.toString().includes('EOF')) bytesRead = 0; - else throw e; - } - - if (bytesRead > 0) { - result = buf.slice(0, bytesRead).toString('utf-8'); - } - } else - if (typeof window != 'undefined' && - typeof window.prompt == 'function') { - // Browser. - result = window.prompt('Input: '); // returns null on cancel - if (result !== null) { - result += '\n'; - } - } else - {} - if (!result) { - return null; - } - FS_stdin_getChar_buffer = intArrayFromString(result, true); - } - return FS_stdin_getChar_buffer.shift(); - }; - var TTY = { - ttys:[], - init() { + function intArrayFromString(stringy, dontAddNull, length) { + var len = length > 0 ? length : lengthBytesUTF8(stringy)+1; + var u8array = new Array(len); + var numBytesWritten = stringToUTF8Array(stringy, u8array, 0, u8array.length); + if (dontAddNull) u8array.length = numBytesWritten; + return u8array; + } + var TTY = {ttys:[],init:function () { // https://github.com/emscripten-core/emscripten/pull/1555 // if (ENVIRONMENT_IS_NODE) { // // currently, FS.init does not distinguish if process.stdin is a file or TTY @@ -1374,8 +1708,7 @@ async function createWasm() { // // with text files until FS.init can be refactored. // process.stdin.setEncoding('utf8'); // } - }, - shutdown() { + },shutdown:function() { // https://github.com/emscripten-core/emscripten/pull/1555 // if (ENVIRONMENT_IS_NODE) { // // inolen: any idea as to why node -e 'process.stdin.read()' wouldn't exit immediately (with process.stdin being a tty)? @@ -1385,28 +1718,22 @@ async function createWasm() { // // isaacs: do process.stdin.pause() and i'd think it'd probably close the pending call // process.stdin.pause(); // } - }, - register(dev, ops) { + },register:function(dev, ops) { TTY.ttys[dev] = { input: [], output: [], ops: ops }; FS.registerDevice(dev, TTY.stream_ops); - }, - stream_ops:{ - open(stream) { + },stream_ops:{open:function(stream) { var tty = TTY.ttys[stream.node.rdev]; if (!tty) { throw new FS.ErrnoError(43); } stream.tty = tty; stream.seekable = false; - }, - close(stream) { + },close:function(stream) { // flush any pending line data stream.tty.ops.fsync(stream.tty); - }, - fsync(stream) { + },fsync:function(stream) { stream.tty.ops.fsync(stream.tty); - }, - read(stream, buffer, offset, length, pos /* ignored */) { + },read:function(stream, buffer, offset, length, pos /* ignored */) { if (!stream.tty || !stream.tty.ops.get_char) { throw new FS.ErrnoError(60); } @@ -1426,11 +1753,10 @@ async function createWasm() { buffer[offset+i] = result; } if (bytesRead) { - stream.node.atime = Date.now(); + stream.node.timestamp = Date.now(); } return bytesRead; - }, - write(stream, buffer, offset, length, pos) { + },write:function(stream, buffer, offset, length, pos) { if (!stream.tty || !stream.tty.ops.put_char) { throw new FS.ErrnoError(60); } @@ -1442,129 +1768,148 @@ async function createWasm() { throw new FS.ErrnoError(29); } if (length) { - stream.node.mtime = stream.node.ctime = Date.now(); + stream.node.timestamp = Date.now(); } return i; - }, - }, - default_tty_ops:{ - get_char(tty) { - return FS_stdin_getChar(); - }, - put_char(tty, val) { + }},default_tty_ops:{get_char:function(tty) { + if (!tty.input.length) { + var result = null; + if (ENVIRONMENT_IS_NODE) { + // we will read data by chunks of BUFSIZE + var BUFSIZE = 256; + var buf = Buffer.alloc(BUFSIZE); + var bytesRead = 0; + + try { + bytesRead = fs.readSync(process.stdin.fd, buf, 0, BUFSIZE, -1); + } catch(e) { + // Cross-platform differences: on Windows, reading EOF throws an exception, but on other OSes, + // reading EOF returns 0. Uniformize behavior by treating the EOF exception to return 0. + if (e.toString().includes('EOF')) bytesRead = 0; + else throw e; + } + + if (bytesRead > 0) { + result = buf.slice(0, bytesRead).toString('utf-8'); + } else { + result = null; + } + } else + if (typeof window != 'undefined' && + typeof window.prompt == 'function') { + // Browser. + result = window.prompt('Input: '); // returns null on cancel + if (result !== null) { + result += '\n'; + } + } else if (typeof readline == 'function') { + // Command line. + result = readline(); + if (result !== null) { + result += '\n'; + } + } + if (!result) { + return null; + } + tty.input = intArrayFromString(result, true); + } + return tty.input.shift(); + },put_char:function(tty, val) { if (val === null || val === 10) { - out(UTF8ArrayToString(tty.output)); + out(UTF8ArrayToString(tty.output, 0)); tty.output = []; } else { if (val != 0) tty.output.push(val); // val == 0 would cut text output off in the middle. } - }, - fsync(tty) { - if (tty.output?.length > 0) { - out(UTF8ArrayToString(tty.output)); + },fsync:function(tty) { + if (tty.output && tty.output.length > 0) { + out(UTF8ArrayToString(tty.output, 0)); tty.output = []; } - }, - ioctl_tcgets(tty) { - // typical setting - return { - c_iflag: 25856, - c_oflag: 5, - c_cflag: 191, - c_lflag: 35387, - c_cc: [ - 0x03, 0x1c, 0x7f, 0x15, 0x04, 0x00, 0x01, 0x00, 0x11, 0x13, 0x1a, 0x00, - 0x12, 0x0f, 0x17, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - ] - }; - }, - ioctl_tcsets(tty, optional_actions, data) { - // currently just ignore - return 0; - }, - ioctl_tiocgwinsz(tty) { - return [24, 80]; - }, - }, - default_tty1_ops:{ - put_char(tty, val) { + }},default_tty1_ops:{put_char:function(tty, val) { if (val === null || val === 10) { - err(UTF8ArrayToString(tty.output)); + err(UTF8ArrayToString(tty.output, 0)); tty.output = []; } else { if (val != 0) tty.output.push(val); } - }, - fsync(tty) { - if (tty.output?.length > 0) { - err(UTF8ArrayToString(tty.output)); + },fsync:function(tty) { + if (tty.output && tty.output.length > 0) { + err(UTF8ArrayToString(tty.output, 0)); tty.output = []; } - }, - }, - }; + }}}; + + function zeroMemory(address, size) { + HEAPU8.fill(0, address, address + size); + return address; + } - var mmapAlloc = (size) => { + function alignMemory(size, alignment) { + assert(alignment, "alignment argument is required"); + return Math.ceil(size / alignment) * alignment; + } + function mmapAlloc(size) { abort('internal error: mmapAlloc called but `emscripten_builtin_memalign` native symbol not exported'); - }; - var MEMFS = { - ops_table:null, - mount(mount) { - return MEMFS.createNode(null, '/', 16895, 0); - }, - createNode(parent, name, mode, dev) { + } + var MEMFS = {ops_table:null,mount:function(mount) { + return MEMFS.createNode(null, '/', 16384 | 511 /* 0777 */, 0); + },createNode:function(parent, name, mode, dev) { if (FS.isBlkdev(mode) || FS.isFIFO(mode)) { // no supported throw new FS.ErrnoError(63); } - MEMFS.ops_table ||= { - dir: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - lookup: MEMFS.node_ops.lookup, - mknod: MEMFS.node_ops.mknod, - rename: MEMFS.node_ops.rename, - unlink: MEMFS.node_ops.unlink, - rmdir: MEMFS.node_ops.rmdir, - readdir: MEMFS.node_ops.readdir, - symlink: MEMFS.node_ops.symlink - }, - stream: { - llseek: MEMFS.stream_ops.llseek - } - }, - file: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr + if (!MEMFS.ops_table) { + MEMFS.ops_table = { + dir: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr, + lookup: MEMFS.node_ops.lookup, + mknod: MEMFS.node_ops.mknod, + rename: MEMFS.node_ops.rename, + unlink: MEMFS.node_ops.unlink, + rmdir: MEMFS.node_ops.rmdir, + readdir: MEMFS.node_ops.readdir, + symlink: MEMFS.node_ops.symlink + }, + stream: { + llseek: MEMFS.stream_ops.llseek + } }, - stream: { - llseek: MEMFS.stream_ops.llseek, - read: MEMFS.stream_ops.read, - write: MEMFS.stream_ops.write, - mmap: MEMFS.stream_ops.mmap, - msync: MEMFS.stream_ops.msync - } - }, - link: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr, - readlink: MEMFS.node_ops.readlink + file: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr + }, + stream: { + llseek: MEMFS.stream_ops.llseek, + read: MEMFS.stream_ops.read, + write: MEMFS.stream_ops.write, + allocate: MEMFS.stream_ops.allocate, + mmap: MEMFS.stream_ops.mmap, + msync: MEMFS.stream_ops.msync + } }, - stream: {} - }, - chrdev: { - node: { - getattr: MEMFS.node_ops.getattr, - setattr: MEMFS.node_ops.setattr + link: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr, + readlink: MEMFS.node_ops.readlink + }, + stream: {} }, - stream: FS.chrdev_stream_ops - } - }; + chrdev: { + node: { + getattr: MEMFS.node_ops.getattr, + setattr: MEMFS.node_ops.setattr + }, + stream: FS.chrdev_stream_ops + } + }; + } var node = FS.createNode(parent, name, mode, dev); if (FS.isDir(node.mode)) { node.node_ops = MEMFS.ops_table.dir.node; @@ -1585,20 +1930,18 @@ async function createWasm() { node.node_ops = MEMFS.ops_table.chrdev.node; node.stream_ops = MEMFS.ops_table.chrdev.stream; } - node.atime = node.mtime = node.ctime = Date.now(); + node.timestamp = Date.now(); // add the new node to the parent if (parent) { parent.contents[name] = node; - parent.atime = parent.mtime = parent.ctime = node.atime; + parent.timestamp = node.timestamp; } return node; - }, - getFileDataAsTypedArray(node) { + },getFileDataAsTypedArray:function(node) { if (!node.contents) return new Uint8Array(0); if (node.contents.subarray) return node.contents.subarray(0, node.usedBytes); // Make sure to not return excess unused bytes. return new Uint8Array(node.contents); - }, - expandFileStorage(node, newCapacity) { + },expandFileStorage:function(node, newCapacity) { var prevCapacity = node.contents ? node.contents.length : 0; if (prevCapacity >= newCapacity) return; // No need to expand, the storage was already large enough. // Don't expand strictly to the given requested limit if it's only a very small increase, but instead geometrically grow capacity. @@ -1610,8 +1953,7 @@ async function createWasm() { var oldContents = node.contents; node.contents = new Uint8Array(newCapacity); // Allocate new storage. if (node.usedBytes > 0) node.contents.set(oldContents.subarray(0, node.usedBytes), 0); // Copy old data over to the new storage. - }, - resizeFileStorage(node, newSize) { + },resizeFileStorage:function(node, newSize) { if (node.usedBytes == newSize) return; if (newSize == 0) { node.contents = null; // Fully decommit when requesting a resize to zero. @@ -1624,9 +1966,7 @@ async function createWasm() { } node.usedBytes = newSize; } - }, - node_ops:{ - getattr(node) { + },node_ops:{getattr:function(node) { var attr = {}; // device numbers reuse inode numbers. attr.dev = FS.isChrdev(node.mode) ? node.id : 1; @@ -1645,80 +1985,78 @@ async function createWasm() { } else { attr.size = 0; } - attr.atime = new Date(node.atime); - attr.mtime = new Date(node.mtime); - attr.ctime = new Date(node.ctime); + attr.atime = new Date(node.timestamp); + attr.mtime = new Date(node.timestamp); + attr.ctime = new Date(node.timestamp); // NOTE: In our implementation, st_blocks = Math.ceil(st_size/st_blksize), // but this is not required by the standard. attr.blksize = 4096; attr.blocks = Math.ceil(attr.size / attr.blksize); return attr; - }, - setattr(node, attr) { - for (const key of ["mode", "atime", "mtime", "ctime"]) { - if (attr[key] != null) { - node[key] = attr[key]; - } + },setattr:function(node, attr) { + if (attr.mode !== undefined) { + node.mode = attr.mode; + } + if (attr.timestamp !== undefined) { + node.timestamp = attr.timestamp; } if (attr.size !== undefined) { MEMFS.resizeFileStorage(node, attr.size); } - }, - lookup(parent, name) { - throw new FS.ErrnoError(44); - }, - mknod(parent, name, mode, dev) { + },lookup:function(parent, name) { + throw FS.genericErrors[44]; + },mknod:function(parent, name, mode, dev) { return MEMFS.createNode(parent, name, mode, dev); - }, - rename(old_node, new_dir, new_name) { - var new_node; - try { - new_node = FS.lookupNode(new_dir, new_name); - } catch (e) {} - if (new_node) { - if (FS.isDir(old_node.mode)) { - // if we're overwriting a directory at new_name, make sure it's empty. + },rename:function(old_node, new_dir, new_name) { + // if we're overwriting a directory at new_name, make sure it's empty. + if (FS.isDir(old_node.mode)) { + var new_node; + try { + new_node = FS.lookupNode(new_dir, new_name); + } catch (e) { + } + if (new_node) { for (var i in new_node.contents) { throw new FS.ErrnoError(55); } } - FS.hashRemoveNode(new_node); } // do the internal rewiring delete old_node.parent.contents[old_node.name]; - new_dir.contents[new_name] = old_node; + old_node.parent.timestamp = Date.now() old_node.name = new_name; - new_dir.ctime = new_dir.mtime = old_node.parent.ctime = old_node.parent.mtime = Date.now(); - }, - unlink(parent, name) { + new_dir.contents[new_name] = old_node; + new_dir.timestamp = old_node.parent.timestamp; + old_node.parent = new_dir; + },unlink:function(parent, name) { delete parent.contents[name]; - parent.ctime = parent.mtime = Date.now(); - }, - rmdir(parent, name) { + parent.timestamp = Date.now(); + },rmdir:function(parent, name) { var node = FS.lookupNode(parent, name); for (var i in node.contents) { throw new FS.ErrnoError(55); } delete parent.contents[name]; - parent.ctime = parent.mtime = Date.now(); - }, - readdir(node) { - return ['.', '..', ...Object.keys(node.contents)]; - }, - symlink(parent, newname, oldpath) { - var node = MEMFS.createNode(parent, newname, 0o777 | 40960, 0); + parent.timestamp = Date.now(); + },readdir:function(node) { + var entries = ['.', '..']; + for (var key in node.contents) { + if (!node.contents.hasOwnProperty(key)) { + continue; + } + entries.push(key); + } + return entries; + },symlink:function(parent, newname, oldpath) { + var node = MEMFS.createNode(parent, newname, 511 /* 0777 */ | 40960, 0); node.link = oldpath; return node; - }, - readlink(node) { + },readlink:function(node) { if (!FS.isLink(node.mode)) { throw new FS.ErrnoError(28); } return node.link; - }, - }, - stream_ops:{ - read(stream, buffer, offset, length, position) { + }},stream_ops:{read:function(stream, buffer, offset, length, position) { var contents = stream.node.contents; if (position >= stream.node.usedBytes) return 0; var size = Math.min(stream.node.usedBytes - position, length); @@ -1729,8 +2067,7 @@ async function createWasm() { for (var i = 0; i < size; i++) buffer[offset + i] = contents[position + i]; } return size; - }, - write(stream, buffer, offset, length, position, canOwn) { + },write:function(stream, buffer, offset, length, position, canOwn) { // The data buffer should be a typed array view assert(!(buffer instanceof ArrayBuffer)); // If the buffer is located in main memory (HEAP), and if @@ -1743,7 +2080,7 @@ async function createWasm() { if (!length) return 0; var node = stream.node; - node.mtime = node.ctime = Date.now(); + node.timestamp = Date.now(); if (buffer.subarray && (!node.contents || node.contents.subarray)) { // This write is from a typed array to a typed array? if (canOwn) { @@ -1773,8 +2110,7 @@ async function createWasm() { } node.usedBytes = Math.max(node.usedBytes, position + length); return length; - }, - llseek(stream, offset, whence) { + },llseek:function(stream, offset, whence) { var position = offset; if (whence === 1) { position += stream.position; @@ -1787,8 +2123,10 @@ async function createWasm() { throw new FS.ErrnoError(28); } return position; - }, - mmap(stream, length, position, prot, flags) { + },allocate:function(stream, offset, length) { + MEMFS.expandFileStorage(stream.node, offset + length); + stream.node.usedBytes = Math.max(stream.node.usedBytes, offset + length); + },mmap:function(stream, length, position, prot, flags) { if (!FS.isFile(stream.node.mode)) { throw new FS.ErrnoError(43); } @@ -1796,456 +2134,150 @@ async function createWasm() { var allocated; var contents = stream.node.contents; // Only make a new copy when MAP_PRIVATE is specified. - if (!(flags & 2) && contents && contents.buffer === HEAP8.buffer) { + if (!(flags & 2) && contents.buffer === HEAP8.buffer) { // We can't emulate MAP_SHARED when the file is not backed by the // buffer we're mapping to (e.g. the HEAP buffer). allocated = false; ptr = contents.byteOffset; } else { + // Try to avoid unnecessary slices. + if (position > 0 || position + length < contents.length) { + if (contents.subarray) { + contents = contents.subarray(position, position + length); + } else { + contents = Array.prototype.slice.call(contents, position, position + length); + } + } allocated = true; ptr = mmapAlloc(length); if (!ptr) { throw new FS.ErrnoError(48); } - if (contents) { - // Try to avoid unnecessary slices. - if (position > 0 || position + length < contents.length) { - if (contents.subarray) { - contents = contents.subarray(position, position + length); - } else { - contents = Array.prototype.slice.call(contents, position, position + length); - } - } - HEAP8.set(contents, ptr); - } + HEAP8.set(contents, ptr); } - return { ptr, allocated }; - }, - msync(stream, buffer, offset, length, mmapFlags) { + return { ptr: ptr, allocated: allocated }; + },msync:function(stream, buffer, offset, length, mmapFlags) { MEMFS.stream_ops.write(stream, buffer, 0, length, offset, false); // should we check if bytesWritten and length are the same? return 0; - }, - }, - }; + }}}; + + /** @param {boolean=} noRunDep */ + function asyncLoad(url, onload, onerror, noRunDep) { + var dep = !noRunDep ? getUniqueRunDependency('al ' + url) : ''; + readAsync(url, (arrayBuffer) => { + assert(arrayBuffer, 'Loading data file "' + url + '" failed (no arrayBuffer).'); + onload(new Uint8Array(arrayBuffer)); + if (dep) removeRunDependency(dep); + }, (event) => { + if (onerror) { + onerror(); + } else { + throw 'Loading data file "' + url + '" failed.'; + } + }); + if (dep) addRunDependency(dep); + } - var asyncLoad = async (url) => { - var arrayBuffer = await readAsync(url); - assert(arrayBuffer, `Loading data file "${url}" failed (no arrayBuffer).`); - return new Uint8Array(arrayBuffer); - }; + var ERRNO_MESSAGES = {0:"Success",1:"Arg list too long",2:"Permission denied",3:"Address already in use",4:"Address not available",5:"Address family not supported by protocol family",6:"No more processes",7:"Socket already connected",8:"Bad file number",9:"Trying to read unreadable message",10:"Mount device busy",11:"Operation canceled",12:"No children",13:"Connection aborted",14:"Connection refused",15:"Connection reset by peer",16:"File locking deadlock error",17:"Destination address required",18:"Math arg out of domain of func",19:"Quota exceeded",20:"File exists",21:"Bad address",22:"File too large",23:"Host is unreachable",24:"Identifier removed",25:"Illegal byte sequence",26:"Connection already in progress",27:"Interrupted system call",28:"Invalid argument",29:"I/O error",30:"Socket is already connected",31:"Is a directory",32:"Too many symbolic links",33:"Too many open files",34:"Too many links",35:"Message too long",36:"Multihop attempted",37:"File or path name too long",38:"Network interface is not configured",39:"Connection reset by network",40:"Network is unreachable",41:"Too many open files in system",42:"No buffer space available",43:"No such device",44:"No such file or directory",45:"Exec format error",46:"No record locks available",47:"The link has been severed",48:"Not enough core",49:"No message of desired type",50:"Protocol not available",51:"No space left on device",52:"Function not implemented",53:"Socket is not connected",54:"Not a directory",55:"Directory not empty",56:"State not recoverable",57:"Socket operation on non-socket",59:"Not a typewriter",60:"No such device or address",61:"Value too large for defined data type",62:"Previous owner died",63:"Not super-user",64:"Broken pipe",65:"Protocol error",66:"Unknown protocol",67:"Protocol wrong type for socket",68:"Math result not representable",69:"Read only file system",70:"Illegal seek",71:"No such process",72:"Stale file handle",73:"Connection timed out",74:"Text file busy",75:"Cross-device link",100:"Device not a stream",101:"Bad font file fmt",102:"Invalid slot",103:"Invalid request code",104:"No anode",105:"Block device required",106:"Channel number out of range",107:"Level 3 halted",108:"Level 3 reset",109:"Link number out of range",110:"Protocol driver not attached",111:"No CSI structure available",112:"Level 2 halted",113:"Invalid exchange",114:"Invalid request descriptor",115:"Exchange full",116:"No data (for no delay io)",117:"Timer expired",118:"Out of streams resources",119:"Machine is not on the network",120:"Package not installed",121:"The object is remote",122:"Advertise error",123:"Srmount error",124:"Communication error on send",125:"Cross mount point (not really error)",126:"Given log. name not unique",127:"f.d. invalid for this operation",128:"Remote address changed",129:"Can access a needed shared lib",130:"Accessing a corrupted shared lib",131:".lib section in a.out corrupted",132:"Attempting to link in too many libs",133:"Attempting to exec a shared library",135:"Streams pipe error",136:"Too many users",137:"Socket type not supported",138:"Not supported",139:"Protocol family not supported",140:"Can't send after socket shutdown",141:"Too many references",142:"Host is down",148:"No medium (in tape drive)",156:"Level 2 not synchronized"}; - var FS_createDataFile = (...args) => FS.createDataFile(...args); + var ERRNO_CODES = {}; - var getUniqueRunDependency = (id) => { - var orig = id; - while (1) { - if (!runDependencyTracking[id]) return id; - id = orig + Math.random(); - } - }; + function demangle(func) { + warnOnce('warning: build with -sDEMANGLE_SUPPORT to link in libcxxabi demangling'); + return func; + } + function demangleAll(text) { + var regex = + /\b_Z[\w\d_]+/g; + return text.replace(regex, + function(x) { + var y = demangle(x); + return x === y ? x : (y + ' [' + x + ']'); + }); + } + var FS = {root:null,mounts:[],devices:{},streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,ErrnoError:null,genericErrors:{},filesystems:null,syncFSRequests:0,lookupPath:(path, opts = {}) => { + path = PATH_FS.resolve(path); - var preloadPlugins = []; - var FS_handledByPreloadPlugin = (byteArray, fullname, finish, onerror) => { - // Ensure plugins are ready. - if (typeof Browser != 'undefined') Browser.init(); + if (!path) return { path: '', node: null }; - var handled = false; - preloadPlugins.forEach((plugin) => { - if (handled) return; - if (plugin['canHandle'](fullname)) { - plugin['handle'](byteArray, fullname, finish, onerror); - handled = true; - } - }); - return handled; - }; - var FS_createPreloadedFile = (parent, name, url, canRead, canWrite, onload, onerror, dontCreateFile, canOwn, preFinish) => { - // TODO we should allow people to just pass in a complete filename instead - // of parent and name being that we just join them anyways - var fullname = name ? PATH_FS.resolve(PATH.join2(parent, name)) : parent; - var dep = getUniqueRunDependency(`cp ${fullname}`); // might have several active requests for the same fullname - function processData(byteArray) { - function finish(byteArray) { - preFinish?.(); - if (!dontCreateFile) { - FS_createDataFile(parent, name, byteArray, canRead, canWrite, canOwn); - } - onload?.(); - removeRunDependency(dep); - } - if (FS_handledByPreloadPlugin(byteArray, fullname, finish, () => { - onerror?.(); - removeRunDependency(dep); - })) { - return; + var defaults = { + follow_mount: true, + recurse_count: 0 + }; + opts = Object.assign(defaults, opts) + + if (opts.recurse_count > 8) { // max recursive lookup of 8 + throw new FS.ErrnoError(32); } - finish(byteArray); - } - addRunDependency(dep); - if (typeof url == 'string') { - asyncLoad(url).then(processData, onerror); - } else { - processData(url); - } - }; - var FS_modeStringToFlags = (str) => { - var flagModes = { - 'r': 0, - 'r+': 2, - 'w': 512 | 64 | 1, - 'w+': 512 | 64 | 2, - 'a': 1024 | 64 | 1, - 'a+': 1024 | 64 | 2, - }; - var flags = flagModes[str]; - if (typeof flags == 'undefined') { - throw new Error(`Unknown file open mode: ${str}`); - } - return flags; - }; + // split the absolute path + var parts = path.split('/').filter((p) => !!p); - var FS_getMode = (canRead, canWrite) => { - var mode = 0; - if (canRead) mode |= 292 | 73; - if (canWrite) mode |= 146; - return mode; - }; + // start at the root + var current = FS.root; + var current_path = '/'; + for (var i = 0; i < parts.length; i++) { + var islast = (i === parts.length-1); + if (islast && opts.parent) { + // stop resolving + break; + } + current = FS.lookupNode(current, parts[i]); + current_path = PATH.join2(current_path, parts[i]); + // jump to the mount's root node if this is a mountpoint + if (FS.isMountpoint(current)) { + if (!islast || (islast && opts.follow_mount)) { + current = current.mounted.root; + } + } - var strError = (errno) => UTF8ToString(_strerror(errno)); + // by default, lookupPath will not follow a symlink if it is the final path component. + // setting opts.follow = true will override this behavior. + if (!islast || opts.follow) { + var count = 0; + while (FS.isLink(current.mode)) { + var link = FS.readlink(current_path); + current_path = PATH_FS.resolve(PATH.dirname(current_path), link); - var ERRNO_CODES = { - 'EPERM': 63, - 'ENOENT': 44, - 'ESRCH': 71, - 'EINTR': 27, - 'EIO': 29, - 'ENXIO': 60, - 'E2BIG': 1, - 'ENOEXEC': 45, - 'EBADF': 8, - 'ECHILD': 12, - 'EAGAIN': 6, - 'EWOULDBLOCK': 6, - 'ENOMEM': 48, - 'EACCES': 2, - 'EFAULT': 21, - 'ENOTBLK': 105, - 'EBUSY': 10, - 'EEXIST': 20, - 'EXDEV': 75, - 'ENODEV': 43, - 'ENOTDIR': 54, - 'EISDIR': 31, - 'EINVAL': 28, - 'ENFILE': 41, - 'EMFILE': 33, - 'ENOTTY': 59, - 'ETXTBSY': 74, - 'EFBIG': 22, - 'ENOSPC': 51, - 'ESPIPE': 70, - 'EROFS': 69, - 'EMLINK': 34, - 'EPIPE': 64, - 'EDOM': 18, - 'ERANGE': 68, - 'ENOMSG': 49, - 'EIDRM': 24, - 'ECHRNG': 106, - 'EL2NSYNC': 156, - 'EL3HLT': 107, - 'EL3RST': 108, - 'ELNRNG': 109, - 'EUNATCH': 110, - 'ENOCSI': 111, - 'EL2HLT': 112, - 'EDEADLK': 16, - 'ENOLCK': 46, - 'EBADE': 113, - 'EBADR': 114, - 'EXFULL': 115, - 'ENOANO': 104, - 'EBADRQC': 103, - 'EBADSLT': 102, - 'EDEADLOCK': 16, - 'EBFONT': 101, - 'ENOSTR': 100, - 'ENODATA': 116, - 'ETIME': 117, - 'ENOSR': 118, - 'ENONET': 119, - 'ENOPKG': 120, - 'EREMOTE': 121, - 'ENOLINK': 47, - 'EADV': 122, - 'ESRMNT': 123, - 'ECOMM': 124, - 'EPROTO': 65, - 'EMULTIHOP': 36, - 'EDOTDOT': 125, - 'EBADMSG': 9, - 'ENOTUNIQ': 126, - 'EBADFD': 127, - 'EREMCHG': 128, - 'ELIBACC': 129, - 'ELIBBAD': 130, - 'ELIBSCN': 131, - 'ELIBMAX': 132, - 'ELIBEXEC': 133, - 'ENOSYS': 52, - 'ENOTEMPTY': 55, - 'ENAMETOOLONG': 37, - 'ELOOP': 32, - 'EOPNOTSUPP': 138, - 'EPFNOSUPPORT': 139, - 'ECONNRESET': 15, - 'ENOBUFS': 42, - 'EAFNOSUPPORT': 5, - 'EPROTOTYPE': 67, - 'ENOTSOCK': 57, - 'ENOPROTOOPT': 50, - 'ESHUTDOWN': 140, - 'ECONNREFUSED': 14, - 'EADDRINUSE': 3, - 'ECONNABORTED': 13, - 'ENETUNREACH': 40, - 'ENETDOWN': 38, - 'ETIMEDOUT': 73, - 'EHOSTDOWN': 142, - 'EHOSTUNREACH': 23, - 'EINPROGRESS': 26, - 'EALREADY': 7, - 'EDESTADDRREQ': 17, - 'EMSGSIZE': 35, - 'EPROTONOSUPPORT': 66, - 'ESOCKTNOSUPPORT': 137, - 'EADDRNOTAVAIL': 4, - 'ENETRESET': 39, - 'EISCONN': 30, - 'ENOTCONN': 53, - 'ETOOMANYREFS': 141, - 'EUSERS': 136, - 'EDQUOT': 19, - 'ESTALE': 72, - 'ENOTSUP': 138, - 'ENOMEDIUM': 148, - 'EILSEQ': 25, - 'EOVERFLOW': 61, - 'ECANCELED': 11, - 'ENOTRECOVERABLE': 56, - 'EOWNERDEAD': 62, - 'ESTRPIPE': 135, - }; - var FS = { - root:null, - mounts:[], - devices:{ - }, - streams:[], - nextInode:1, - nameTable:null, - currentPath:"/", - initialized:false, - ignorePermissions:true, - filesystems:null, - syncFSRequests:0, - readFiles:{ - }, - ErrnoError:class extends Error { - name = 'ErrnoError'; - // We set the `name` property to be able to identify `FS.ErrnoError` - // - the `name` is a standard ECMA-262 property of error objects. Kind of good to have it anyway. - // - when using PROXYFS, an error can come from an underlying FS - // as different FS objects have their own FS.ErrnoError each, - // the test `err instanceof FS.ErrnoError` won't detect an error coming from another filesystem, causing bugs. - // we'll use the reliable test `err.name == "ErrnoError"` instead - constructor(errno) { - super(runtimeInitialized ? strError(errno) : ''); - this.errno = errno; - for (var key in ERRNO_CODES) { - if (ERRNO_CODES[key] === errno) { - this.code = key; - break; - } - } - } - }, - FSStream:class { - shared = {}; - get object() { - return this.node; - } - set object(val) { - this.node = val; - } - get isRead() { - return (this.flags & 2097155) !== 1; - } - get isWrite() { - return (this.flags & 2097155) !== 0; - } - get isAppend() { - return (this.flags & 1024); - } - get flags() { - return this.shared.flags; - } - set flags(val) { - this.shared.flags = val; - } - get position() { - return this.shared.position; - } - set position(val) { - this.shared.position = val; - } - }, - FSNode:class { - node_ops = {}; - stream_ops = {}; - readMode = 292 | 73; - writeMode = 146; - mounted = null; - constructor(parent, name, mode, rdev) { - if (!parent) { - parent = this; // root node sets parent to itself - } - this.parent = parent; - this.mount = parent.mount; - this.id = FS.nextInode++; - this.name = name; - this.mode = mode; - this.rdev = rdev; - this.atime = this.mtime = this.ctime = Date.now(); - } - get read() { - return (this.mode & this.readMode) === this.readMode; - } - set read(val) { - val ? this.mode |= this.readMode : this.mode &= ~this.readMode; - } - get write() { - return (this.mode & this.writeMode) === this.writeMode; - } - set write(val) { - val ? this.mode |= this.writeMode : this.mode &= ~this.writeMode; - } - get isFolder() { - return FS.isDir(this.mode); - } - get isDevice() { - return FS.isChrdev(this.mode); - } - }, - lookupPath(path, opts = {}) { - if (!path) { - throw new FS.ErrnoError(44); - } - opts.follow_mount ??= true - - if (!PATH.isAbs(path)) { - path = FS.cwd() + '/' + path; - } - - // limit max consecutive symlinks to 40 (SYMLOOP_MAX). - linkloop: for (var nlinks = 0; nlinks < 40; nlinks++) { - // split the absolute path - var parts = path.split('/').filter((p) => !!p); - - // start at the root - var current = FS.root; - var current_path = '/'; - - for (var i = 0; i < parts.length; i++) { - var islast = (i === parts.length-1); - if (islast && opts.parent) { - // stop resolving - break; - } - - if (parts[i] === '.') { - continue; - } - - if (parts[i] === '..') { - current_path = PATH.dirname(current_path); - if (FS.isRoot(current)) { - path = current_path + '/' + parts.slice(i + 1).join('/'); - continue linkloop; - } else { - current = current.parent; - } - continue; - } - - current_path = PATH.join2(current_path, parts[i]); - try { - current = FS.lookupNode(current, parts[i]); - } catch (e) { - // if noent_okay is true, suppress a ENOENT in the last component - // and return an object with an undefined node. This is needed for - // resolving symlinks in the path when creating a file. - if ((e?.errno === 44) && islast && opts.noent_okay) { - return { path: current_path }; - } - throw e; - } - - // jump to the mount's root node if this is a mountpoint - if (FS.isMountpoint(current) && (!islast || opts.follow_mount)) { - current = current.mounted.root; - } + var lookup = FS.lookupPath(current_path, { recurse_count: opts.recurse_count + 1 }); + current = lookup.node; - // by default, lookupPath will not follow a symlink if it is the final path component. - // setting opts.follow = true will override this behavior. - if (FS.isLink(current.mode) && (!islast || opts.follow)) { - if (!current.node_ops.readlink) { - throw new FS.ErrnoError(52); + if (count++ > 40) { // limit max consecutive symlinks to 40 (SYMLOOP_MAX). + throw new FS.ErrnoError(32); } - var link = current.node_ops.readlink(current); - if (!PATH.isAbs(link)) { - link = PATH.dirname(current_path) + '/' + link; - } - path = link + '/' + parts.slice(i + 1).join('/'); - continue linkloop; } } - return { path: current_path, node: current }; } - throw new FS.ErrnoError(32); - }, - getPath(node) { + + return { path: current_path, node: current }; + },getPath:(node) => { var path; while (true) { if (FS.isRoot(node)) { var mount = node.mount.mountpoint; if (!path) return mount; - return mount[mount.length-1] !== '/' ? `${mount}/${path}` : mount + path; + return mount[mount.length-1] !== '/' ? mount + '/' + path : mount + path; } - path = path ? `${node.name}/${path}` : node.name; + path = path ? node.name + '/' + path : node.name; node = node.parent; } - }, - hashName(parentid, name) { + },hashName:(parentid, name) => { var hash = 0; for (var i = 0; i < name.length; i++) { hash = ((hash << 5) - hash + name.charCodeAt(i)) | 0; } return ((parentid + hash) >>> 0) % FS.nameTable.length; - }, - hashAddNode(node) { + },hashAddNode:(node) => { var hash = FS.hashName(node.parent.id, node.name); node.name_next = FS.nameTable[hash]; FS.nameTable[hash] = node; - }, - hashRemoveNode(node) { + },hashRemoveNode:(node) => { var hash = FS.hashName(node.parent.id, node.name); if (FS.nameTable[hash] === node) { FS.nameTable[hash] = node.name_next; @@ -2259,11 +2291,10 @@ async function createWasm() { current = current.name_next; } } - }, - lookupNode(parent, name) { + },lookupNode:(parent, name) => { var errCode = FS.mayLookup(parent); if (errCode) { - throw new FS.ErrnoError(errCode); + throw new FS.ErrnoError(errCode, parent); } var hash = FS.hashName(parent.id, name); for (var node = FS.nameTable[hash]; node; node = node.name_next) { @@ -2274,53 +2305,46 @@ async function createWasm() { } // if we failed to find it in the cache, call into the VFS return FS.lookup(parent, name); - }, - createNode(parent, name, mode, rdev) { + },createNode:(parent, name, mode, rdev) => { assert(typeof parent == 'object') var node = new FS.FSNode(parent, name, mode, rdev); FS.hashAddNode(node); return node; - }, - destroyNode(node) { + },destroyNode:(node) => { FS.hashRemoveNode(node); - }, - isRoot(node) { + },isRoot:(node) => { return node === node.parent; - }, - isMountpoint(node) { + },isMountpoint:(node) => { return !!node.mounted; - }, - isFile(mode) { + },isFile:(mode) => { return (mode & 61440) === 32768; - }, - isDir(mode) { + },isDir:(mode) => { return (mode & 61440) === 16384; - }, - isLink(mode) { + },isLink:(mode) => { return (mode & 61440) === 40960; - }, - isChrdev(mode) { + },isChrdev:(mode) => { return (mode & 61440) === 8192; - }, - isBlkdev(mode) { + },isBlkdev:(mode) => { return (mode & 61440) === 24576; - }, - isFIFO(mode) { + },isFIFO:(mode) => { return (mode & 61440) === 4096; - }, - isSocket(mode) { + },isSocket:(mode) => { return (mode & 49152) === 49152; - }, - flagsToPermissionString(flag) { + },flagModes:{"r":0,"r+":2,"w":577,"w+":578,"a":1089,"a+":1090},modeStringToFlags:(str) => { + var flags = FS.flagModes[str]; + if (typeof flags == 'undefined') { + throw new Error('Unknown file open mode: ' + str); + } + return flags; + },flagsToPermissionString:(flag) => { var perms = ['r', 'w', 'rw'][flag & 3]; if ((flag & 512)) { perms += 'w'; } return perms; - }, - nodePermissions(node, perms) { + },nodePermissions:(node, perms) => { if (FS.ignorePermissions) { return 0; } @@ -2333,26 +2357,19 @@ async function createWasm() { return 2; } return 0; - }, - mayLookup(dir) { - if (!FS.isDir(dir.mode)) return 54; + },mayLookup:(dir) => { var errCode = FS.nodePermissions(dir, 'x'); if (errCode) return errCode; if (!dir.node_ops.lookup) return 2; return 0; - }, - mayCreate(dir, name) { - if (!FS.isDir(dir.mode)) { - return 54; - } + },mayCreate:(dir, name) => { try { var node = FS.lookupNode(dir, name); return 20; } catch (e) { } return FS.nodePermissions(dir, 'wx'); - }, - mayDelete(dir, name, isdir) { + },mayDelete:(dir, name, isdir) => { var node; try { node = FS.lookupNode(dir, name); @@ -2376,91 +2393,86 @@ async function createWasm() { } } return 0; - }, - mayOpen(node, flags) { + },mayOpen:(node, flags) => { if (!node) { return 44; } if (FS.isLink(node.mode)) { return 32; } else if (FS.isDir(node.mode)) { - if (FS.flagsToPermissionString(flags) !== 'r' // opening for write - || (flags & (512 | 64))) { // TODO: check for O_SEARCH? (== search for dir only) + if (FS.flagsToPermissionString(flags) !== 'r' || // opening for write + (flags & 512)) { // TODO: check for O_SEARCH? (== search for dir only) return 31; } } return FS.nodePermissions(node, FS.flagsToPermissionString(flags)); - }, - checkOpExists(op, err) { - if (!op) { - throw new FS.ErrnoError(err); - } - return op; - }, - MAX_OPEN_FDS:4096, - nextfd() { - for (var fd = 0; fd <= FS.MAX_OPEN_FDS; fd++) { + },MAX_OPEN_FDS:4096,nextfd:(fd_start = 0, fd_end = FS.MAX_OPEN_FDS) => { + for (var fd = fd_start; fd <= fd_end; fd++) { if (!FS.streams[fd]) { return fd; } } throw new FS.ErrnoError(33); - }, - getStreamChecked(fd) { - var stream = FS.getStream(fd); - if (!stream) { - throw new FS.ErrnoError(8); + },getStream:(fd) => FS.streams[fd],createStream:(stream, fd_start, fd_end) => { + if (!FS.FSStream) { + FS.FSStream = /** @constructor */ function() { + this.shared = { }; + }; + FS.FSStream.prototype = {}; + Object.defineProperties(FS.FSStream.prototype, { + object: { + /** @this {FS.FSStream} */ + get: function() { return this.node; }, + /** @this {FS.FSStream} */ + set: function(val) { this.node = val; } + }, + isRead: { + /** @this {FS.FSStream} */ + get: function() { return (this.flags & 2097155) !== 1; } + }, + isWrite: { + /** @this {FS.FSStream} */ + get: function() { return (this.flags & 2097155) !== 0; } + }, + isAppend: { + /** @this {FS.FSStream} */ + get: function() { return (this.flags & 1024); } + }, + flags: { + /** @this {FS.FSStream} */ + get: function() { return this.shared.flags; }, + /** @this {FS.FSStream} */ + set: function(val) { this.shared.flags = val; }, + }, + position : { + /** @this {FS.FSStream} */ + get: function() { return this.shared.position; }, + /** @this {FS.FSStream} */ + set: function(val) { this.shared.position = val; }, + }, + }); } - return stream; - }, - getStream:(fd) => FS.streams[fd], - createStream(stream, fd = -1) { - assert(fd >= -1); - // clone it, so we can return an instance of FSStream stream = Object.assign(new FS.FSStream(), stream); - if (fd == -1) { - fd = FS.nextfd(); - } + var fd = FS.nextfd(fd_start, fd_end); stream.fd = fd; FS.streams[fd] = stream; return stream; - }, - closeStream(fd) { + },closeStream:(fd) => { FS.streams[fd] = null; - }, - dupStream(origStream, fd = -1) { - var stream = FS.createStream(origStream, fd); - stream.stream_ops?.dup?.(stream); - return stream; - }, - doSetAttr(stream, node, attr) { - var setattr = stream?.stream_ops.setattr; - var arg = setattr ? stream : node; - setattr ??= node.node_ops.setattr; - FS.checkOpExists(setattr, 63) - setattr(arg, attr); - }, - chrdev_stream_ops:{ - open(stream) { + },chrdev_stream_ops:{open:(stream) => { var device = FS.getDevice(stream.node.rdev); // override node's stream ops with the device's stream.stream_ops = device.stream_ops; // forward the open call - stream.stream_ops.open?.(stream); - }, - llseek() { + if (stream.stream_ops.open) { + stream.stream_ops.open(stream); + } + },llseek:() => { throw new FS.ErrnoError(70); - }, - }, - major:(dev) => ((dev) >> 8), - minor:(dev) => ((dev) & 0xff), - makedev:(ma, mi) => ((ma) << 8 | (mi)), - registerDevice(dev, ops) { + }},major:(dev) => ((dev) >> 8),minor:(dev) => ((dev) & 0xff),makedev:(ma, mi) => ((ma) << 8 | (mi)),registerDevice:(dev, ops) => { FS.devices[dev] = { stream_ops: ops }; - }, - getDevice:(dev) => FS.devices[dev], - getMounts(mount) { + },getDevice:(dev) => FS.devices[dev],getMounts:(mount) => { var mounts = []; var check = [mount]; @@ -2469,12 +2481,11 @@ async function createWasm() { mounts.push(m); - check.push(...m.mounts); + check.push.apply(check, m.mounts); } return mounts; - }, - syncfs(populate, callback) { + },syncfs:(populate, callback) => { if (typeof populate == 'function') { callback = populate; populate = false; @@ -2483,7 +2494,7 @@ async function createWasm() { FS.syncFSRequests++; if (FS.syncFSRequests > 1) { - err(`warning: ${FS.syncFSRequests} FS.syncfs operations in flight at once, probably just doing extra work`); + err('warning: ' + FS.syncFSRequests + ' FS.syncfs operations in flight at once, probably just doing extra work'); } var mounts = FS.getMounts(FS.root.mount); @@ -2515,8 +2526,7 @@ async function createWasm() { } mount.type.syncfs(mount, populate, done); }); - }, - mount(type, opts, mountpoint) { + },mount:(type, opts, mountpoint) => { if (typeof type == 'string') { // The filesystem was not included, and instead we have an error // message stored in the variable. @@ -2544,9 +2554,9 @@ async function createWasm() { } var mount = { - type, - opts, - mountpoint, + type: type, + opts: opts, + mountpoint: mountpoint, mounts: [] }; @@ -2568,8 +2578,7 @@ async function createWasm() { } return mountRoot; - }, - unmount(mountpoint) { + },unmount:(mountpoint) => { var lookup = FS.lookupPath(mountpoint, { follow_mount: false }); if (!FS.isMountpoint(lookup.node)) { @@ -2602,20 +2611,15 @@ async function createWasm() { var idx = node.mount.mounts.indexOf(mount); assert(idx !== -1); node.mount.mounts.splice(idx, 1); - }, - lookup(parent, name) { + },lookup:(parent, name) => { return parent.node_ops.lookup(parent, name); - }, - mknod(path, mode, dev) { + },mknod:(path, mode, dev) => { var lookup = FS.lookupPath(path, { parent: true }); var parent = lookup.node; var name = PATH.basename(path); - if (!name) { + if (!name || name === '.' || name === '..') { throw new FS.ErrnoError(28); } - if (name === '.' || name === '..') { - throw new FS.ErrnoError(20); - } var errCode = FS.mayCreate(parent, name); if (errCode) { throw new FS.ErrnoError(errCode); @@ -2624,71 +2628,36 @@ async function createWasm() { throw new FS.ErrnoError(63); } return parent.node_ops.mknod(parent, name, mode, dev); - }, - statfs(path) { - return FS.statfsNode(FS.lookupPath(path, {follow: true}).node); - }, - statfsStream(stream) { - // We keep a separate statfsStream function because noderawfs overrides - // it. In noderawfs, stream.node is sometimes null. Instead, we need to - // look at stream.path. - return FS.statfsNode(stream.node); - }, - statfsNode(node) { - // NOTE: None of the defaults here are true. We're just returning safe and - // sane values. Currently nodefs and rawfs replace these defaults, - // other file systems leave them alone. - var rtn = { - bsize: 4096, - frsize: 4096, - blocks: 1e6, - bfree: 5e5, - bavail: 5e5, - files: FS.nextInode, - ffree: FS.nextInode - 1, - fsid: 42, - flags: 2, - namelen: 255, - }; - - if (node.node_ops.statfs) { - Object.assign(rtn, node.node_ops.statfs(node.mount.opts.root)); - } - return rtn; - }, - create(path, mode = 0o666) { + },create:(path, mode) => { + mode = mode !== undefined ? mode : 438 /* 0666 */; mode &= 4095; mode |= 32768; return FS.mknod(path, mode, 0); - }, - mkdir(path, mode = 0o777) { + },mkdir:(path, mode) => { + mode = mode !== undefined ? mode : 511 /* 0777 */; mode &= 511 | 512; mode |= 16384; return FS.mknod(path, mode, 0); - }, - mkdirTree(path, mode) { + },mkdirTree:(path, mode) => { var dirs = path.split('/'); var d = ''; - for (var dir of dirs) { - if (!dir) continue; - if (d || PATH.isAbs(path)) d += '/'; - d += dir; + for (var i = 0; i < dirs.length; ++i) { + if (!dirs[i]) continue; + d += '/' + dirs[i]; try { FS.mkdir(d, mode); } catch(e) { if (e.errno != 20) throw e; } } - }, - mkdev(path, mode, dev) { + },mkdev:(path, mode, dev) => { if (typeof dev == 'undefined') { dev = mode; - mode = 0o666; + mode = 438 /* 0666 */; } mode |= 8192; return FS.mknod(path, mode, dev); - }, - symlink(oldpath, newpath) { + },symlink:(oldpath, newpath) => { if (!PATH_FS.resolve(oldpath)) { throw new FS.ErrnoError(44); } @@ -2706,8 +2675,7 @@ async function createWasm() { throw new FS.ErrnoError(63); } return parent.node_ops.symlink(parent, newname, oldpath); - }, - rename(old_path, new_path) { + },rename:(old_path, new_path) => { var old_dirname = PATH.dirname(old_path); var new_dirname = PATH.dirname(new_path); var old_name = PATH.basename(old_path); @@ -2715,7 +2683,7 @@ async function createWasm() { // parents must exist var lookup, old_dir, new_dir; - // let the errors from non existent directories percolate up + // let the errors from non existant directories percolate up lookup = FS.lookupPath(old_path, { parent: true }); old_dir = lookup.node; lookup = FS.lookupPath(new_path, { parent: true }); @@ -2781,9 +2749,6 @@ async function createWasm() { // do the underlying fs rename try { old_dir.node_ops.rename(old_node, new_dir, new_name); - // update old node (we do this here to avoid each backend - // needing to) - old_node.parent = new_dir; } catch (e) { throw e; } finally { @@ -2791,8 +2756,7 @@ async function createWasm() { // changed its name) FS.hashAddNode(old_node); } - }, - rmdir(path) { + },rmdir:(path) => { var lookup = FS.lookupPath(path, { parent: true }); var parent = lookup.node; var name = PATH.basename(path); @@ -2809,14 +2773,14 @@ async function createWasm() { } parent.node_ops.rmdir(parent, name); FS.destroyNode(node); - }, - readdir(path) { + },readdir:(path) => { var lookup = FS.lookupPath(path, { follow: true }); var node = lookup.node; - var readdir = FS.checkOpExists(node.node_ops.readdir, 54); - return readdir(node); - }, - unlink(path) { + if (!node.node_ops.readdir) { + throw new FS.ErrnoError(54); + } + return node.node_ops.readdir(node); + },unlink:(path) => { var lookup = FS.lookupPath(path, { parent: true }); var parent = lookup.node; if (!parent) { @@ -2839,8 +2803,7 @@ async function createWasm() { } parent.node_ops.unlink(parent, name); FS.destroyNode(node); - }, - readlink(path) { + },readlink:(path) => { var lookup = FS.lookupPath(path); var link = lookup.node; if (!link) { @@ -2849,34 +2812,43 @@ async function createWasm() { if (!link.node_ops.readlink) { throw new FS.ErrnoError(28); } - return link.node_ops.readlink(link); - }, - stat(path, dontFollow) { + return PATH_FS.resolve(FS.getPath(link.parent), link.node_ops.readlink(link)); + },stat:(path, dontFollow) => { var lookup = FS.lookupPath(path, { follow: !dontFollow }); var node = lookup.node; - var getattr = FS.checkOpExists(node.node_ops.getattr, 63); - return getattr(node); - }, - fstat(fd) { - var stream = FS.getStreamChecked(fd); - var node = stream.node; - var getattr = stream.stream_ops.getattr; - var arg = getattr ? stream : node; - getattr ??= node.node_ops.getattr; - FS.checkOpExists(getattr, 63) - return getattr(arg); - }, - lstat(path) { + if (!node) { + throw new FS.ErrnoError(44); + } + if (!node.node_ops.getattr) { + throw new FS.ErrnoError(63); + } + return node.node_ops.getattr(node); + },lstat:(path) => { return FS.stat(path, true); - }, - doChmod(stream, node, mode, dontFollow) { - FS.doSetAttr(stream, node, { + },chmod:(path, mode, dontFollow) => { + var node; + if (typeof path == 'string') { + var lookup = FS.lookupPath(path, { follow: !dontFollow }); + node = lookup.node; + } else { + node = path; + } + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(63); + } + node.node_ops.setattr(node, { mode: (mode & 4095) | (node.mode & ~4095), - ctime: Date.now(), - dontFollow + timestamp: Date.now() }); - }, - chmod(path, mode, dontFollow) { + },lchmod:(path, mode) => { + FS.chmod(path, mode, true); + },fchmod:(fd, mode) => { + var stream = FS.getStream(fd); + if (!stream) { + throw new FS.ErrnoError(8); + } + FS.chmod(stream.node, mode); + },chown:(path, uid, gid, dontFollow) => { var node; if (typeof path == 'string') { var lookup = FS.lookupPath(path, { follow: !dontFollow }); @@ -2884,40 +2856,35 @@ async function createWasm() { } else { node = path; } - FS.doChmod(null, node, mode, dontFollow); - }, - lchmod(path, mode) { - FS.chmod(path, mode, true); - }, - fchmod(fd, mode) { - var stream = FS.getStreamChecked(fd); - FS.doChmod(stream, stream.node, mode, false); - }, - doChown(stream, node, dontFollow) { - FS.doSetAttr(stream, node, { - timestamp: Date.now(), - dontFollow + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(63); + } + node.node_ops.setattr(node, { + timestamp: Date.now() // we ignore the uid / gid for now }); - }, - chown(path, uid, gid, dontFollow) { + },lchown:(path, uid, gid) => { + FS.chown(path, uid, gid, true); + },fchown:(fd, uid, gid) => { + var stream = FS.getStream(fd); + if (!stream) { + throw new FS.ErrnoError(8); + } + FS.chown(stream.node, uid, gid); + },truncate:(path, len) => { + if (len < 0) { + throw new FS.ErrnoError(28); + } var node; if (typeof path == 'string') { - var lookup = FS.lookupPath(path, { follow: !dontFollow }); + var lookup = FS.lookupPath(path, { follow: true }); node = lookup.node; } else { node = path; } - FS.doChown(null, node, dontFollow); - }, - lchown(path, uid, gid) { - FS.chown(path, uid, gid, true); - }, - fchown(fd, uid, gid) { - var stream = FS.getStreamChecked(fd); - FS.doChown(stream, stream.node, false); - }, - doTruncate(stream, node, len) { + if (!node.node_ops.setattr) { + throw new FS.ErrnoError(63); + } if (FS.isDir(node.mode)) { throw new FS.ErrnoError(31); } @@ -2928,65 +2895,49 @@ async function createWasm() { if (errCode) { throw new FS.ErrnoError(errCode); } - FS.doSetAttr(stream, node, { + node.node_ops.setattr(node, { size: len, timestamp: Date.now() }); - }, - truncate(path, len) { - if (len < 0) { - throw new FS.ErrnoError(28); - } - var node; - if (typeof path == 'string') { - var lookup = FS.lookupPath(path, { follow: true }); - node = lookup.node; - } else { - node = path; + },ftruncate:(fd, len) => { + var stream = FS.getStream(fd); + if (!stream) { + throw new FS.ErrnoError(8); } - FS.doTruncate(null, node, len); - }, - ftruncate(fd, len) { - var stream = FS.getStreamChecked(fd); - if (len < 0 || (stream.flags & 2097155) === 0) { + if ((stream.flags & 2097155) === 0) { throw new FS.ErrnoError(28); } - FS.doTruncate(stream, stream.node, len); - }, - utime(path, atime, mtime) { + FS.truncate(stream.node, len); + },utime:(path, atime, mtime) => { var lookup = FS.lookupPath(path, { follow: true }); var node = lookup.node; - var setattr = FS.checkOpExists(node.node_ops.setattr, 63); - setattr(node, { - atime: atime, - mtime: mtime + node.node_ops.setattr(node, { + timestamp: Math.max(atime, mtime) }); - }, - open(path, flags, mode = 0o666) { + },open:(path, flags, mode) => { if (path === "") { throw new FS.ErrnoError(44); } - flags = typeof flags == 'string' ? FS_modeStringToFlags(flags) : flags; + flags = typeof flags == 'string' ? FS.modeStringToFlags(flags) : flags; + mode = typeof mode == 'undefined' ? 438 /* 0666 */ : mode; if ((flags & 64)) { mode = (mode & 4095) | 32768; } else { mode = 0; } var node; - var isDirPath; if (typeof path == 'object') { node = path; } else { - isDirPath = path.endsWith("/"); - // noent_okay makes it so that if the final component of the path - // doesn't exist, lookupPath returns `node: undefined`. `path` will be - // updated to point to the target of all symlinks. - var lookup = FS.lookupPath(path, { - follow: !(flags & 131072), - noent_okay: true - }); - node = lookup.node; - path = lookup.path; + path = PATH.normalize(path); + try { + var lookup = FS.lookupPath(path, { + follow: !(flags & 131072) + }); + node = lookup.node; + } catch (e) { + // ignore + } } // perhaps we need to create the node var created = false; @@ -2996,14 +2947,9 @@ async function createWasm() { if ((flags & 128)) { throw new FS.ErrnoError(20); } - } else if (isDirPath) { - throw new FS.ErrnoError(31); } else { // node doesn't exist, try to create it - // Ignore the permission bits here to ensure we can `open` this new - // file below. We use chmod below the apply the permissions once the - // file is open. - node = FS.mknod(path, mode | 0o777, 0); + node = FS.mknod(path, mode, 0); created = true; } } @@ -3036,9 +2982,9 @@ async function createWasm() { // register the stream with the filesystem var stream = FS.createStream({ - node, + node: node, path: FS.getPath(node), // we want the absolute path to the node - flags, + flags: flags, seekable: true, position: 0, stream_ops: node.stream_ops, @@ -3050,17 +2996,14 @@ async function createWasm() { if (stream.stream_ops.open) { stream.stream_ops.open(stream); } - if (created) { - FS.chmod(node, mode & 0o777); - } if (Module['logReadFiles'] && !(flags & 1)) { + if (!FS.readFiles) FS.readFiles = {}; if (!(path in FS.readFiles)) { FS.readFiles[path] = 1; } } return stream; - }, - close(stream) { + },close:(stream) => { if (FS.isClosed(stream)) { throw new FS.ErrnoError(8); } @@ -3075,11 +3018,9 @@ async function createWasm() { FS.closeStream(stream.fd); } stream.fd = null; - }, - isClosed(stream) { + },isClosed:(stream) => { return stream.fd === null; - }, - llseek(stream, offset, whence) { + },llseek:(stream, offset, whence) => { if (FS.isClosed(stream)) { throw new FS.ErrnoError(8); } @@ -3092,9 +3033,7 @@ async function createWasm() { stream.position = stream.stream_ops.llseek(stream, offset, whence); stream.ungotten = []; return stream.position; - }, - read(stream, buffer, offset, length, position) { - assert(offset >= 0); + },read:(stream, buffer, offset, length, position) => { if (length < 0 || position < 0) { throw new FS.ErrnoError(28); } @@ -3119,9 +3058,7 @@ async function createWasm() { var bytesRead = stream.stream_ops.read(stream, buffer, offset, length, position); if (!seeking) stream.position += bytesRead; return bytesRead; - }, - write(stream, buffer, offset, length, position, canOwn) { - assert(offset >= 0); + },write:(stream, buffer, offset, length, position, canOwn) => { if (length < 0 || position < 0) { throw new FS.ErrnoError(28); } @@ -3150,16 +3087,32 @@ async function createWasm() { var bytesWritten = stream.stream_ops.write(stream, buffer, offset, length, position, canOwn); if (!seeking) stream.position += bytesWritten; return bytesWritten; - }, - mmap(stream, length, position, prot, flags) { - // User requests writing to file (prot & PROT_WRITE != 0). - // Checking if we have permissions to write to the file unless - // MAP_PRIVATE flag is set. According to POSIX spec it is possible - // to write to file opened in read-only mode with MAP_PRIVATE flag, - // as all modifications will be visible only in the memory of - // the current process. - if ((prot & 2) !== 0 - && (flags & 2) === 0 + },allocate:(stream, offset, length) => { + if (FS.isClosed(stream)) { + throw new FS.ErrnoError(8); + } + if (offset < 0 || length <= 0) { + throw new FS.ErrnoError(28); + } + if ((stream.flags & 2097155) === 0) { + throw new FS.ErrnoError(8); + } + if (!FS.isFile(stream.node.mode) && !FS.isDir(stream.node.mode)) { + throw new FS.ErrnoError(43); + } + if (!stream.stream_ops.allocate) { + throw new FS.ErrnoError(138); + } + stream.stream_ops.allocate(stream, offset, length); + },mmap:(stream, length, position, prot, flags) => { + // User requests writing to file (prot & PROT_WRITE != 0). + // Checking if we have permissions to write to the file unless + // MAP_PRIVATE flag is set. According to POSIX spec it is possible + // to write to file opened in read-only mode with MAP_PRIVATE flag, + // as all modifications will be visible only in the memory of + // the current process. + if ((prot & 2) !== 0 + && (flags & 2) === 0 && (stream.flags & 2097155) !== 2) { throw new FS.ErrnoError(2); } @@ -3169,56 +3122,50 @@ async function createWasm() { if (!stream.stream_ops.mmap) { throw new FS.ErrnoError(43); } - if (!length) { - throw new FS.ErrnoError(28); - } return stream.stream_ops.mmap(stream, length, position, prot, flags); - }, - msync(stream, buffer, offset, length, mmapFlags) { - assert(offset >= 0); + },msync:(stream, buffer, offset, length, mmapFlags) => { if (!stream.stream_ops.msync) { return 0; } return stream.stream_ops.msync(stream, buffer, offset, length, mmapFlags); - }, - ioctl(stream, cmd, arg) { + },munmap:(stream) => 0,ioctl:(stream, cmd, arg) => { if (!stream.stream_ops.ioctl) { throw new FS.ErrnoError(59); } return stream.stream_ops.ioctl(stream, cmd, arg); - }, - readFile(path, opts = {}) { + },readFile:(path, opts = {}) => { opts.flags = opts.flags || 0; opts.encoding = opts.encoding || 'binary'; if (opts.encoding !== 'utf8' && opts.encoding !== 'binary') { - throw new Error(`Invalid encoding type "${opts.encoding}"`); + throw new Error('Invalid encoding type "' + opts.encoding + '"'); } + var ret; var stream = FS.open(path, opts.flags); var stat = FS.stat(path); var length = stat.size; var buf = new Uint8Array(length); FS.read(stream, buf, 0, length, 0); if (opts.encoding === 'utf8') { - buf = UTF8ArrayToString(buf); + ret = UTF8ArrayToString(buf, 0); + } else if (opts.encoding === 'binary') { + ret = buf; } FS.close(stream); - return buf; - }, - writeFile(path, data, opts = {}) { + return ret; + },writeFile:(path, data, opts = {}) => { opts.flags = opts.flags || 577; var stream = FS.open(path, opts.flags, opts.mode); if (typeof data == 'string') { - data = new Uint8Array(intArrayFromString(data, true)); - } - if (ArrayBuffer.isView(data)) { + var buf = new Uint8Array(lengthBytesUTF8(data)+1); + var actualNumBytes = stringToUTF8Array(data, buf, 0, buf.length); + FS.write(stream, buf, 0, actualNumBytes, undefined, opts.canOwn); + } else if (ArrayBuffer.isView(data)) { FS.write(stream, data, 0, data.byteLength, undefined, opts.canOwn); } else { throw new Error('Unsupported data type'); } FS.close(stream); - }, - cwd:() => FS.currentPath, - chdir(path) { + },cwd:() => FS.currentPath,chdir:(path) => { var lookup = FS.lookupPath(path, { follow: true }); if (lookup.node === null) { throw new FS.ErrnoError(44); @@ -3231,20 +3178,17 @@ async function createWasm() { throw new FS.ErrnoError(errCode); } FS.currentPath = lookup.path; - }, - createDefaultDirectories() { + },createDefaultDirectories:() => { FS.mkdir('/tmp'); FS.mkdir('/home'); FS.mkdir('/home/web_user'); - }, - createDefaultDevices() { + },createDefaultDevices:() => { // create /dev FS.mkdir('/dev'); // setup /dev/null FS.registerDevice(FS.makedev(1, 3), { read: () => 0, write: (stream, buffer, offset, length, pos) => length, - llseek: () => 0, }); FS.mkdev('/dev/null', FS.makedev(1, 3)); // setup /dev/tty and /dev/tty1 @@ -3255,58 +3199,40 @@ async function createWasm() { FS.mkdev('/dev/tty', FS.makedev(5, 0)); FS.mkdev('/dev/tty1', FS.makedev(6, 0)); // setup /dev/[u]random - // use a buffer to avoid overhead of individual crypto calls per byte - var randomBuffer = new Uint8Array(1024), randomLeft = 0; - var randomByte = () => { - if (randomLeft === 0) { - randomFill(randomBuffer); - randomLeft = randomBuffer.byteLength; - } - return randomBuffer[--randomLeft]; - }; - FS.createDevice('/dev', 'random', randomByte); - FS.createDevice('/dev', 'urandom', randomByte); + var random_device = getRandomDevice(); + FS.createDevice('/dev', 'random', random_device); + FS.createDevice('/dev', 'urandom', random_device); // we're not going to emulate the actual shm device, // just create the tmp dirs that reside in it commonly FS.mkdir('/dev/shm'); FS.mkdir('/dev/shm/tmp'); - }, - createSpecialDirectories() { + },createSpecialDirectories:() => { // create /proc/self/fd which allows /proc/self/fd/6 => readlink gives the // name of the stream for fd 6 (see test_unistd_ttyname) FS.mkdir('/proc'); var proc_self = FS.mkdir('/proc/self'); FS.mkdir('/proc/self/fd'); FS.mount({ - mount() { - var node = FS.createNode(proc_self, 'fd', 16895, 73); - node.stream_ops = { - llseek: MEMFS.stream_ops.llseek, - }; + mount: () => { + var node = FS.createNode(proc_self, 'fd', 16384 | 511 /* 0777 */, 73); node.node_ops = { - lookup(parent, name) { + lookup: (parent, name) => { var fd = +name; - var stream = FS.getStreamChecked(fd); + var stream = FS.getStream(fd); + if (!stream) throw new FS.ErrnoError(8); var ret = { parent: null, mount: { mountpoint: 'fake' }, node_ops: { readlink: () => stream.path }, - id: fd + 1, }; ret.parent = ret; // make it look like a simple root node return ret; - }, - readdir() { - return Array.from(FS.streams.entries()) - .filter(([k, v]) => v) - .map(([k, v]) => k.toString()); } }; return node; } }, {}, '/proc/self/fd'); - }, - createStandardStreams(input, output, error) { + },createStandardStreams:() => { // TODO deprecate the old functionality of a single // input / output callback and that utilizes FS.createDevice // and instead require a unique set of stream ops @@ -3315,18 +3241,18 @@ async function createWasm() { // default tty devices. however, if the standard streams // have been overwritten we create a unique device for // them instead. - if (input) { - FS.createDevice('/dev', 'stdin', input); + if (Module['stdin']) { + FS.createDevice('/dev', 'stdin', Module['stdin']); } else { FS.symlink('/dev/tty', '/dev/stdin'); } - if (output) { - FS.createDevice('/dev', 'stdout', null, output); + if (Module['stdout']) { + FS.createDevice('/dev', 'stdout', null, Module['stdout']); } else { FS.symlink('/dev/tty', '/dev/stdout'); } - if (error) { - FS.createDevice('/dev', 'stderr', null, error); + if (Module['stderr']) { + FS.createDevice('/dev', 'stderr', null, Module['stderr']); } else { FS.symlink('/dev/tty1', '/dev/stderr'); } @@ -3335,11 +3261,50 @@ async function createWasm() { var stdin = FS.open('/dev/stdin', 0); var stdout = FS.open('/dev/stdout', 1); var stderr = FS.open('/dev/stderr', 1); - assert(stdin.fd === 0, `invalid handle for stdin (${stdin.fd})`); - assert(stdout.fd === 1, `invalid handle for stdout (${stdout.fd})`); - assert(stderr.fd === 2, `invalid handle for stderr (${stderr.fd})`); - }, - staticInit() { + assert(stdin.fd === 0, 'invalid handle for stdin (' + stdin.fd + ')'); + assert(stdout.fd === 1, 'invalid handle for stdout (' + stdout.fd + ')'); + assert(stderr.fd === 2, 'invalid handle for stderr (' + stderr.fd + ')'); + },ensureErrnoError:() => { + if (FS.ErrnoError) return; + FS.ErrnoError = /** @this{Object} */ function ErrnoError(errno, node) { + // We set the `name` property to be able to identify `FS.ErrnoError` + // - the `name` is a standard ECMA-262 property of error objects. Kind of good to have it anyway. + // - when using PROXYFS, an error can come from an underlying FS + // as different FS objects have their own FS.ErrnoError each, + // the test `err instanceof FS.ErrnoError` won't detect an error coming from another filesystem, causing bugs. + // we'll use the reliable test `err.name == "ErrnoError"` instead + this.name = 'ErrnoError'; + this.node = node; + this.setErrno = /** @this{Object} */ function(errno) { + this.errno = errno; + for (var key in ERRNO_CODES) { + if (ERRNO_CODES[key] === errno) { + this.code = key; + break; + } + } + }; + this.setErrno(errno); + this.message = ERRNO_MESSAGES[errno]; + + // Try to get a maximally helpful stack trace. On Node.js, getting Error.stack + // now ensures it shows what we want. + if (this.stack) { + // Define the stack property for Node.js 4, which otherwise errors on the next line. + Object.defineProperty(this, "stack", { value: (new Error).stack, writable: true }); + this.stack = demangleAll(this.stack); + } + }; + FS.ErrnoError.prototype = new Error(); + FS.ErrnoError.prototype.constructor = FS.ErrnoError; + // Some errors may happen quite a bit, to avoid overhead we reuse them (and suffer a lack of stack info) + [44].forEach((code) => { + FS.genericErrors[code] = new FS.ErrnoError(code); + FS.genericErrors[code].stack = ''; + }); + },staticInit:() => { + FS.ensureErrnoError(); + FS.nameTable = new Array(4096); FS.mount(MEMFS, {}, '/'); @@ -3351,37 +3316,42 @@ async function createWasm() { FS.filesystems = { 'MEMFS': MEMFS, }; - }, - init(input, output, error) { - assert(!FS.initialized, 'FS.init was previously called. If you want to initialize later with custom parameters, remove any earlier calls (note that one is automatically added to the generated code)'); - FS.initialized = true; + },init:(input, output, error) => { + assert(!FS.init.initialized, 'FS.init was previously called. If you want to initialize later with custom parameters, remove any earlier calls (note that one is automatically added to the generated code)'); + FS.init.initialized = true; + + FS.ensureErrnoError(); // Allow Module.stdin etc. to provide defaults, if none explicitly passed to us here - input ??= Module['stdin']; - output ??= Module['stdout']; - error ??= Module['stderr']; - - FS.createStandardStreams(input, output, error); - }, - quit() { - FS.initialized = false; + Module['stdin'] = input || Module['stdin']; + Module['stdout'] = output || Module['stdout']; + Module['stderr'] = error || Module['stderr']; + + FS.createStandardStreams(); + },quit:() => { + FS.init.initialized = false; // force-flush all streams, so we get musl std streams printed out _fflush(0); // close all of our streams - for (var stream of FS.streams) { - if (stream) { - FS.close(stream); + for (var i = 0; i < FS.streams.length; i++) { + var stream = FS.streams[i]; + if (!stream) { + continue; } + FS.close(stream); } - }, - findObject(path, dontResolveLastLink) { + },getMode:(canRead, canWrite) => { + var mode = 0; + if (canRead) mode |= 292 | 73; + if (canWrite) mode |= 146; + return mode; + },findObject:(path, dontResolveLastLink) => { var ret = FS.analyzePath(path, dontResolveLastLink); if (!ret.exists) { return null; } return ret.object; - }, - analyzePath(path, dontResolveLastLink) { + },analyzePath:(path, dontResolveLastLink) => { // operate from within the context of the symlink's target try { var lookup = FS.lookupPath(path, { follow: !dontResolveLastLink }); @@ -3408,8 +3378,7 @@ async function createWasm() { ret.error = e.errno; }; return ret; - }, - createPath(parent, path, canRead, canWrite) { + },createPath:(parent, path, canRead, canWrite) => { parent = typeof parent == 'string' ? parent : FS.getPath(parent); var parts = path.split('/').reverse(); while (parts.length) { @@ -3419,24 +3388,22 @@ async function createWasm() { try { FS.mkdir(current); } catch (e) { - if (e.errno != 20) throw e; + // ignore EEXIST } parent = current; } return current; - }, - createFile(parent, name, properties, canRead, canWrite) { + },createFile:(parent, name, properties, canRead, canWrite) => { var path = PATH.join2(typeof parent == 'string' ? parent : FS.getPath(parent), name); - var mode = FS_getMode(canRead, canWrite); + var mode = FS.getMode(canRead, canWrite); return FS.create(path, mode); - }, - createDataFile(parent, name, data, canRead, canWrite, canOwn) { + },createDataFile:(parent, name, data, canRead, canWrite, canOwn) => { var path = name; if (parent) { parent = typeof parent == 'string' ? parent : FS.getPath(parent); path = name ? PATH.join2(parent, name) : parent; } - var mode = FS_getMode(canRead, canWrite); + var mode = FS.getMode(canRead, canWrite); var node = FS.create(path, mode); if (data) { if (typeof data == 'string') { @@ -3451,25 +3418,25 @@ async function createWasm() { FS.close(stream); FS.chmod(node, mode); } - }, - createDevice(parent, name, input, output) { + return node; + },createDevice:(parent, name, input, output) => { var path = PATH.join2(typeof parent == 'string' ? parent : FS.getPath(parent), name); - var mode = FS_getMode(!!input, !!output); - FS.createDevice.major ??= 64; + var mode = FS.getMode(!!input, !!output); + if (!FS.createDevice.major) FS.createDevice.major = 64; var dev = FS.makedev(FS.createDevice.major++, 0); // Create a fake device that a set of stream ops to emulate // the old behavior. FS.registerDevice(dev, { - open(stream) { + open: (stream) => { stream.seekable = false; }, - close(stream) { + close: (stream) => { // flush any pending line data - if (output?.buffer?.length) { + if (output && output.buffer && output.buffer.length) { output(10); } }, - read(stream, buffer, offset, length, pos /* ignored */) { + read: (stream, buffer, offset, length, pos /* ignored */) => { var bytesRead = 0; for (var i = 0; i < length; i++) { var result; @@ -3486,11 +3453,11 @@ async function createWasm() { buffer[offset+i] = result; } if (bytesRead) { - stream.node.atime = Date.now(); + stream.node.timestamp = Date.now(); } return bytesRead; }, - write(stream, buffer, offset, length, pos) { + write: (stream, buffer, offset, length, pos) => { for (var i = 0; i < length; i++) { try { output(buffer[offset+i]); @@ -3499,122 +3466,131 @@ async function createWasm() { } } if (length) { - stream.node.mtime = stream.node.ctime = Date.now(); + stream.node.timestamp = Date.now(); } return i; } }); return FS.mkdev(path, mode, dev); - }, - forceLoadFile(obj) { + },forceLoadFile:(obj) => { if (obj.isDevice || obj.isFolder || obj.link || obj.contents) return true; if (typeof XMLHttpRequest != 'undefined') { throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread."); - } else { // Command-line. + } else if (read_) { + // Command-line. try { - obj.contents = readBinary(obj.url); + // WARNING: Can't read binary files in V8's d8 or tracemonkey's js, as + // read() will try to parse UTF8. + obj.contents = intArrayFromString(read_(obj.url), true); obj.usedBytes = obj.contents.length; } catch (e) { throw new FS.ErrnoError(29); } - } - }, - createLazyFile(parent, name, url, canRead, canWrite) { - // Lazy chunked Uint8Array (implements get and length from Uint8Array). - // Actual getting is abstracted away for eventual reuse. - class LazyUint8Array { - lengthKnown = false; - chunks = []; // Loaded chunks. Index is the chunk number - get(idx) { - if (idx > this.length-1 || idx < 0) { - return undefined; - } - var chunkOffset = idx % this.chunkSize; - var chunkNum = (idx / this.chunkSize)|0; - return this.getter(chunkNum)[chunkOffset]; - } - setDataGetter(getter) { - this.getter = getter; + } else { + throw new Error('Cannot load without read() or XMLHttpRequest.'); + } + },createLazyFile:(parent, name, url, canRead, canWrite) => { + // Lazy chunked Uint8Array (implements get and length from Uint8Array). Actual getting is abstracted away for eventual reuse. + /** @constructor */ + function LazyUint8Array() { + this.lengthKnown = false; + this.chunks = []; // Loaded chunks. Index is the chunk number + } + LazyUint8Array.prototype.get = /** @this{Object} */ function LazyUint8Array_get(idx) { + if (idx > this.length-1 || idx < 0) { + return undefined; } - cacheLength() { - // Find length + var chunkOffset = idx % this.chunkSize; + var chunkNum = (idx / this.chunkSize)|0; + return this.getter(chunkNum)[chunkOffset]; + }; + LazyUint8Array.prototype.setDataGetter = function LazyUint8Array_setDataGetter(getter) { + this.getter = getter; + }; + LazyUint8Array.prototype.cacheLength = function LazyUint8Array_cacheLength() { + // Find length + var xhr = new XMLHttpRequest(); + xhr.open('HEAD', url, false); + xhr.send(null); + if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); + var datalength = Number(xhr.getResponseHeader("Content-length")); + var header; + var hasByteServing = (header = xhr.getResponseHeader("Accept-Ranges")) && header === "bytes"; + var usesGzip = (header = xhr.getResponseHeader("Content-Encoding")) && header === "gzip"; + + var chunkSize = 1024*1024; // Chunk size in bytes + + if (!hasByteServing) chunkSize = datalength; + + // Function to get a range from the remote URL. + var doXHR = (from, to) => { + if (from > to) throw new Error("invalid range (" + from + ", " + to + ") or no bytes requested!"); + if (to > datalength-1) throw new Error("only " + datalength + " bytes available! programmer error!"); + + // TODO: Use mozResponseArrayBuffer, responseStream, etc. if available. var xhr = new XMLHttpRequest(); - xhr.open('HEAD', url, false); - xhr.send(null); - if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); - var datalength = Number(xhr.getResponseHeader("Content-length")); - var header; - var hasByteServing = (header = xhr.getResponseHeader("Accept-Ranges")) && header === "bytes"; - var usesGzip = (header = xhr.getResponseHeader("Content-Encoding")) && header === "gzip"; - - var chunkSize = 1024*1024; // Chunk size in bytes - - if (!hasByteServing) chunkSize = datalength; - - // Function to get a range from the remote URL. - var doXHR = (from, to) => { - if (from > to) throw new Error("invalid range (" + from + ", " + to + ") or no bytes requested!"); - if (to > datalength-1) throw new Error("only " + datalength + " bytes available! programmer error!"); - - // TODO: Use mozResponseArrayBuffer, responseStream, etc. if available. - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, false); - if (datalength !== chunkSize) xhr.setRequestHeader("Range", "bytes=" + from + "-" + to); - - // Some hints to the browser that we want binary data. - xhr.responseType = 'arraybuffer'; - if (xhr.overrideMimeType) { - xhr.overrideMimeType('text/plain; charset=x-user-defined'); - } + xhr.open('GET', url, false); + if (datalength !== chunkSize) xhr.setRequestHeader("Range", "bytes=" + from + "-" + to); - xhr.send(null); - if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); - if (xhr.response !== undefined) { - return new Uint8Array(/** @type{Array} */(xhr.response || [])); - } - return intArrayFromString(xhr.responseText || '', true); - }; - var lazyArray = this; - lazyArray.setDataGetter((chunkNum) => { - var start = chunkNum * chunkSize; - var end = (chunkNum+1) * chunkSize - 1; // including this byte - end = Math.min(end, datalength-1); // if datalength-1 is selected, this is the last block - if (typeof lazyArray.chunks[chunkNum] == 'undefined') { - lazyArray.chunks[chunkNum] = doXHR(start, end); - } - if (typeof lazyArray.chunks[chunkNum] == 'undefined') throw new Error('doXHR failed!'); - return lazyArray.chunks[chunkNum]; - }); - - if (usesGzip || !datalength) { - // if the server uses gzip or doesn't supply the length, we have to download the whole file to get the (uncompressed) length - chunkSize = datalength = 1; // this will force getter(0)/doXHR do download the whole file - datalength = this.getter(0).length; - chunkSize = datalength; - out("LazyFiles on gzip forces download of the whole file when length is accessed"); + // Some hints to the browser that we want binary data. + xhr.responseType = 'arraybuffer'; + if (xhr.overrideMimeType) { + xhr.overrideMimeType('text/plain; charset=x-user-defined'); } - this._length = datalength; - this._chunkSize = chunkSize; - this.lengthKnown = true; - } - get length() { - if (!this.lengthKnown) { - this.cacheLength(); + xhr.send(null); + if (!(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304)) throw new Error("Couldn't load " + url + ". Status: " + xhr.status); + if (xhr.response !== undefined) { + return new Uint8Array(/** @type{Array} */(xhr.response || [])); } - return this._length; - } - get chunkSize() { - if (!this.lengthKnown) { - this.cacheLength(); + return intArrayFromString(xhr.responseText || '', true); + }; + var lazyArray = this; + lazyArray.setDataGetter((chunkNum) => { + var start = chunkNum * chunkSize; + var end = (chunkNum+1) * chunkSize - 1; // including this byte + end = Math.min(end, datalength-1); // if datalength-1 is selected, this is the last block + if (typeof lazyArray.chunks[chunkNum] == 'undefined') { + lazyArray.chunks[chunkNum] = doXHR(start, end); } - return this._chunkSize; + if (typeof lazyArray.chunks[chunkNum] == 'undefined') throw new Error('doXHR failed!'); + return lazyArray.chunks[chunkNum]; + }); + + if (usesGzip || !datalength) { + // if the server uses gzip or doesn't supply the length, we have to download the whole file to get the (uncompressed) length + chunkSize = datalength = 1; // this will force getter(0)/doXHR do download the whole file + datalength = this.getter(0).length; + chunkSize = datalength; + out("LazyFiles on gzip forces download of the whole file when length is accessed"); } - } + this._length = datalength; + this._chunkSize = chunkSize; + this.lengthKnown = true; + }; if (typeof XMLHttpRequest != 'undefined') { if (!ENVIRONMENT_IS_WORKER) throw 'Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc'; var lazyArray = new LazyUint8Array(); + Object.defineProperties(lazyArray, { + length: { + get: /** @this{Object} */ function() { + if (!this.lengthKnown) { + this.cacheLength(); + } + return this._length; + } + }, + chunkSize: { + get: /** @this{Object} */ function() { + if (!this.lengthKnown) { + this.cacheLength(); + } + return this._chunkSize; + } + } + }); + var properties = { isDevice: false, contents: lazyArray }; } else { var properties = { isDevice: false, url: url }; @@ -3633,7 +3609,7 @@ async function createWasm() { // Add a function that defers querying the file size until it is asked the first time. Object.defineProperties(node, { usedBytes: { - get: function() { return this.contents.length; } + get: /** @this {FSNode} */ function() { return this.contents.length; } } }); // override each stream op with one that tries to force load the lazy file first @@ -3641,9 +3617,9 @@ async function createWasm() { var keys = Object.keys(node.stream_ops); keys.forEach((key) => { var fn = node.stream_ops[key]; - stream_ops[key] = (...args) => { + stream_ops[key] = function forceLoadLazyFile() { FS.forceLoadFile(node); - return fn(...args); + return fn.apply(null, arguments); }; }); function writeChunks(stream, buffer, offset, length, position) { @@ -3676,34 +3652,120 @@ async function createWasm() { throw new FS.ErrnoError(48); } writeChunks(stream, HEAP8, ptr, length, position); - return { ptr, allocated: true }; + return { ptr: ptr, allocated: true }; }; node.stream_ops = stream_ops; return node; - }, - absolutePath() { + },createPreloadedFile:(parent, name, url, canRead, canWrite, onload, onerror, dontCreateFile, canOwn, preFinish) => { + // TODO we should allow people to just pass in a complete filename instead + // of parent and name being that we just join them anyways + var fullname = name ? PATH_FS.resolve(PATH.join2(parent, name)) : parent; + var dep = getUniqueRunDependency('cp ' + fullname); // might have several active requests for the same fullname + function processData(byteArray) { + function finish(byteArray) { + if (preFinish) preFinish(); + if (!dontCreateFile) { + FS.createDataFile(parent, name, byteArray, canRead, canWrite, canOwn); + } + if (onload) onload(); + removeRunDependency(dep); + } + if (Browser.handledByPreloadPlugin(byteArray, fullname, finish, () => { + if (onerror) onerror(); + removeRunDependency(dep); + })) { + return; + } + finish(byteArray); + } + addRunDependency(dep); + if (typeof url == 'string') { + asyncLoad(url, (byteArray) => processData(byteArray), onerror); + } else { + processData(url); + } + },indexedDB:() => { + return window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; + },DB_NAME:() => { + return 'EM_FS_' + window.location.pathname; + },DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:(paths, onload = (() => {}), onerror = (() => {})) => { + var indexedDB = FS.indexedDB(); + try { + var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); + } catch (e) { + return onerror(e); + } + openRequest.onupgradeneeded = () => { + out('creating db'); + var db = openRequest.result; + db.createObjectStore(FS.DB_STORE_NAME); + }; + openRequest.onsuccess = () => { + var db = openRequest.result; + var transaction = db.transaction([FS.DB_STORE_NAME], 'readwrite'); + var files = transaction.objectStore(FS.DB_STORE_NAME); + var ok = 0, fail = 0, total = paths.length; + function finish() { + if (fail == 0) onload(); else onerror(); + } + paths.forEach((path) => { + var putRequest = files.put(FS.analyzePath(path).object.contents, path); + putRequest.onsuccess = () => { ok++; if (ok + fail == total) finish() }; + putRequest.onerror = () => { fail++; if (ok + fail == total) finish() }; + }); + transaction.onerror = onerror; + }; + openRequest.onerror = onerror; + },loadFilesFromDB:(paths, onload = (() => {}), onerror = (() => {})) => { + var indexedDB = FS.indexedDB(); + try { + var openRequest = indexedDB.open(FS.DB_NAME(), FS.DB_VERSION); + } catch (e) { + return onerror(e); + } + openRequest.onupgradeneeded = onerror; // no database to load from + openRequest.onsuccess = () => { + var db = openRequest.result; + try { + var transaction = db.transaction([FS.DB_STORE_NAME], 'readonly'); + } catch(e) { + onerror(e); + return; + } + var files = transaction.objectStore(FS.DB_STORE_NAME); + var ok = 0, fail = 0, total = paths.length; + function finish() { + if (fail == 0) onload(); else onerror(); + } + paths.forEach((path) => { + var getRequest = files.get(path); + getRequest.onsuccess = () => { + if (FS.analyzePath(path).exists) { + FS.unlink(path); + } + FS.createDataFile(PATH.dirname(path), PATH.basename(path), getRequest.result, true, true, true); + ok++; + if (ok + fail == total) finish(); + }; + getRequest.onerror = () => { fail++; if (ok + fail == total) finish() }; + }); + transaction.onerror = onerror; + }; + openRequest.onerror = onerror; + },absolutePath:() => { abort('FS.absolutePath has been removed; use PATH_FS.resolve instead'); - }, - createFolder() { + },createFolder:() => { abort('FS.createFolder has been removed; use FS.mkdir instead'); - }, - createLink() { + },createLink:() => { abort('FS.createLink has been removed; use FS.symlink instead'); - }, - joinPath() { + },joinPath:() => { abort('FS.joinPath has been removed; use PATH.join instead'); - }, - mmapAlloc() { + },mmapAlloc:() => { abort('FS.mmapAlloc has been replaced by the top level function mmapAlloc'); - }, - standardizePath() { + },standardizePath:() => { abort('FS.standardizePath has been removed; use PATH.normalize instead'); - }, - }; - - var SYSCALLS = { - DEFAULT_POLLMASK:5, - calculateAt(dirfd, path, allowEmpty) { + }}; + var SYSCALLS = {DEFAULT_POLLMASK:5,calculateAt:function(dirfd, path, allowEmpty) { if (PATH.isAbs(path)) { return path; } @@ -3721,43 +3783,39 @@ async function createWasm() { } return dir; } - return dir + '/' + path; - }, - writeStat(buf, stat) { + return PATH.join2(dir, path); + },doStat:function(func, path, buf) { + try { + var stat = func(path); + } catch (e) { + if (e && e.node && PATH.normalize(path) !== PATH.normalize(FS.getPath(e.node))) { + // an error occurred while trying to look up the path; we should just report ENOTDIR + return -54; + } + throw e; + } HEAP32[((buf)>>2)] = stat.dev; - HEAP32[(((buf)+(4))>>2)] = stat.mode; - HEAPU32[(((buf)+(8))>>2)] = stat.nlink; - HEAP32[(((buf)+(12))>>2)] = stat.uid; - HEAP32[(((buf)+(16))>>2)] = stat.gid; - HEAP32[(((buf)+(20))>>2)] = stat.rdev; - HEAP64[(((buf)+(24))>>3)] = BigInt(stat.size); - HEAP32[(((buf)+(32))>>2)] = 4096; - HEAP32[(((buf)+(36))>>2)] = stat.blocks; + HEAP32[(((buf)+(8))>>2)] = stat.ino; + HEAP32[(((buf)+(12))>>2)] = stat.mode; + HEAPU32[(((buf)+(16))>>2)] = stat.nlink; + HEAP32[(((buf)+(20))>>2)] = stat.uid; + HEAP32[(((buf)+(24))>>2)] = stat.gid; + HEAP32[(((buf)+(28))>>2)] = stat.rdev; + (tempI64 = [stat.size>>>0,(tempDouble=stat.size,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((buf)+(40))>>2)] = tempI64[0],HEAP32[(((buf)+(44))>>2)] = tempI64[1]); + HEAP32[(((buf)+(48))>>2)] = 4096; + HEAP32[(((buf)+(52))>>2)] = stat.blocks; var atime = stat.atime.getTime(); var mtime = stat.mtime.getTime(); var ctime = stat.ctime.getTime(); - HEAP64[(((buf)+(40))>>3)] = BigInt(Math.floor(atime / 1000)); - HEAPU32[(((buf)+(48))>>2)] = (atime % 1000) * 1000 * 1000; - HEAP64[(((buf)+(56))>>3)] = BigInt(Math.floor(mtime / 1000)); - HEAPU32[(((buf)+(64))>>2)] = (mtime % 1000) * 1000 * 1000; - HEAP64[(((buf)+(72))>>3)] = BigInt(Math.floor(ctime / 1000)); - HEAPU32[(((buf)+(80))>>2)] = (ctime % 1000) * 1000 * 1000; - HEAP64[(((buf)+(88))>>3)] = BigInt(stat.ino); + (tempI64 = [Math.floor(atime / 1000)>>>0,(tempDouble=Math.floor(atime / 1000),(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((buf)+(56))>>2)] = tempI64[0],HEAP32[(((buf)+(60))>>2)] = tempI64[1]); + HEAPU32[(((buf)+(64))>>2)] = (atime % 1000) * 1000; + (tempI64 = [Math.floor(mtime / 1000)>>>0,(tempDouble=Math.floor(mtime / 1000),(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((buf)+(72))>>2)] = tempI64[0],HEAP32[(((buf)+(76))>>2)] = tempI64[1]); + HEAPU32[(((buf)+(80))>>2)] = (mtime % 1000) * 1000; + (tempI64 = [Math.floor(ctime / 1000)>>>0,(tempDouble=Math.floor(ctime / 1000),(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((buf)+(88))>>2)] = tempI64[0],HEAP32[(((buf)+(92))>>2)] = tempI64[1]); + HEAPU32[(((buf)+(96))>>2)] = (ctime % 1000) * 1000; + (tempI64 = [stat.ino>>>0,(tempDouble=stat.ino,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[(((buf)+(104))>>2)] = tempI64[0],HEAP32[(((buf)+(108))>>2)] = tempI64[1]); return 0; - }, - writeStatFs(buf, stats) { - HEAP32[(((buf)+(4))>>2)] = stats.bsize; - HEAP32[(((buf)+(40))>>2)] = stats.bsize; - HEAP32[(((buf)+(8))>>2)] = stats.blocks; - HEAP32[(((buf)+(12))>>2)] = stats.bfree; - HEAP32[(((buf)+(16))>>2)] = stats.bavail; - HEAP32[(((buf)+(20))>>2)] = stats.files; - HEAP32[(((buf)+(24))>>2)] = stats.ffree; - HEAP32[(((buf)+(28))>>2)] = stats.fsid; - HEAP32[(((buf)+(44))>>2)] = stats.flags; // ST_NOSUID - HEAP32[(((buf)+(36))>>2)] = stats.namelen; - }, - doMsync(addr, stream, len, flags, offset) { + },doMsync:function(addr, stream, len, flags, offset) { if (!FS.isFile(stream.node.mode)) { throw new FS.ErrnoError(43); } @@ -3767,17 +3825,19 @@ async function createWasm() { } var buffer = HEAPU8.slice(addr, addr + len); FS.msync(stream, buffer, offset, len, flags); - }, - getStreamFromFD(fd) { - var stream = FS.getStreamChecked(fd); - return stream; - }, - varargs:undefined, - getStr(ptr) { + },varargs:undefined,get:function() { + assert(SYSCALLS.varargs != undefined); + SYSCALLS.varargs += 4; + var ret = HEAP32[(((SYSCALLS.varargs)-(4))>>2)]; + return ret; + },getStr:function(ptr) { var ret = UTF8ToString(ptr); return ret; - }, - }; + },getStreamFromFD:function(fd) { + var stream = FS.getStream(fd); + if (!stream) throw new FS.ErrnoError(8); + return stream; + }}; function ___syscall_fcntl64(fd, cmd, varargs) { SYSCALLS.varargs = varargs; try { @@ -3785,15 +3845,12 @@ async function createWasm() { var stream = SYSCALLS.getStreamFromFD(fd); switch (cmd) { case 0: { - var arg = syscallGetVarargI(); + var arg = SYSCALLS.get(); if (arg < 0) { return -28; } - while (FS.streams[arg]) { - arg++; - } var newStream; - newStream = FS.dupStream(stream, arg); + newStream = FS.createStream(stream, arg); return newStream.fd; } case 1: @@ -3802,86 +3859,66 @@ async function createWasm() { case 3: return stream.flags; case 4: { - var arg = syscallGetVarargI(); + var arg = SYSCALLS.get(); stream.flags |= arg; return 0; } - case 12: { - var arg = syscallGetVarargP(); + case 5: + /* case 5: Currently in musl F_GETLK64 has same value as F_GETLK, so omitted to avoid duplicate case blocks. If that changes, uncomment this */ { + + var arg = SYSCALLS.get(); var offset = 0; // We're always unlocked. HEAP16[(((arg)+(offset))>>1)] = 2; return 0; } - case 13: - case 14: - // Pretend that the locking is successful. These are process-level locks, - // and Emscripten programs are a single process. If we supported linking a - // filesystem between programs, we'd need to do more here. - // See https://github.com/emscripten-core/emscripten/issues/23697 - return 0; + case 6: + case 7: + /* case 6: Currently in musl F_SETLK64 has same value as F_SETLK, so omitted to avoid duplicate case blocks. If that changes, uncomment this */ + /* case 7: Currently in musl F_SETLKW64 has same value as F_SETLKW, so omitted to avoid duplicate case blocks. If that changes, uncomment this */ + + + return 0; // Pretend that the locking is successful. + case 16: + case 8: + return -28; // These are for sockets. We don't have them fully implemented yet. + case 9: + // musl trusts getown return values, due to a bug where they must be, as they overlap with errors. just return -1 here, so fcntl() returns that, and we set errno ourselves. + setErrNo(28); + return -1; + default: { + return -28; + } } - return -28; } catch (e) { if (typeof FS == 'undefined' || !(e.name === 'ErrnoError')) throw e; return -e.errno; } } - function ___syscall_ioctl(fd, op, varargs) { SYSCALLS.varargs = varargs; try { var stream = SYSCALLS.getStreamFromFD(fd); switch (op) { - case 21509: { - if (!stream.tty) return -59; - return 0; - } + case 21509: case 21505: { if (!stream.tty) return -59; - if (stream.tty.ops.ioctl_tcgets) { - var termios = stream.tty.ops.ioctl_tcgets(stream); - var argp = syscallGetVarargP(); - HEAP32[((argp)>>2)] = termios.c_iflag || 0; - HEAP32[(((argp)+(4))>>2)] = termios.c_oflag || 0; - HEAP32[(((argp)+(8))>>2)] = termios.c_cflag || 0; - HEAP32[(((argp)+(12))>>2)] = termios.c_lflag || 0; - for (var i = 0; i < 32; i++) { - HEAP8[(argp + i)+(17)] = termios.c_cc[i] || 0; - } - return 0; - } return 0; } case 21510: case 21511: - case 21512: { - if (!stream.tty) return -59; - return 0; // no-op, not actually adjusting terminal settings - } + case 21512: case 21506: case 21507: case 21508: { if (!stream.tty) return -59; - if (stream.tty.ops.ioctl_tcsets) { - var argp = syscallGetVarargP(); - var c_iflag = HEAP32[((argp)>>2)]; - var c_oflag = HEAP32[(((argp)+(4))>>2)]; - var c_cflag = HEAP32[(((argp)+(8))>>2)]; - var c_lflag = HEAP32[(((argp)+(12))>>2)]; - var c_cc = [] - for (var i = 0; i < 32; i++) { - c_cc.push(HEAP8[(argp + i)+(17)]); - } - return stream.tty.ops.ioctl_tcsets(stream.tty, op, { c_iflag, c_oflag, c_cflag, c_lflag, c_cc }); - } return 0; // no-op, not actually adjusting terminal settings } case 21519: { if (!stream.tty) return -59; - var argp = syscallGetVarargP(); + var argp = SYSCALLS.get(); HEAP32[((argp)>>2)] = 0; return 0; } @@ -3890,19 +3927,13 @@ async function createWasm() { return -28; // not supported } case 21531: { - var argp = syscallGetVarargP(); + var argp = SYSCALLS.get(); return FS.ioctl(stream, op, argp); } case 21523: { // TODO: in theory we should write to the winsize struct that gets // passed in, but for now musl doesn't read anything on it if (!stream.tty) return -59; - if (stream.tty.ops.ioctl_tiocgwinsz) { - var winsize = stream.tty.ops.ioctl_tiocgwinsz(stream.tty); - var argp = syscallGetVarargP(); - HEAP16[((argp)>>1)] = winsize[0]; - HEAP16[(((argp)+(2))>>1)] = winsize[1]; - } return 0; } case 21524: { @@ -3912,10 +3943,6 @@ async function createWasm() { if (!stream.tty) return -59; return 0; } - case 21515: { - if (!stream.tty) return -59; - return 0; - } default: return -28; // not supported } } catch (e) { @@ -3924,14 +3951,13 @@ async function createWasm() { } } - function ___syscall_openat(dirfd, path, flags, varargs) { SYSCALLS.varargs = varargs; try { path = SYSCALLS.getStr(path); path = SYSCALLS.calculateAt(dirfd, path); - var mode = varargs ? syscallGetVarargI() : 0; + var mode = varargs ? SYSCALLS.get() : 0; return FS.open(path, flags, mode).fd; } catch (e) { if (typeof FS == 'undefined' || !(e.name === 'ErrnoError')) throw e; @@ -3939,39 +3965,38 @@ async function createWasm() { } } - var __abort_js = () => + function _abort() { abort('native code called abort()'); + } + + function _emscripten_memcpy_big(dest, src, num) { + HEAPU8.copyWithin(dest, src, src + num); + } - var getHeapMax = () => + function getHeapMax() { // Stay one Wasm page short of 4GB: while e.g. Chrome is able to allocate // full 4GB Wasm memories, the size will wrap back to 0 bytes in Wasm side // for any code that deals with heap sizes, which would require special // casing all heap size related code to treat 0 specially. - 2147483648; - - var alignMemory = (size, alignment) => { - assert(alignment, "alignment argument is required"); - return Math.ceil(size / alignment) * alignment; - }; + return 2147483648; + } - var growMemory = (size) => { + function emscripten_realloc_buffer(size) { var b = wasmMemory.buffer; - var pages = ((size - b.byteLength + 65535) / 65536) | 0; try { // round size grow request up to wasm page size (fixed 64KB per spec) - wasmMemory.grow(pages); // .grow() takes a delta compared to the previous size + wasmMemory.grow((size - b.byteLength + 65535) >>> 16); // .grow() takes a delta compared to the previous size updateMemoryViews(); return 1 /*success*/; } catch(e) { - err(`growMemory: Attempted to grow heap from ${b.byteLength} bytes to ${size} bytes, but got error: ${e}`); + err('emscripten_realloc_buffer: Attempted to grow heap from ' + b.byteLength + ' bytes to ' + size + ' bytes, but got error: ' + e); } // implicit 0 return to save code size (caller will cast "undefined" into 0 // anyhow) - }; - var _emscripten_resize_heap = (requestedSize) => { + } + function _emscripten_resize_heap(requestedSize) { var oldSize = HEAPU8.length; - // With CAN_ADDRESS_2GB or MEMORY64, pointers are already unsigned. - requestedSize >>>= 0; + requestedSize = requestedSize >>> 0; // With multithreaded builds, races can happen (another thread might increase the size // in between), so return a failure, and let the caller retry. assert(requestedSize > oldSize); @@ -3997,10 +4022,12 @@ async function createWasm() { // (the wasm binary specifies it, so if we tried, we'd fail anyhow). var maxHeapSize = getHeapMax(); if (requestedSize > maxHeapSize) { - err(`Cannot enlarge memory, requested ${requestedSize} bytes, but the limit is ${maxHeapSize} bytes!`); + err('Cannot enlarge memory, asked to go up to ' + requestedSize + ' bytes, but the limit is ' + maxHeapSize + ' bytes!'); return false; } + let alignUp = (x, multiple) => x + (multiple - x % multiple) % multiple; + // Loop through potential heap size increases. If we attempt a too eager // reservation that fails, cut down on the attempted size and reserve a // smaller bump instead. (max 3 times, chosen somewhat arbitrarily) @@ -4009,17 +4036,17 @@ async function createWasm() { // but limit overreserving (default to capping at +96MB overgrowth at most) overGrownHeapSize = Math.min(overGrownHeapSize, requestedSize + 100663296 ); - var newSize = Math.min(maxHeapSize, alignMemory(Math.max(requestedSize, overGrownHeapSize), 65536)); + var newSize = Math.min(maxHeapSize, alignUp(Math.max(requestedSize, overGrownHeapSize), 65536)); - var replacement = growMemory(newSize); + var replacement = emscripten_realloc_buffer(newSize); if (replacement) { return true; } } - err(`Failed to grow the heap from ${oldSize} bytes to ${newSize} bytes, not enough memory!`); + err('Failed to grow the heap from ' + oldSize + ' bytes to ' + newSize + ' bytes, not enough memory!'); return false; - }; + } function _fd_close(fd) { try { @@ -4034,22 +4061,22 @@ async function createWasm() { } /** @param {number=} offset */ - var doReadv = (stream, iov, iovcnt, offset) => { + function doReadv(stream, iov, iovcnt, offset) { var ret = 0; for (var i = 0; i < iovcnt; i++) { var ptr = HEAPU32[((iov)>>2)]; var len = HEAPU32[(((iov)+(4))>>2)]; iov += 8; - var curr = FS.read(stream, HEAP8, ptr, len, offset); + var curr = FS.read(stream, HEAP8,ptr, len, offset); if (curr < 0) return -1; ret += curr; if (curr < len) break; // nothing more to read - if (typeof offset != 'undefined') { + if (typeof offset !== 'undefined') { offset += curr; } } return ret; - }; + } function _fd_read(fd, iov, iovcnt, pnum) { try { @@ -4064,50 +4091,46 @@ async function createWasm() { } } + function convertI32PairToI53Checked(lo, hi) { + assert(lo == (lo >>> 0) || lo == (lo|0)); // lo should either be a i32 or a u32 + assert(hi === (hi|0)); // hi should be a i32 + return ((hi + 0x200000) >>> 0 < 0x400001 - !!lo) ? (lo >>> 0) + hi * 4294967296 : NaN; + } - var INT53_MAX = 9007199254740992; - var INT53_MIN = -9007199254740992; - var bigintToI53Checked = (num) => (num < INT53_MIN || num > INT53_MAX) ? NaN : Number(num); - function _fd_seek(fd, offset, whence, newOffset) { - offset = bigintToI53Checked(offset); + function _fd_seek(fd, offset_low, offset_high, whence, newOffset) { try { - if (isNaN(offset)) return 61; + var offset = convertI32PairToI53Checked(offset_low, offset_high); if (isNaN(offset)) return 61; var stream = SYSCALLS.getStreamFromFD(fd); FS.llseek(stream, offset, whence); - HEAP64[((newOffset)>>3)] = BigInt(stream.position); + (tempI64 = [stream.position>>>0,(tempDouble=stream.position,(+(Math.abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math.min((+(Math.floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math.ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[((newOffset)>>2)] = tempI64[0],HEAP32[(((newOffset)+(4))>>2)] = tempI64[1]); if (stream.getdents && offset === 0 && whence === 0) stream.getdents = null; // reset readdir state return 0; } catch (e) { if (typeof FS == 'undefined' || !(e.name === 'ErrnoError')) throw e; return e.errno; } - ; } /** @param {number=} offset */ - var doWritev = (stream, iov, iovcnt, offset) => { + function doWritev(stream, iov, iovcnt, offset) { var ret = 0; for (var i = 0; i < iovcnt; i++) { var ptr = HEAPU32[((iov)>>2)]; var len = HEAPU32[(((iov)+(4))>>2)]; iov += 8; - var curr = FS.write(stream, HEAP8, ptr, len, offset); + var curr = FS.write(stream, HEAP8,ptr, len, offset); if (curr < 0) return -1; ret += curr; - if (curr < len) { - // No more space to write. - break; - } - if (typeof offset != 'undefined') { + if (typeof offset !== 'undefined') { offset += curr; } } return ret; - }; + } function _fd_write(fd, iov, iovcnt, pnum) { try { @@ -4124,58 +4147,29 @@ async function createWasm() { - - var onInits = []; - var addOnInit = (cb) => onInits.push(cb); - - var wasmTableMirror = []; - - /** @type {WebAssembly.Table} */ - var wasmTable; - var getWasmTableEntry = (funcPtr) => { - var func = wasmTableMirror[funcPtr]; - if (!func) { - /** @suppress {checkTypes} */ - wasmTableMirror[funcPtr] = func = wasmTable.get(funcPtr); - } - /** @suppress {checkTypes} */ - assert(wasmTable.get(funcPtr) == func, 'JavaScript-side Wasm function table mirror is out of date!'); - return func; - }; - - - - - var stringToUTF8 = (str, outPtr, maxBytesToWrite) => { - assert(typeof maxBytesToWrite == 'number', 'stringToUTF8(str, outPtr, maxBytesToWrite) is missing the third parameter that specifies the length of the output buffer!'); - return stringToUTF8Array(str, HEAPU8, outPtr, maxBytesToWrite); - }; - - /** @suppress {duplicate } */ - var stringToNewUTF8 = (str) => { + function allocateUTF8(str) { var size = lengthBytesUTF8(str) + 1; var ret = _malloc(size); - if (ret) stringToUTF8(str, ret, size); + if (ret) stringToUTF8Array(str, HEAP8, ret, size); return ret; - }; - var allocateUTF8 = stringToNewUTF8; + } - var uleb128Encode = (n, target) => { + function uleb128Encode(n, target) { assert(n < 16384); if (n < 128) { target.push(n); } else { target.push((n % 128) | 128, n >> 7); } - }; + } - var sigToWasmTypes = (sig) => { + function sigToWasmTypes(sig) { var typeNames = { 'i': 'i32', - 'j': 'i64', + // i64 values will be split into two i32s. + 'j': 'i32', 'f': 'f32', 'd': 'f64', - 'e': 'externref', 'p': 'i32', }; var type = { @@ -4185,11 +4179,14 @@ async function createWasm() { for (var i = 1; i < sig.length; ++i) { assert(sig[i] in typeNames, 'invalid signature char: ' + sig[i]); type.parameters.push(typeNames[sig[i]]); + if (sig[i] === 'j') { + type.parameters.push('i32'); + } } return type; - }; + } - var generateFuncType = (sig, target) => { + function generateFuncType(sig, target){ var sigRet = sig.slice(0, 1); var sigParam = sig.slice(1); var typeCodes = { @@ -4198,17 +4195,16 @@ async function createWasm() { 'j': 0x7e, // i64 'f': 0x7d, // f32 'd': 0x7c, // f64 - 'e': 0x6f, // externref }; - + // Parameters, length + signatures target.push(0x60 /* form: func */); uleb128Encode(sigParam.length, target); - for (var paramType of sigParam) { - assert(paramType in typeCodes, `invalid signature char: ${paramType}`); - target.push(typeCodes[paramType]); + for (var i = 0; i < sigParam.length; ++i) { + assert(sigParam[i] in typeCodes, 'invalid signature char: ' + sigParam[i]); + target.push(typeCodes[sigParam[i]]); } - + // Return values, length + signatures // With no multi-return in MVP, either 0 (void) or 1 (anything else) if (sigRet == 'v') { @@ -4216,8 +4212,8 @@ async function createWasm() { } else { target.push(0x01, typeCodes[sigRet]); } - }; - var convertJsFunctionToWasm = (func, sig) => { + } + function convertJsFunctionToWasm(func, sig) { // If the type reflection proposal is available, use the new // "WebAssembly.Function" constructor. @@ -4242,7 +4238,7 @@ async function createWasm() { ]; // Write the overall length of the type section followed by the body uleb128Encode(typeSectionBody.length, bytes); - bytes.push(...typeSectionBody); + bytes.push.apply(bytes, typeSectionBody); // The rest of the module is static bytes.push( @@ -4260,10 +4256,10 @@ async function createWasm() { var instance = new WebAssembly.Instance(module, { 'e': { 'f': func } }); var wrappedFunc = instance.exports['f']; return wrappedFunc; - }; + } - var updateTableMap = (offset, count) => { + function updateTableMap(offset, count) { if (functionsInTableMap) { for (var i = offset; i < offset + count; i++) { var item = getWasmTableEntry(i); @@ -4273,30 +4269,27 @@ async function createWasm() { } } } - }; - - var functionsInTableMap; + } - var getFunctionAddress = (func) => { + var functionsInTableMap = undefined; + function getFunctionAddress(func) { // First, create the map if this is the first use. if (!functionsInTableMap) { functionsInTableMap = new WeakMap(); updateTableMap(0, wasmTable.length); } return functionsInTableMap.get(func) || 0; - }; + } var freeTableIndexes = []; - - var getEmptyTableSlot = () => { + function getEmptyTableSlot() { // Reuse a free index if there is one, otherwise grow. if (freeTableIndexes.length) { return freeTableIndexes.pop(); } // Grow the table try { - /** @suppress {checkTypes} */ wasmTable.grow(1); } catch (err) { if (!(err instanceof RangeError)) { @@ -4305,20 +4298,18 @@ async function createWasm() { throw 'Unable to grow wasm table. Set ALLOW_TABLE_GROWTH.'; } return wasmTable.length - 1; - }; + } - var setWasmTableEntry = (idx, func) => { - /** @suppress {checkTypes} */ + function setWasmTableEntry(idx, func) { wasmTable.set(idx, func); - // With ABORT_ON_WASM_EXCEPTIONS wasmTable.get is overridden to return wrapped + // With ABORT_ON_WASM_EXCEPTIONS wasmTable.get is overriden to return wrapped // functions so we need to call it here to retrieve the potential wrapper correctly // instead of just storing 'func' directly into wasmTableMirror - /** @suppress {checkTypes} */ wasmTableMirror[idx] = wasmTable.get(idx); - }; + } /** @param {string=} sig */ - var addFunction = (func, sig) => { + function addFunction(func, sig) { assert(typeof func != 'undefined'); // Check if the function is already in the table, to ensure each function // gets a unique index. @@ -4347,32 +4338,19 @@ async function createWasm() { functionsInTableMap.set(func, ret); return ret; - }; + } - var getCFunc = (ident) => { + function getCFunc(ident) { var func = Module['_' + ident]; // closure exported function assert(func, 'Cannot call unknown function ' + ident + ', make sure it is exported'); return func; - }; + } + - var writeArrayToMemory = (array, buffer) => { + function writeArrayToMemory(array, buffer) { assert(array.length >= 0, 'writeArrayToMemory array must have a length (should be an array or typed array)') HEAP8.set(array, buffer); - }; - - - - var stackAlloc = (sz) => __emscripten_stack_alloc(sz); - var stringToUTF8OnStack = (str) => { - var size = lengthBytesUTF8(str) + 1; - var ret = stackAlloc(size); - stringToUTF8(str, ret, size); - return ret; - }; - - - - + } /** * @param {string|null=} returnType @@ -4380,13 +4358,16 @@ async function createWasm() { * @param {Arguments|Array=} args * @param {Object=} opts */ - var ccall = (ident, returnType, argTypes, args, opts) => { + function ccall(ident, returnType, argTypes, args, opts) { // For fast lookup of conversion functions var toC = { 'string': (str) => { var ret = 0; if (str !== null && str !== undefined && str !== 0) { // null string - ret = stringToUTF8OnStack(str); + // at most 4 bytes per UTF-8 code point, +1 for the trailing '\0' + var len = (str.length << 2) + 1; + ret = stackAlloc(len); + stringToUTF8(str, ret, len); } return ret; }, @@ -4399,6 +4380,7 @@ async function createWasm() { function convertReturnValue(ret) { if (returnType === 'string') { + return UTF8ToString(ret); } if (returnType === 'boolean') return Boolean(ret); @@ -4418,2957 +4400,2608 @@ async function createWasm() { } else { cArgs[i] = args[i]; } - } - } - var ret = func(...cArgs); - function onDone(ret) { - if (stack !== 0) stackRestore(stack); - return convertReturnValue(ret); - } - - ret = onDone(ret); - return ret; - }; - - /** - * @param {string=} returnType - * @param {Array=} argTypes - * @param {Object=} opts - */ - var cwrap = (ident, returnType, argTypes, opts) => { - return (...args) => ccall(ident, returnType, argTypes, args, opts); - }; - - - var incrementExceptionRefcount = (ptr) => ___cxa_increment_exception_refcount(ptr); - - var decrementExceptionRefcount = (ptr) => ___cxa_decrement_exception_refcount(ptr); - - - - - - - var getExceptionMessageCommon = (ptr) => { - var sp = stackSave(); - var type_addr_addr = stackAlloc(4); - var message_addr_addr = stackAlloc(4); - ___get_exception_message(ptr, type_addr_addr, message_addr_addr); - var type_addr = HEAPU32[((type_addr_addr)>>2)]; - var message_addr = HEAPU32[((message_addr_addr)>>2)]; - var type = UTF8ToString(type_addr); - _free(type_addr); - var message; - if (message_addr) { - message = UTF8ToString(message_addr); - _free(message_addr); - } - stackRestore(sp); - return [type, message]; - }; - var getExceptionMessage = (ptr) => getExceptionMessageCommon(ptr); - - FS.createPreloadedFile = FS_createPreloadedFile; - FS.staticInit();; -// End JS library code - -// include: postlibrary.js -// This file is included after the automatically-generated JS library code -// but before the wasm module is created. - -{ - - // Begin ATMODULES hooks - if (Module['noExitRuntime']) noExitRuntime = Module['noExitRuntime']; -if (Module['preloadPlugins']) preloadPlugins = Module['preloadPlugins']; -if (Module['print']) out = Module['print']; -if (Module['printErr']) err = Module['printErr']; -if (Module['wasmBinary']) wasmBinary = Module['wasmBinary']; - // End ATMODULES hooks - - checkIncomingModuleAPI(); - - if (Module['arguments']) arguments_ = Module['arguments']; - if (Module['thisProgram']) thisProgram = Module['thisProgram']; - - // Assertions on removed incoming Module JS APIs. - assert(typeof Module['memoryInitializerPrefixURL'] == 'undefined', 'Module.memoryInitializerPrefixURL option was removed, use Module.locateFile instead'); - assert(typeof Module['pthreadMainPrefixURL'] == 'undefined', 'Module.pthreadMainPrefixURL option was removed, use Module.locateFile instead'); - assert(typeof Module['cdInitializerPrefixURL'] == 'undefined', 'Module.cdInitializerPrefixURL option was removed, use Module.locateFile instead'); - assert(typeof Module['filePackagePrefixURL'] == 'undefined', 'Module.filePackagePrefixURL option was removed, use Module.locateFile instead'); - assert(typeof Module['read'] == 'undefined', 'Module.read option was removed'); - assert(typeof Module['readAsync'] == 'undefined', 'Module.readAsync option was removed (modify readAsync in JS)'); - assert(typeof Module['readBinary'] == 'undefined', 'Module.readBinary option was removed (modify readBinary in JS)'); - assert(typeof Module['setWindowTitle'] == 'undefined', 'Module.setWindowTitle option was removed (modify emscripten_set_window_title in JS)'); - assert(typeof Module['TOTAL_MEMORY'] == 'undefined', 'Module.TOTAL_MEMORY has been renamed Module.INITIAL_MEMORY'); - assert(typeof Module['ENVIRONMENT'] == 'undefined', 'Module.ENVIRONMENT has been deprecated. To force the environment, use the ENVIRONMENT compile-time option (for example, -sENVIRONMENT=web or -sENVIRONMENT=node)'); - assert(typeof Module['STACK_SIZE'] == 'undefined', 'STACK_SIZE can no longer be set at runtime. Use -sSTACK_SIZE at link time') - // If memory is defined in wasm, the user can't provide it, or set INITIAL_MEMORY - assert(typeof Module['wasmMemory'] == 'undefined', 'Use of `wasmMemory` detected. Use -sIMPORTED_MEMORY to define wasmMemory externally'); - assert(typeof Module['INITIAL_MEMORY'] == 'undefined', 'Detected runtime INITIAL_MEMORY setting. Use -sIMPORTED_MEMORY to define wasmMemory dynamically'); - -} - -// Begin runtime exports - Module['ccall'] = ccall; - Module['cwrap'] = cwrap; - Module['addFunction'] = addFunction; - Module['UTF8ToString'] = UTF8ToString; - Module['allocateUTF8'] = allocateUTF8; - var missingLibrarySymbols = [ - 'writeI53ToI64', - 'writeI53ToI64Clamped', - 'writeI53ToI64Signaling', - 'writeI53ToU64Clamped', - 'writeI53ToU64Signaling', - 'readI53FromI64', - 'readI53FromU64', - 'convertI32PairToI53', - 'convertI32PairToI53Checked', - 'convertU32PairToI53', - 'getTempRet0', - 'zeroMemory', - 'exitJS', - 'withStackSave', - 'inetPton4', - 'inetNtop4', - 'inetPton6', - 'inetNtop6', - 'readSockaddr', - 'writeSockaddr', - 'emscriptenLog', - 'readEmAsmArgs', - 'jstoi_q', - 'getExecutableName', - 'autoResumeAudioContext', - 'getDynCaller', - 'dynCall', - 'handleException', - 'keepRuntimeAlive', - 'runtimeKeepalivePush', - 'runtimeKeepalivePop', - 'callUserCallback', - 'maybeExit', - 'asmjsMangle', - 'HandleAllocator', - 'getNativeTypeSize', - 'addOnPostCtor', - 'addOnPreMain', - 'addOnExit', - 'STACK_SIZE', - 'STACK_ALIGN', - 'POINTER_SIZE', - 'ASSERTIONS', - 'removeFunction', - 'reallyNegative', - 'unSign', - 'strLen', - 'reSign', - 'formatString', - 'intArrayToString', - 'AsciiToString', - 'stringToAscii', - 'UTF16ToString', - 'stringToUTF16', - 'lengthBytesUTF16', - 'UTF32ToString', - 'stringToUTF32', - 'lengthBytesUTF32', - 'registerKeyEventCallback', - 'maybeCStringToJsString', - 'findEventTarget', - 'getBoundingClientRect', - 'fillMouseEventData', - 'registerMouseEventCallback', - 'registerWheelEventCallback', - 'registerUiEventCallback', - 'registerFocusEventCallback', - 'fillDeviceOrientationEventData', - 'registerDeviceOrientationEventCallback', - 'fillDeviceMotionEventData', - 'registerDeviceMotionEventCallback', - 'screenOrientation', - 'fillOrientationChangeEventData', - 'registerOrientationChangeEventCallback', - 'fillFullscreenChangeEventData', - 'registerFullscreenChangeEventCallback', - 'JSEvents_requestFullscreen', - 'JSEvents_resizeCanvasForFullscreen', - 'registerRestoreOldStyle', - 'hideEverythingExceptGivenElement', - 'restoreHiddenElements', - 'setLetterbox', - 'softFullscreenResizeWebGLRenderTarget', - 'doRequestFullscreen', - 'fillPointerlockChangeEventData', - 'registerPointerlockChangeEventCallback', - 'registerPointerlockErrorEventCallback', - 'requestPointerLock', - 'fillVisibilityChangeEventData', - 'registerVisibilityChangeEventCallback', - 'registerTouchEventCallback', - 'fillGamepadEventData', - 'registerGamepadEventCallback', - 'registerBeforeUnloadEventCallback', - 'fillBatteryEventData', - 'battery', - 'registerBatteryEventCallback', - 'setCanvasElementSize', - 'getCanvasElementSize', - 'jsStackTrace', - 'getCallstack', - 'convertPCtoSourceLocation', - 'getEnvStrings', - 'checkWasiClock', - 'wasiRightsToMuslOFlags', - 'wasiOFlagsToMuslOFlags', - 'safeSetTimeout', - 'setImmediateWrapped', - 'safeRequestAnimationFrame', - 'clearImmediateWrapped', - 'registerPostMainLoop', - 'registerPreMainLoop', - 'getPromise', - 'makePromise', - 'idsToPromises', - 'makePromiseCallback', - 'Browser_asyncPrepareDataCounter', - 'isLeapYear', - 'ydayFromDate', - 'arraySum', - 'addDays', - 'getSocketFromFD', - 'getSocketAddress', - 'FS_mkdirTree', - '_setNetworkCallback', - 'heapObjectForWebGLType', - 'toTypedArrayIndex', - 'webgl_enable_ANGLE_instanced_arrays', - 'webgl_enable_OES_vertex_array_object', - 'webgl_enable_WEBGL_draw_buffers', - 'webgl_enable_WEBGL_multi_draw', - 'webgl_enable_EXT_polygon_offset_clamp', - 'webgl_enable_EXT_clip_control', - 'webgl_enable_WEBGL_polygon_mode', - 'emscriptenWebGLGet', - 'computeUnpackAlignedImageSize', - 'colorChannelsInGlTextureFormat', - 'emscriptenWebGLGetTexPixelData', - 'emscriptenWebGLGetUniform', - 'webglGetUniformLocation', - 'webglPrepareUniformLocationsBeforeFirstUse', - 'webglGetLeftBracePos', - 'emscriptenWebGLGetVertexAttrib', - '__glGetActiveAttribOrUniform', - 'writeGLArray', - 'registerWebGlEventCallback', - 'runAndAbortIfError', - 'ALLOC_NORMAL', - 'ALLOC_STACK', - 'allocate', - 'writeStringToMemory', - 'writeAsciiToMemory', - 'demangle', - 'stackTrace', -]; -missingLibrarySymbols.forEach(missingLibrarySymbol) - - var unexportedSymbols = [ - 'run', - 'addRunDependency', - 'removeRunDependency', - 'out', - 'err', - 'callMain', - 'abort', - 'wasmMemory', - 'wasmExports', - 'HEAPF32', - 'HEAPF64', - 'HEAP8', - 'HEAPU8', - 'HEAP16', - 'HEAPU16', - 'HEAP32', - 'HEAPU32', - 'HEAP64', - 'HEAPU64', - 'writeStackCookie', - 'checkStackCookie', - 'INT53_MAX', - 'INT53_MIN', - 'bigintToI53Checked', - 'stackSave', - 'stackRestore', - 'stackAlloc', - 'setTempRet0', - 'ptrToString', - 'getHeapMax', - 'growMemory', - 'ENV', - 'ERRNO_CODES', - 'strError', - 'DNS', - 'Protocols', - 'Sockets', - 'timers', - 'warnOnce', - 'readEmAsmArgsArray', - 'asyncLoad', - 'alignMemory', - 'mmapAlloc', - 'wasmTable', - 'getUniqueRunDependency', - 'noExitRuntime', - 'addOnPreRun', - 'addOnInit', - 'addOnPostRun', - 'uleb128Encode', - 'sigToWasmTypes', - 'generateFuncType', - 'convertJsFunctionToWasm', - 'freeTableIndexes', - 'functionsInTableMap', - 'getEmptyTableSlot', - 'updateTableMap', - 'getFunctionAddress', - 'setValue', - 'getValue', - 'PATH', - 'PATH_FS', - 'UTF8Decoder', - 'UTF8ArrayToString', - 'stringToUTF8Array', - 'stringToUTF8', - 'lengthBytesUTF8', - 'intArrayFromString', - 'UTF16Decoder', - 'stringToNewUTF8', - 'stringToUTF8OnStack', - 'writeArrayToMemory', - 'JSEvents', - 'specialHTMLTargets', - 'findCanvasEventTarget', - 'currentFullscreenStrategy', - 'restoreOldWindowedStyle', - 'UNWIND_CACHE', - 'ExitStatus', - 'doReadv', - 'doWritev', - 'initRandomFill', - 'randomFill', - 'emSetImmediate', - 'emClearImmediate_deps', - 'emClearImmediate', - 'promiseMap', - 'uncaughtExceptionCount', - 'exceptionLast', - 'exceptionCaught', - 'ExceptionInfo', - 'findMatchingCatch', - 'getExceptionMessageCommon', - 'Browser', - 'requestFullscreen', - 'requestFullScreen', - 'setCanvasSize', - 'getUserMedia', - 'createContext', - 'getPreloadedImageData__data', - 'wget', - 'MONTH_DAYS_REGULAR', - 'MONTH_DAYS_LEAP', - 'MONTH_DAYS_REGULAR_CUMULATIVE', - 'MONTH_DAYS_LEAP_CUMULATIVE', - 'SYSCALLS', - 'preloadPlugins', - 'FS_createPreloadedFile', - 'FS_modeStringToFlags', - 'FS_getMode', - 'FS_stdin_getChar_buffer', - 'FS_stdin_getChar', - 'FS_unlink', - 'FS_createPath', - 'FS_createDevice', - 'FS_readFile', - 'FS', - 'FS_root', - 'FS_mounts', - 'FS_devices', - 'FS_streams', - 'FS_nextInode', - 'FS_nameTable', - 'FS_currentPath', - 'FS_initialized', - 'FS_ignorePermissions', - 'FS_filesystems', - 'FS_syncFSRequests', - 'FS_readFiles', - 'FS_lookupPath', - 'FS_getPath', - 'FS_hashName', - 'FS_hashAddNode', - 'FS_hashRemoveNode', - 'FS_lookupNode', - 'FS_createNode', - 'FS_destroyNode', - 'FS_isRoot', - 'FS_isMountpoint', - 'FS_isFile', - 'FS_isDir', - 'FS_isLink', - 'FS_isChrdev', - 'FS_isBlkdev', - 'FS_isFIFO', - 'FS_isSocket', - 'FS_flagsToPermissionString', - 'FS_nodePermissions', - 'FS_mayLookup', - 'FS_mayCreate', - 'FS_mayDelete', - 'FS_mayOpen', - 'FS_checkOpExists', - 'FS_nextfd', - 'FS_getStreamChecked', - 'FS_getStream', - 'FS_createStream', - 'FS_closeStream', - 'FS_dupStream', - 'FS_doSetAttr', - 'FS_chrdev_stream_ops', - 'FS_major', - 'FS_minor', - 'FS_makedev', - 'FS_registerDevice', - 'FS_getDevice', - 'FS_getMounts', - 'FS_syncfs', - 'FS_mount', - 'FS_unmount', - 'FS_lookup', - 'FS_mknod', - 'FS_statfs', - 'FS_statfsStream', - 'FS_statfsNode', - 'FS_create', - 'FS_mkdir', - 'FS_mkdev', - 'FS_symlink', - 'FS_rename', - 'FS_rmdir', - 'FS_readdir', - 'FS_readlink', - 'FS_stat', - 'FS_fstat', - 'FS_lstat', - 'FS_doChmod', - 'FS_chmod', - 'FS_lchmod', - 'FS_fchmod', - 'FS_doChown', - 'FS_chown', - 'FS_lchown', - 'FS_fchown', - 'FS_doTruncate', - 'FS_truncate', - 'FS_ftruncate', - 'FS_utime', - 'FS_open', - 'FS_close', - 'FS_isClosed', - 'FS_llseek', - 'FS_read', - 'FS_write', - 'FS_mmap', - 'FS_msync', - 'FS_ioctl', - 'FS_writeFile', - 'FS_cwd', - 'FS_chdir', - 'FS_createDefaultDirectories', - 'FS_createDefaultDevices', - 'FS_createSpecialDirectories', - 'FS_createStandardStreams', - 'FS_staticInit', - 'FS_init', - 'FS_quit', - 'FS_findObject', - 'FS_analyzePath', - 'FS_createFile', - 'FS_createDataFile', - 'FS_forceLoadFile', - 'FS_createLazyFile', - 'FS_absolutePath', - 'FS_createFolder', - 'FS_createLink', - 'FS_joinPath', - 'FS_mmapAlloc', - 'FS_standardizePath', - 'MEMFS', - 'TTY', - 'PIPEFS', - 'SOCKFS', - 'tempFixedLengthArray', - 'miniTempWebGLFloatBuffers', - 'miniTempWebGLIntBuffers', - 'GL', - 'AL', - 'GLUT', - 'EGL', - 'GLEW', - 'IDBStore', - 'SDL', - 'SDL_gfx', - 'allocateUTF8OnStack', - 'print', - 'printErr', - 'jstoi_s', -]; -unexportedSymbols.forEach(unexportedRuntimeSymbol); - - // End runtime exports - // Begin JS library exports - Module['incrementExceptionRefcount'] = incrementExceptionRefcount; - Module['decrementExceptionRefcount'] = decrementExceptionRefcount; - Module['getExceptionMessage'] = getExceptionMessage; - // End JS library exports + } + } + var ret = func.apply(null, cArgs); + function onDone(ret) { + if (stack !== 0) stackRestore(stack); + return convertReturnValue(ret); + } + + ret = onDone(ret); + return ret; + } + + /** + * @param {string=} returnType + * @param {Array=} argTypes + * @param {Object=} opts + */ + function cwrap(ident, returnType, argTypes, opts) { + return function() { + return ccall(ident, returnType, argTypes, arguments, opts); + } + } -// end include: postlibrary.js + var FSNode = /** @constructor */ function(parent, name, mode, rdev) { + if (!parent) { + parent = this; // root node sets parent to itself + } + this.parent = parent; + this.mount = parent.mount; + this.mounted = null; + this.id = FS.nextInode++; + this.name = name; + this.mode = mode; + this.node_ops = {}; + this.stream_ops = {}; + this.rdev = rdev; + }; + var readMode = 292/*292*/ | 73/*73*/; + var writeMode = 146/*146*/; + Object.defineProperties(FSNode.prototype, { + read: { + get: /** @this{FSNode} */function() { + return (this.mode & readMode) === readMode; + }, + set: /** @this{FSNode} */function(val) { + val ? this.mode |= readMode : this.mode &= ~readMode; + } + }, + write: { + get: /** @this{FSNode} */function() { + return (this.mode & writeMode) === writeMode; + }, + set: /** @this{FSNode} */function(val) { + val ? this.mode |= writeMode : this.mode &= ~writeMode; + } + }, + isFolder: { + get: /** @this{FSNode} */function() { + return FS.isDir(this.mode); + } + }, + isDevice: { + get: /** @this{FSNode} */function() { + return FS.isChrdev(this.mode); + } + } + }); + FS.FSNode = FSNode; + FS.staticInit();; +ERRNO_CODES = { + 'EPERM': 63, + 'ENOENT': 44, + 'ESRCH': 71, + 'EINTR': 27, + 'EIO': 29, + 'ENXIO': 60, + 'E2BIG': 1, + 'ENOEXEC': 45, + 'EBADF': 8, + 'ECHILD': 12, + 'EAGAIN': 6, + 'EWOULDBLOCK': 6, + 'ENOMEM': 48, + 'EACCES': 2, + 'EFAULT': 21, + 'ENOTBLK': 105, + 'EBUSY': 10, + 'EEXIST': 20, + 'EXDEV': 75, + 'ENODEV': 43, + 'ENOTDIR': 54, + 'EISDIR': 31, + 'EINVAL': 28, + 'ENFILE': 41, + 'EMFILE': 33, + 'ENOTTY': 59, + 'ETXTBSY': 74, + 'EFBIG': 22, + 'ENOSPC': 51, + 'ESPIPE': 70, + 'EROFS': 69, + 'EMLINK': 34, + 'EPIPE': 64, + 'EDOM': 18, + 'ERANGE': 68, + 'ENOMSG': 49, + 'EIDRM': 24, + 'ECHRNG': 106, + 'EL2NSYNC': 156, + 'EL3HLT': 107, + 'EL3RST': 108, + 'ELNRNG': 109, + 'EUNATCH': 110, + 'ENOCSI': 111, + 'EL2HLT': 112, + 'EDEADLK': 16, + 'ENOLCK': 46, + 'EBADE': 113, + 'EBADR': 114, + 'EXFULL': 115, + 'ENOANO': 104, + 'EBADRQC': 103, + 'EBADSLT': 102, + 'EDEADLOCK': 16, + 'EBFONT': 101, + 'ENOSTR': 100, + 'ENODATA': 116, + 'ETIME': 117, + 'ENOSR': 118, + 'ENONET': 119, + 'ENOPKG': 120, + 'EREMOTE': 121, + 'ENOLINK': 47, + 'EADV': 122, + 'ESRMNT': 123, + 'ECOMM': 124, + 'EPROTO': 65, + 'EMULTIHOP': 36, + 'EDOTDOT': 125, + 'EBADMSG': 9, + 'ENOTUNIQ': 126, + 'EBADFD': 127, + 'EREMCHG': 128, + 'ELIBACC': 129, + 'ELIBBAD': 130, + 'ELIBSCN': 131, + 'ELIBMAX': 132, + 'ELIBEXEC': 133, + 'ENOSYS': 52, + 'ENOTEMPTY': 55, + 'ENAMETOOLONG': 37, + 'ELOOP': 32, + 'EOPNOTSUPP': 138, + 'EPFNOSUPPORT': 139, + 'ECONNRESET': 15, + 'ENOBUFS': 42, + 'EAFNOSUPPORT': 5, + 'EPROTOTYPE': 67, + 'ENOTSOCK': 57, + 'ENOPROTOOPT': 50, + 'ESHUTDOWN': 140, + 'ECONNREFUSED': 14, + 'EADDRINUSE': 3, + 'ECONNABORTED': 13, + 'ENETUNREACH': 40, + 'ENETDOWN': 38, + 'ETIMEDOUT': 73, + 'EHOSTDOWN': 142, + 'EHOSTUNREACH': 23, + 'EINPROGRESS': 26, + 'EALREADY': 7, + 'EDESTADDRREQ': 17, + 'EMSGSIZE': 35, + 'EPROTONOSUPPORT': 66, + 'ESOCKTNOSUPPORT': 137, + 'EADDRNOTAVAIL': 4, + 'ENETRESET': 39, + 'EISCONN': 30, + 'ENOTCONN': 53, + 'ETOOMANYREFS': 141, + 'EUSERS': 136, + 'EDQUOT': 19, + 'ESTALE': 72, + 'ENOTSUP': 138, + 'ENOMEDIUM': 148, + 'EILSEQ': 25, + 'EOVERFLOW': 61, + 'ECANCELED': 11, + 'ENOTRECOVERABLE': 56, + 'EOWNERDEAD': 62, + 'ESTRPIPE': 135, + };; function checkIncomingModuleAPI() { ignoredModuleProp('fetchSettings'); } - -// Imports from the Wasm binary. -var _fflush = makeInvalidEarlyAccess('_fflush'); -var _webidl_free = Module['_webidl_free'] = makeInvalidEarlyAccess('_webidl_free'); -var _free = Module['_free'] = makeInvalidEarlyAccess('_free'); -var _webidl_malloc = Module['_webidl_malloc'] = makeInvalidEarlyAccess('_webidl_malloc'); -var _malloc = Module['_malloc'] = makeInvalidEarlyAccess('_malloc'); -var _emscripten_bind_VoidPtr___destroy___0 = Module['_emscripten_bind_VoidPtr___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_VoidPtr___destroy___0'); -var _emscripten_bind_DoublePtr___destroy___0 = Module['_emscripten_bind_DoublePtr___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_DoublePtr___destroy___0'); -var _emscripten_bind_BoolVector_BoolVector_0 = Module['_emscripten_bind_BoolVector_BoolVector_0'] = makeInvalidEarlyAccess('_emscripten_bind_BoolVector_BoolVector_0'); -var _emscripten_bind_BoolVector_BoolVector_1 = Module['_emscripten_bind_BoolVector_BoolVector_1'] = makeInvalidEarlyAccess('_emscripten_bind_BoolVector_BoolVector_1'); -var _emscripten_bind_BoolVector_resize_1 = Module['_emscripten_bind_BoolVector_resize_1'] = makeInvalidEarlyAccess('_emscripten_bind_BoolVector_resize_1'); -var _emscripten_bind_BoolVector_get_1 = Module['_emscripten_bind_BoolVector_get_1'] = makeInvalidEarlyAccess('_emscripten_bind_BoolVector_get_1'); -var _emscripten_bind_BoolVector_set_2 = Module['_emscripten_bind_BoolVector_set_2'] = makeInvalidEarlyAccess('_emscripten_bind_BoolVector_set_2'); -var _emscripten_bind_BoolVector_size_0 = Module['_emscripten_bind_BoolVector_size_0'] = makeInvalidEarlyAccess('_emscripten_bind_BoolVector_size_0'); -var _emscripten_bind_BoolVector___destroy___0 = Module['_emscripten_bind_BoolVector___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_BoolVector___destroy___0'); -var _emscripten_bind_CharVector_CharVector_0 = Module['_emscripten_bind_CharVector_CharVector_0'] = makeInvalidEarlyAccess('_emscripten_bind_CharVector_CharVector_0'); -var _emscripten_bind_CharVector_CharVector_1 = Module['_emscripten_bind_CharVector_CharVector_1'] = makeInvalidEarlyAccess('_emscripten_bind_CharVector_CharVector_1'); -var _emscripten_bind_CharVector_resize_1 = Module['_emscripten_bind_CharVector_resize_1'] = makeInvalidEarlyAccess('_emscripten_bind_CharVector_resize_1'); -var _emscripten_bind_CharVector_get_1 = Module['_emscripten_bind_CharVector_get_1'] = makeInvalidEarlyAccess('_emscripten_bind_CharVector_get_1'); -var _emscripten_bind_CharVector_set_2 = Module['_emscripten_bind_CharVector_set_2'] = makeInvalidEarlyAccess('_emscripten_bind_CharVector_set_2'); -var _emscripten_bind_CharVector_size_0 = Module['_emscripten_bind_CharVector_size_0'] = makeInvalidEarlyAccess('_emscripten_bind_CharVector_size_0'); -var _emscripten_bind_CharVector___destroy___0 = Module['_emscripten_bind_CharVector___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_CharVector___destroy___0'); -var _emscripten_bind_IntVector_IntVector_0 = Module['_emscripten_bind_IntVector_IntVector_0'] = makeInvalidEarlyAccess('_emscripten_bind_IntVector_IntVector_0'); -var _emscripten_bind_IntVector_IntVector_1 = Module['_emscripten_bind_IntVector_IntVector_1'] = makeInvalidEarlyAccess('_emscripten_bind_IntVector_IntVector_1'); -var _emscripten_bind_IntVector_resize_1 = Module['_emscripten_bind_IntVector_resize_1'] = makeInvalidEarlyAccess('_emscripten_bind_IntVector_resize_1'); -var _emscripten_bind_IntVector_get_1 = Module['_emscripten_bind_IntVector_get_1'] = makeInvalidEarlyAccess('_emscripten_bind_IntVector_get_1'); -var _emscripten_bind_IntVector_set_2 = Module['_emscripten_bind_IntVector_set_2'] = makeInvalidEarlyAccess('_emscripten_bind_IntVector_set_2'); -var _emscripten_bind_IntVector_size_0 = Module['_emscripten_bind_IntVector_size_0'] = makeInvalidEarlyAccess('_emscripten_bind_IntVector_size_0'); -var _emscripten_bind_IntVector___destroy___0 = Module['_emscripten_bind_IntVector___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_IntVector___destroy___0'); -var _emscripten_bind_DoubleVector_DoubleVector_0 = Module['_emscripten_bind_DoubleVector_DoubleVector_0'] = makeInvalidEarlyAccess('_emscripten_bind_DoubleVector_DoubleVector_0'); -var _emscripten_bind_DoubleVector_DoubleVector_1 = Module['_emscripten_bind_DoubleVector_DoubleVector_1'] = makeInvalidEarlyAccess('_emscripten_bind_DoubleVector_DoubleVector_1'); -var _emscripten_bind_DoubleVector_resize_1 = Module['_emscripten_bind_DoubleVector_resize_1'] = makeInvalidEarlyAccess('_emscripten_bind_DoubleVector_resize_1'); -var _emscripten_bind_DoubleVector_get_1 = Module['_emscripten_bind_DoubleVector_get_1'] = makeInvalidEarlyAccess('_emscripten_bind_DoubleVector_get_1'); -var _emscripten_bind_DoubleVector_set_2 = Module['_emscripten_bind_DoubleVector_set_2'] = makeInvalidEarlyAccess('_emscripten_bind_DoubleVector_set_2'); -var _emscripten_bind_DoubleVector_size_0 = Module['_emscripten_bind_DoubleVector_size_0'] = makeInvalidEarlyAccess('_emscripten_bind_DoubleVector_size_0'); -var _emscripten_bind_DoubleVector___destroy___0 = Module['_emscripten_bind_DoubleVector___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_DoubleVector___destroy___0'); -var _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0 = Module['_emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0'); -var _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1 = Module['_emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1'); -var _emscripten_bind_SpeciesMasterTableRecordVector_resize_1 = Module['_emscripten_bind_SpeciesMasterTableRecordVector_resize_1'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecordVector_resize_1'); -var _emscripten_bind_SpeciesMasterTableRecordVector_get_1 = Module['_emscripten_bind_SpeciesMasterTableRecordVector_get_1'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecordVector_get_1'); -var _emscripten_bind_SpeciesMasterTableRecordVector_set_2 = Module['_emscripten_bind_SpeciesMasterTableRecordVector_set_2'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecordVector_set_2'); -var _emscripten_bind_SpeciesMasterTableRecordVector_size_0 = Module['_emscripten_bind_SpeciesMasterTableRecordVector_size_0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecordVector_size_0'); -var _emscripten_bind_SpeciesMasterTableRecordVector___destroy___0 = Module['_emscripten_bind_SpeciesMasterTableRecordVector___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecordVector___destroy___0'); -var _emscripten_bind_AreaUnits_toBaseUnits_2 = Module['_emscripten_bind_AreaUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_AreaUnits_toBaseUnits_2'); -var _emscripten_bind_AreaUnits_fromBaseUnits_2 = Module['_emscripten_bind_AreaUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_AreaUnits_fromBaseUnits_2'); -var _emscripten_bind_AreaUnits___destroy___0 = Module['_emscripten_bind_AreaUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_AreaUnits___destroy___0'); -var _emscripten_bind_BasalAreaUnits_toBaseUnits_2 = Module['_emscripten_bind_BasalAreaUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_BasalAreaUnits_toBaseUnits_2'); -var _emscripten_bind_BasalAreaUnits_fromBaseUnits_2 = Module['_emscripten_bind_BasalAreaUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_BasalAreaUnits_fromBaseUnits_2'); -var _emscripten_bind_BasalAreaUnits___destroy___0 = Module['_emscripten_bind_BasalAreaUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_BasalAreaUnits___destroy___0'); -var _emscripten_bind_FractionUnits_toBaseUnits_2 = Module['_emscripten_bind_FractionUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_FractionUnits_toBaseUnits_2'); -var _emscripten_bind_FractionUnits_fromBaseUnits_2 = Module['_emscripten_bind_FractionUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_FractionUnits_fromBaseUnits_2'); -var _emscripten_bind_FractionUnits___destroy___0 = Module['_emscripten_bind_FractionUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_FractionUnits___destroy___0'); -var _emscripten_bind_LengthUnits_toBaseUnits_2 = Module['_emscripten_bind_LengthUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_LengthUnits_toBaseUnits_2'); -var _emscripten_bind_LengthUnits_fromBaseUnits_2 = Module['_emscripten_bind_LengthUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_LengthUnits_fromBaseUnits_2'); -var _emscripten_bind_LengthUnits___destroy___0 = Module['_emscripten_bind_LengthUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_LengthUnits___destroy___0'); -var _emscripten_bind_LoadingUnits_toBaseUnits_2 = Module['_emscripten_bind_LoadingUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_LoadingUnits_toBaseUnits_2'); -var _emscripten_bind_LoadingUnits_fromBaseUnits_2 = Module['_emscripten_bind_LoadingUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_LoadingUnits_fromBaseUnits_2'); -var _emscripten_bind_LoadingUnits___destroy___0 = Module['_emscripten_bind_LoadingUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_LoadingUnits___destroy___0'); -var _emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2 = Module['_emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2'); -var _emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2 = Module['_emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2'); -var _emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0 = Module['_emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0'); -var _emscripten_bind_SpeedUnits_toBaseUnits_2 = Module['_emscripten_bind_SpeedUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_SpeedUnits_toBaseUnits_2'); -var _emscripten_bind_SpeedUnits_fromBaseUnits_2 = Module['_emscripten_bind_SpeedUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_SpeedUnits_fromBaseUnits_2'); -var _emscripten_bind_SpeedUnits___destroy___0 = Module['_emscripten_bind_SpeedUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeedUnits___destroy___0'); -var _emscripten_bind_PressureUnits_toBaseUnits_2 = Module['_emscripten_bind_PressureUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_PressureUnits_toBaseUnits_2'); -var _emscripten_bind_PressureUnits_fromBaseUnits_2 = Module['_emscripten_bind_PressureUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_PressureUnits_fromBaseUnits_2'); -var _emscripten_bind_PressureUnits___destroy___0 = Module['_emscripten_bind_PressureUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_PressureUnits___destroy___0'); -var _emscripten_bind_SlopeUnits_toBaseUnits_2 = Module['_emscripten_bind_SlopeUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_SlopeUnits_toBaseUnits_2'); -var _emscripten_bind_SlopeUnits_fromBaseUnits_2 = Module['_emscripten_bind_SlopeUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_SlopeUnits_fromBaseUnits_2'); -var _emscripten_bind_SlopeUnits___destroy___0 = Module['_emscripten_bind_SlopeUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SlopeUnits___destroy___0'); -var _emscripten_bind_DensityUnits_toBaseUnits_2 = Module['_emscripten_bind_DensityUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_DensityUnits_toBaseUnits_2'); -var _emscripten_bind_DensityUnits_fromBaseUnits_2 = Module['_emscripten_bind_DensityUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_DensityUnits_fromBaseUnits_2'); -var _emscripten_bind_DensityUnits___destroy___0 = Module['_emscripten_bind_DensityUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_DensityUnits___destroy___0'); -var _emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2 = Module['_emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2'); -var _emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2 = Module['_emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2'); -var _emscripten_bind_HeatOfCombustionUnits___destroy___0 = Module['_emscripten_bind_HeatOfCombustionUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_HeatOfCombustionUnits___destroy___0'); -var _emscripten_bind_HeatSinkUnits_toBaseUnits_2 = Module['_emscripten_bind_HeatSinkUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_HeatSinkUnits_toBaseUnits_2'); -var _emscripten_bind_HeatSinkUnits_fromBaseUnits_2 = Module['_emscripten_bind_HeatSinkUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_HeatSinkUnits_fromBaseUnits_2'); -var _emscripten_bind_HeatSinkUnits___destroy___0 = Module['_emscripten_bind_HeatSinkUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_HeatSinkUnits___destroy___0'); -var _emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2 = Module['_emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2'); -var _emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2 = Module['_emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2'); -var _emscripten_bind_HeatPerUnitAreaUnits___destroy___0 = Module['_emscripten_bind_HeatPerUnitAreaUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_HeatPerUnitAreaUnits___destroy___0'); -var _emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2 = Module['_emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2'); -var _emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2 = Module['_emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2'); -var _emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0 = Module['_emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0'); -var _emscripten_bind_FirelineIntensityUnits_toBaseUnits_2 = Module['_emscripten_bind_FirelineIntensityUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_FirelineIntensityUnits_toBaseUnits_2'); -var _emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2 = Module['_emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2'); -var _emscripten_bind_FirelineIntensityUnits___destroy___0 = Module['_emscripten_bind_FirelineIntensityUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_FirelineIntensityUnits___destroy___0'); -var _emscripten_bind_TemperatureUnits_toBaseUnits_2 = Module['_emscripten_bind_TemperatureUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_TemperatureUnits_toBaseUnits_2'); -var _emscripten_bind_TemperatureUnits_fromBaseUnits_2 = Module['_emscripten_bind_TemperatureUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_TemperatureUnits_fromBaseUnits_2'); -var _emscripten_bind_TemperatureUnits___destroy___0 = Module['_emscripten_bind_TemperatureUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_TemperatureUnits___destroy___0'); -var _emscripten_bind_TimeUnits_toBaseUnits_2 = Module['_emscripten_bind_TimeUnits_toBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_TimeUnits_toBaseUnits_2'); -var _emscripten_bind_TimeUnits_fromBaseUnits_2 = Module['_emscripten_bind_TimeUnits_fromBaseUnits_2'] = makeInvalidEarlyAccess('_emscripten_bind_TimeUnits_fromBaseUnits_2'); -var _emscripten_bind_TimeUnits___destroy___0 = Module['_emscripten_bind_TimeUnits___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_TimeUnits___destroy___0'); -var _emscripten_bind_FireSize_getBackingSpreadRate_1 = Module['_emscripten_bind_FireSize_getBackingSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getBackingSpreadRate_1'); -var _emscripten_bind_FireSize_getEccentricity_0 = Module['_emscripten_bind_FireSize_getEccentricity_0'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getEccentricity_0'); -var _emscripten_bind_FireSize_getEllipticalA_3 = Module['_emscripten_bind_FireSize_getEllipticalA_3'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getEllipticalA_3'); -var _emscripten_bind_FireSize_getEllipticalB_3 = Module['_emscripten_bind_FireSize_getEllipticalB_3'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getEllipticalB_3'); -var _emscripten_bind_FireSize_getEllipticalC_3 = Module['_emscripten_bind_FireSize_getEllipticalC_3'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getEllipticalC_3'); -var _emscripten_bind_FireSize_getFireArea_4 = Module['_emscripten_bind_FireSize_getFireArea_4'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getFireArea_4'); -var _emscripten_bind_FireSize_getFireLength_3 = Module['_emscripten_bind_FireSize_getFireLength_3'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getFireLength_3'); -var _emscripten_bind_FireSize_getFireLengthToWidthRatio_0 = Module['_emscripten_bind_FireSize_getFireLengthToWidthRatio_0'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getFireLengthToWidthRatio_0'); -var _emscripten_bind_FireSize_getFirePerimeter_4 = Module['_emscripten_bind_FireSize_getFirePerimeter_4'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getFirePerimeter_4'); -var _emscripten_bind_FireSize_getFlankingSpreadRate_1 = Module['_emscripten_bind_FireSize_getFlankingSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getFlankingSpreadRate_1'); -var _emscripten_bind_FireSize_getHeadingToBackingRatio_0 = Module['_emscripten_bind_FireSize_getHeadingToBackingRatio_0'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getHeadingToBackingRatio_0'); -var _emscripten_bind_FireSize_getMaxFireWidth_3 = Module['_emscripten_bind_FireSize_getMaxFireWidth_3'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_getMaxFireWidth_3'); -var _emscripten_bind_FireSize_calculateFireBasicDimensions_5 = Module['_emscripten_bind_FireSize_calculateFireBasicDimensions_5'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize_calculateFireBasicDimensions_5'); -var _emscripten_bind_FireSize___destroy___0 = Module['_emscripten_bind_FireSize___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_FireSize___destroy___0'); -var _emscripten_bind_SIGContainAdapter_SIGContainAdapter_0 = Module['_emscripten_bind_SIGContainAdapter_SIGContainAdapter_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_SIGContainAdapter_0'); -var _emscripten_bind_SIGContainAdapter_getContainmentStatus_0 = Module['_emscripten_bind_SIGContainAdapter_getContainmentStatus_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getContainmentStatus_0'); -var _emscripten_bind_SIGContainAdapter_getFirePerimeterX_0 = Module['_emscripten_bind_SIGContainAdapter_getFirePerimeterX_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFirePerimeterX_0'); -var _emscripten_bind_SIGContainAdapter_getFirePerimeterY_0 = Module['_emscripten_bind_SIGContainAdapter_getFirePerimeterY_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFirePerimeterY_0'); -var _emscripten_bind_SIGContainAdapter_getAttackDistance_1 = Module['_emscripten_bind_SIGContainAdapter_getAttackDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getAttackDistance_1'); -var _emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1 = Module['_emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1'); -var _emscripten_bind_SIGContainAdapter_getFinalCost_0 = Module['_emscripten_bind_SIGContainAdapter_getFinalCost_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFinalCost_0'); -var _emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1 = Module['_emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1'); -var _emscripten_bind_SIGContainAdapter_getFinalFireSize_1 = Module['_emscripten_bind_SIGContainAdapter_getFinalFireSize_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFinalFireSize_1'); -var _emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1 = Module['_emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1'); -var _emscripten_bind_SIGContainAdapter_getFinalProductionRate_1 = Module['_emscripten_bind_SIGContainAdapter_getFinalProductionRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFinalProductionRate_1'); -var _emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0 = Module['_emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0'); -var _emscripten_bind_SIGContainAdapter_getFireBackAtReport_0 = Module['_emscripten_bind_SIGContainAdapter_getFireBackAtReport_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFireBackAtReport_0'); -var _emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0 = Module['_emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0'); -var _emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0 = Module['_emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0'); -var _emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1 = Module['_emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1'); -var _emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0 = Module['_emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0'); -var _emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1 = Module['_emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1'); -var _emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1 = Module['_emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1'); -var _emscripten_bind_SIGContainAdapter_getReportSize_1 = Module['_emscripten_bind_SIGContainAdapter_getReportSize_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getReportSize_1'); -var _emscripten_bind_SIGContainAdapter_getReportRate_1 = Module['_emscripten_bind_SIGContainAdapter_getReportRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getReportRate_1'); -var _emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1 = Module['_emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1'); -var _emscripten_bind_SIGContainAdapter_getTactic_0 = Module['_emscripten_bind_SIGContainAdapter_getTactic_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getTactic_0'); -var _emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0 = Module['_emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0'); -var _emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1 = Module['_emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1'); -var _emscripten_bind_SIGContainAdapter_removeResourceAt_1 = Module['_emscripten_bind_SIGContainAdapter_removeResourceAt_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_removeResourceAt_1'); -var _emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1 = Module['_emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1'); -var _emscripten_bind_SIGContainAdapter_addResource_9 = Module['_emscripten_bind_SIGContainAdapter_addResource_9'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_addResource_9'); -var _emscripten_bind_SIGContainAdapter_doContainRun_0 = Module['_emscripten_bind_SIGContainAdapter_doContainRun_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_doContainRun_0'); -var _emscripten_bind_SIGContainAdapter_removeAllResources_0 = Module['_emscripten_bind_SIGContainAdapter_removeAllResources_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_removeAllResources_0'); -var _emscripten_bind_SIGContainAdapter_setAttackDistance_2 = Module['_emscripten_bind_SIGContainAdapter_setAttackDistance_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setAttackDistance_2'); -var _emscripten_bind_SIGContainAdapter_setContainMode_1 = Module['_emscripten_bind_SIGContainAdapter_setContainMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setContainMode_1'); -var _emscripten_bind_SIGContainAdapter_setFireStartTime_1 = Module['_emscripten_bind_SIGContainAdapter_setFireStartTime_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setFireStartTime_1'); -var _emscripten_bind_SIGContainAdapter_setLwRatio_1 = Module['_emscripten_bind_SIGContainAdapter_setLwRatio_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setLwRatio_1'); -var _emscripten_bind_SIGContainAdapter_setMaxFireSize_1 = Module['_emscripten_bind_SIGContainAdapter_setMaxFireSize_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setMaxFireSize_1'); -var _emscripten_bind_SIGContainAdapter_setMaxFireTime_1 = Module['_emscripten_bind_SIGContainAdapter_setMaxFireTime_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setMaxFireTime_1'); -var _emscripten_bind_SIGContainAdapter_setMaxSteps_1 = Module['_emscripten_bind_SIGContainAdapter_setMaxSteps_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setMaxSteps_1'); -var _emscripten_bind_SIGContainAdapter_setMinSteps_1 = Module['_emscripten_bind_SIGContainAdapter_setMinSteps_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setMinSteps_1'); -var _emscripten_bind_SIGContainAdapter_setReportRate_2 = Module['_emscripten_bind_SIGContainAdapter_setReportRate_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setReportRate_2'); -var _emscripten_bind_SIGContainAdapter_setReportSize_2 = Module['_emscripten_bind_SIGContainAdapter_setReportSize_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setReportSize_2'); -var _emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2 = Module['_emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2'); -var _emscripten_bind_SIGContainAdapter_setResourceDuration_2 = Module['_emscripten_bind_SIGContainAdapter_setResourceDuration_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setResourceDuration_2'); -var _emscripten_bind_SIGContainAdapter_setRetry_1 = Module['_emscripten_bind_SIGContainAdapter_setRetry_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setRetry_1'); -var _emscripten_bind_SIGContainAdapter_setTactic_1 = Module['_emscripten_bind_SIGContainAdapter_setTactic_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter_setTactic_1'); -var _emscripten_bind_SIGContainAdapter___destroy___0 = Module['_emscripten_bind_SIGContainAdapter___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGContainAdapter___destroy___0'); -var _emscripten_bind_SIGIgnite_SIGIgnite_0 = Module['_emscripten_bind_SIGIgnite_SIGIgnite_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_SIGIgnite_0'); -var _emscripten_bind_SIGIgnite_initializeMembers_0 = Module['_emscripten_bind_SIGIgnite_initializeMembers_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_initializeMembers_0'); -var _emscripten_bind_SIGIgnite_getFuelBedType_0 = Module['_emscripten_bind_SIGIgnite_getFuelBedType_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getFuelBedType_0'); -var _emscripten_bind_SIGIgnite_getLightningChargeType_0 = Module['_emscripten_bind_SIGIgnite_getLightningChargeType_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getLightningChargeType_0'); -var _emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0 = Module['_emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0'); -var _emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1 = Module['_emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1'); -var _emscripten_bind_SIGIgnite_setAirTemperature_2 = Module['_emscripten_bind_SIGIgnite_setAirTemperature_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_setAirTemperature_2'); -var _emscripten_bind_SIGIgnite_setDuffDepth_2 = Module['_emscripten_bind_SIGIgnite_setDuffDepth_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_setDuffDepth_2'); -var _emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1 = Module['_emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1'); -var _emscripten_bind_SIGIgnite_setLightningChargeType_1 = Module['_emscripten_bind_SIGIgnite_setLightningChargeType_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_setLightningChargeType_1'); -var _emscripten_bind_SIGIgnite_setMoistureHundredHour_2 = Module['_emscripten_bind_SIGIgnite_setMoistureHundredHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_setMoistureHundredHour_2'); -var _emscripten_bind_SIGIgnite_setMoistureOneHour_2 = Module['_emscripten_bind_SIGIgnite_setMoistureOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_setMoistureOneHour_2'); -var _emscripten_bind_SIGIgnite_setSunShade_2 = Module['_emscripten_bind_SIGIgnite_setSunShade_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_setSunShade_2'); -var _emscripten_bind_SIGIgnite_updateIgniteInputs_11 = Module['_emscripten_bind_SIGIgnite_updateIgniteInputs_11'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_updateIgniteInputs_11'); -var _emscripten_bind_SIGIgnite_getAirTemperature_1 = Module['_emscripten_bind_SIGIgnite_getAirTemperature_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getAirTemperature_1'); -var _emscripten_bind_SIGIgnite_getDuffDepth_1 = Module['_emscripten_bind_SIGIgnite_getDuffDepth_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getDuffDepth_1'); -var _emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1 = Module['_emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1'); -var _emscripten_bind_SIGIgnite_getFuelTemperature_1 = Module['_emscripten_bind_SIGIgnite_getFuelTemperature_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getFuelTemperature_1'); -var _emscripten_bind_SIGIgnite_getMoistureHundredHour_1 = Module['_emscripten_bind_SIGIgnite_getMoistureHundredHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getMoistureHundredHour_1'); -var _emscripten_bind_SIGIgnite_getMoistureOneHour_1 = Module['_emscripten_bind_SIGIgnite_getMoistureOneHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getMoistureOneHour_1'); -var _emscripten_bind_SIGIgnite_getSunShade_1 = Module['_emscripten_bind_SIGIgnite_getSunShade_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_getSunShade_1'); -var _emscripten_bind_SIGIgnite_isFuelDepthNeeded_0 = Module['_emscripten_bind_SIGIgnite_isFuelDepthNeeded_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite_isFuelDepthNeeded_0'); -var _emscripten_bind_SIGIgnite___destroy___0 = Module['_emscripten_bind_SIGIgnite___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGIgnite___destroy___0'); -var _emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0 = Module['_emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0'); -var _emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1 = Module['_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1'); -var _emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1 = Module['_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1'); -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2'); -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2'); -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2'); -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2'); -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2'); -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2'); -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2'); -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2'); -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2'); -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2'); -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1'); -var _emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0 = Module['_emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0'); -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1'); -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1'); -var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1 = Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1'); -var _emscripten_bind_SIGMoistureScenarios___destroy___0 = Module['_emscripten_bind_SIGMoistureScenarios___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMoistureScenarios___destroy___0'); -var _emscripten_bind_SIGSpot_SIGSpot_0 = Module['_emscripten_bind_SIGSpot_SIGSpot_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_SIGSpot_0'); -var _emscripten_bind_SIGSpot_getDownwindCanopyMode_0 = Module['_emscripten_bind_SIGSpot_getDownwindCanopyMode_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getDownwindCanopyMode_0'); -var _emscripten_bind_SIGSpot_getLocation_0 = Module['_emscripten_bind_SIGSpot_getLocation_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getLocation_0'); -var _emscripten_bind_SIGSpot_getTreeSpecies_0 = Module['_emscripten_bind_SIGSpot_getTreeSpecies_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getTreeSpecies_0'); -var _emscripten_bind_SIGSpot_getBurningPileFlameHeight_1 = Module['_emscripten_bind_SIGSpot_getBurningPileFlameHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getBurningPileFlameHeight_1'); -var _emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1 = Module['_emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1'); -var _emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1 = Module['_emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1'); -var _emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1 = Module['_emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1'); -var _emscripten_bind_SIGSpot_getDBH_1 = Module['_emscripten_bind_SIGSpot_getDBH_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getDBH_1'); -var _emscripten_bind_SIGSpot_getDownwindCoverHeight_1 = Module['_emscripten_bind_SIGSpot_getDownwindCoverHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getDownwindCoverHeight_1'); -var _emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1 = Module['_emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1'); -var _emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1 = Module['_emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1'); -var _emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0 = Module['_emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0'); -var _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1 = Module['_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1'); -var _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1 = Module['_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1'); -var _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1 = Module['_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1'); -var _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1 = Module['_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1'); -var _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1 = Module['_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1'); -var _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1 = Module['_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1'); -var _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1 = Module['_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1'); -var _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1 = Module['_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1'); -var _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1 = Module['_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1'); -var _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1 = Module['_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1'); -var _emscripten_bind_SIGSpot_getRidgeToValleyDistance_1 = Module['_emscripten_bind_SIGSpot_getRidgeToValleyDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getRidgeToValleyDistance_1'); -var _emscripten_bind_SIGSpot_getRidgeToValleyElevation_1 = Module['_emscripten_bind_SIGSpot_getRidgeToValleyElevation_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getRidgeToValleyElevation_1'); -var _emscripten_bind_SIGSpot_getSurfaceFlameLength_1 = Module['_emscripten_bind_SIGSpot_getSurfaceFlameLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getSurfaceFlameLength_1'); -var _emscripten_bind_SIGSpot_getTreeHeight_1 = Module['_emscripten_bind_SIGSpot_getTreeHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getTreeHeight_1'); -var _emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1 = Module['_emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1'); -var _emscripten_bind_SIGSpot_getTorchingTrees_0 = Module['_emscripten_bind_SIGSpot_getTorchingTrees_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_getTorchingTrees_0'); -var _emscripten_bind_SIGSpot_calculateAll_0 = Module['_emscripten_bind_SIGSpot_calculateAll_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_calculateAll_0'); -var _emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0 = Module['_emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0'); -var _emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0 = Module['_emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0'); -var _emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0 = Module['_emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0'); -var _emscripten_bind_SIGSpot_initializeMembers_0 = Module['_emscripten_bind_SIGSpot_initializeMembers_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_initializeMembers_0'); -var _emscripten_bind_SIGSpot_setActiveCrownFlameLength_2 = Module['_emscripten_bind_SIGSpot_setActiveCrownFlameLength_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setActiveCrownFlameLength_2'); -var _emscripten_bind_SIGSpot_setBurningPileFlameHeight_2 = Module['_emscripten_bind_SIGSpot_setBurningPileFlameHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setBurningPileFlameHeight_2'); -var _emscripten_bind_SIGSpot_setDBH_2 = Module['_emscripten_bind_SIGSpot_setDBH_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setDBH_2'); -var _emscripten_bind_SIGSpot_setDownwindCanopyMode_1 = Module['_emscripten_bind_SIGSpot_setDownwindCanopyMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setDownwindCanopyMode_1'); -var _emscripten_bind_SIGSpot_setDownwindCoverHeight_2 = Module['_emscripten_bind_SIGSpot_setDownwindCoverHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setDownwindCoverHeight_2'); -var _emscripten_bind_SIGSpot_setFireType_1 = Module['_emscripten_bind_SIGSpot_setFireType_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setFireType_1'); -var _emscripten_bind_SIGSpot_setFlameLength_2 = Module['_emscripten_bind_SIGSpot_setFlameLength_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setFlameLength_2'); -var _emscripten_bind_SIGSpot_setFirelineIntensity_2 = Module['_emscripten_bind_SIGSpot_setFirelineIntensity_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setFirelineIntensity_2'); -var _emscripten_bind_SIGSpot_setLocation_1 = Module['_emscripten_bind_SIGSpot_setLocation_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setLocation_1'); -var _emscripten_bind_SIGSpot_setRidgeToValleyDistance_2 = Module['_emscripten_bind_SIGSpot_setRidgeToValleyDistance_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setRidgeToValleyDistance_2'); -var _emscripten_bind_SIGSpot_setRidgeToValleyElevation_2 = Module['_emscripten_bind_SIGSpot_setRidgeToValleyElevation_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setRidgeToValleyElevation_2'); -var _emscripten_bind_SIGSpot_setTorchingTrees_1 = Module['_emscripten_bind_SIGSpot_setTorchingTrees_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setTorchingTrees_1'); -var _emscripten_bind_SIGSpot_setTreeHeight_2 = Module['_emscripten_bind_SIGSpot_setTreeHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setTreeHeight_2'); -var _emscripten_bind_SIGSpot_setTreeSpecies_1 = Module['_emscripten_bind_SIGSpot_setTreeSpecies_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setTreeSpecies_1'); -var _emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2 = Module['_emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2'); -var _emscripten_bind_SIGSpot_setWindSpeed_2 = Module['_emscripten_bind_SIGSpot_setWindSpeed_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setWindSpeed_2'); -var _emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3 = Module['_emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3'); -var _emscripten_bind_SIGSpot_setWindHeightInputMode_1 = Module['_emscripten_bind_SIGSpot_setWindHeightInputMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_setWindHeightInputMode_1'); -var _emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12 = Module['_emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12'); -var _emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12 = Module['_emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12'); -var _emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16 = Module['_emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16'); -var _emscripten_bind_SIGSpot___destroy___0 = Module['_emscripten_bind_SIGSpot___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSpot___destroy___0'); -var _emscripten_bind_SIGFuelModels_SIGFuelModels_0 = Module['_emscripten_bind_SIGFuelModels_SIGFuelModels_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_SIGFuelModels_0'); -var _emscripten_bind_SIGFuelModels_SIGFuelModels_1 = Module['_emscripten_bind_SIGFuelModels_SIGFuelModels_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_SIGFuelModels_1'); -var _emscripten_bind_SIGFuelModels_equal_1 = Module['_emscripten_bind_SIGFuelModels_equal_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_equal_1'); -var _emscripten_bind_SIGFuelModels_clearCustomFuelModel_1 = Module['_emscripten_bind_SIGFuelModels_clearCustomFuelModel_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_clearCustomFuelModel_1'); -var _emscripten_bind_SIGFuelModels_getIsDynamic_1 = Module['_emscripten_bind_SIGFuelModels_getIsDynamic_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getIsDynamic_1'); -var _emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1 = Module['_emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1'); -var _emscripten_bind_SIGFuelModels_isFuelModelDefined_1 = Module['_emscripten_bind_SIGFuelModels_isFuelModelDefined_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_isFuelModelDefined_1'); -var _emscripten_bind_SIGFuelModels_isFuelModelReserved_1 = Module['_emscripten_bind_SIGFuelModels_isFuelModelReserved_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_isFuelModelReserved_1'); -var _emscripten_bind_SIGFuelModels_setCustomFuelModel_21 = Module['_emscripten_bind_SIGFuelModels_setCustomFuelModel_21'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_setCustomFuelModel_21'); -var _emscripten_bind_SIGFuelModels_getFuelCode_1 = Module['_emscripten_bind_SIGFuelModels_getFuelCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getFuelCode_1'); -var _emscripten_bind_SIGFuelModels_getFuelName_1 = Module['_emscripten_bind_SIGFuelModels_getFuelName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getFuelName_1'); -var _emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2 = Module['_emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2'); -var _emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2 = Module['_emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2'); -var _emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2 = Module['_emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2'); -var _emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2 = Module['_emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2'); -var _emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2 = Module['_emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2'); -var _emscripten_bind_SIGFuelModels_getFuelbedDepth_2 = Module['_emscripten_bind_SIGFuelModels_getFuelbedDepth_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getFuelbedDepth_2'); -var _emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2 = Module['_emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2'); -var _emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2 = Module['_emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2'); -var _emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2 = Module['_emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2'); -var _emscripten_bind_SIGFuelModels_getSavrLiveWoody_2 = Module['_emscripten_bind_SIGFuelModels_getSavrLiveWoody_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getSavrLiveWoody_2'); -var _emscripten_bind_SIGFuelModels_getSavrOneHour_2 = Module['_emscripten_bind_SIGFuelModels_getSavrOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getSavrOneHour_2'); -var _emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2 = Module['_emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2'); -var _emscripten_bind_SIGFuelModels___destroy___0 = Module['_emscripten_bind_SIGFuelModels___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFuelModels___destroy___0'); -var _emscripten_bind_SIGSurface_SIGSurface_1 = Module['_emscripten_bind_SIGSurface_SIGSurface_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_SIGSurface_1'); -var _emscripten_bind_SIGSurface_getAspenFireSeverity_0 = Module['_emscripten_bind_SIGSurface_getAspenFireSeverity_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenFireSeverity_0'); -var _emscripten_bind_SIGSurface_getChaparralFuelType_0 = Module['_emscripten_bind_SIGSurface_getChaparralFuelType_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralFuelType_0'); -var _emscripten_bind_SIGSurface_getMoistureInputMode_0 = Module['_emscripten_bind_SIGSurface_getMoistureInputMode_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureInputMode_0'); -var _emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0 = Module['_emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0'); -var _emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0 = Module['_emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0'); -var _emscripten_bind_SIGSurface_getWindHeightInputMode_0 = Module['_emscripten_bind_SIGSurface_getWindHeightInputMode_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getWindHeightInputMode_0'); -var _emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0 = Module['_emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0'); -var _emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0 = Module['_emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0'); -var _emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1 = Module['_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1'); -var _emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1 = Module['_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1'); -var _emscripten_bind_SIGSurface_getIsUsingChaparral_0 = Module['_emscripten_bind_SIGSurface_getIsUsingChaparral_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getIsUsingChaparral_0'); -var _emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0 = Module['_emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0'); -var _emscripten_bind_SIGSurface_getIsUsingWesternAspen_0 = Module['_emscripten_bind_SIGSurface_getIsUsingWesternAspen_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getIsUsingWesternAspen_0'); -var _emscripten_bind_SIGSurface_isAllFuelLoadZero_1 = Module['_emscripten_bind_SIGSurface_isAllFuelLoadZero_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_isAllFuelLoadZero_1'); -var _emscripten_bind_SIGSurface_isFuelDynamic_1 = Module['_emscripten_bind_SIGSurface_isFuelDynamic_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_isFuelDynamic_1'); -var _emscripten_bind_SIGSurface_isFuelModelDefined_1 = Module['_emscripten_bind_SIGSurface_isFuelModelDefined_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_isFuelModelDefined_1'); -var _emscripten_bind_SIGSurface_isFuelModelReserved_1 = Module['_emscripten_bind_SIGSurface_isFuelModelReserved_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_isFuelModelReserved_1'); -var _emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1 = Module['_emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1'); -var _emscripten_bind_SIGSurface_isUsingTwoFuelModels_0 = Module['_emscripten_bind_SIGSurface_isUsingTwoFuelModels_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_isUsingTwoFuelModels_0'); -var _emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1 = Module['_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1'); -var _emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1 = Module['_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1'); -var _emscripten_bind_SIGSurface_calculateFlameLength_3 = Module['_emscripten_bind_SIGSurface_calculateFlameLength_3'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_calculateFlameLength_3'); -var _emscripten_bind_SIGSurface_getAgeOfRough_0 = Module['_emscripten_bind_SIGSurface_getAgeOfRough_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAgeOfRough_0'); -var _emscripten_bind_SIGSurface_getAspect_0 = Module['_emscripten_bind_SIGSurface_getAspect_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspect_0'); -var _emscripten_bind_SIGSurface_getAspenCuringLevel_1 = Module['_emscripten_bind_SIGSurface_getAspenCuringLevel_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenCuringLevel_1'); -var _emscripten_bind_SIGSurface_getAspenDBH_1 = Module['_emscripten_bind_SIGSurface_getAspenDBH_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenDBH_1'); -var _emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1 = Module['_emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1'); -var _emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1 = Module['_emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1'); -var _emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1 = Module['_emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1'); -var _emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1 = Module['_emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1'); -var _emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1 = Module['_emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1'); -var _emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1 = Module['_emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1'); -var _emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1 = Module['_emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1'); -var _emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1 = Module['_emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1'); -var _emscripten_bind_SIGSurface_getBackingFirelineIntensity_1 = Module['_emscripten_bind_SIGSurface_getBackingFirelineIntensity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getBackingFirelineIntensity_1'); -var _emscripten_bind_SIGSurface_getBackingFlameLength_1 = Module['_emscripten_bind_SIGSurface_getBackingFlameLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getBackingFlameLength_1'); -var _emscripten_bind_SIGSurface_getBackingSpreadDistance_1 = Module['_emscripten_bind_SIGSurface_getBackingSpreadDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getBackingSpreadDistance_1'); -var _emscripten_bind_SIGSurface_getBackingSpreadRate_1 = Module['_emscripten_bind_SIGSurface_getBackingSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getBackingSpreadRate_1'); -var _emscripten_bind_SIGSurface_getBulkDensity_1 = Module['_emscripten_bind_SIGSurface_getBulkDensity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getBulkDensity_1'); -var _emscripten_bind_SIGSurface_getCanopyCover_1 = Module['_emscripten_bind_SIGSurface_getCanopyCover_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getCanopyCover_1'); -var _emscripten_bind_SIGSurface_getCanopyHeight_1 = Module['_emscripten_bind_SIGSurface_getCanopyHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getCanopyHeight_1'); -var _emscripten_bind_SIGSurface_getChaparralAge_1 = Module['_emscripten_bind_SIGSurface_getChaparralAge_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralAge_1'); -var _emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0 = Module['_emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0'); -var _emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0 = Module['_emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0'); -var _emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1 = Module['_emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1'); -var _emscripten_bind_SIGSurface_getChaparralDensity_3 = Module['_emscripten_bind_SIGSurface_getChaparralDensity_3'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralDensity_3'); -var _emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1 = Module['_emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1'); -var _emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0 = Module['_emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0'); -var _emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3 = Module['_emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3'); -var _emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1 = Module['_emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1'); -var _emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1'); -var _emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1'); -var _emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1'); -var _emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1'); -var _emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1'); -var _emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1'); -var _emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1'); -var _emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1'); -var _emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1 = Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1'); -var _emscripten_bind_SIGSurface_getChaparralMoisture_3 = Module['_emscripten_bind_SIGSurface_getChaparralMoisture_3'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralMoisture_3'); -var _emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1'); -var _emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1'); -var _emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1'); -var _emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2 = Module['_emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2'); -var _emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1 = Module['_emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1'); -var _emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1 = Module['_emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1'); -var _emscripten_bind_SIGSurface_getCharacteristicSAVR_1 = Module['_emscripten_bind_SIGSurface_getCharacteristicSAVR_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getCharacteristicSAVR_1'); -var _emscripten_bind_SIGSurface_getCrownRatio_1 = Module['_emscripten_bind_SIGSurface_getCrownRatio_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getCrownRatio_1'); -var _emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0 = Module['_emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0'); -var _emscripten_bind_SIGSurface_getDirectionOfInterest_0 = Module['_emscripten_bind_SIGSurface_getDirectionOfInterest_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getDirectionOfInterest_0'); -var _emscripten_bind_SIGSurface_getDirectionOfBacking_0 = Module['_emscripten_bind_SIGSurface_getDirectionOfBacking_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getDirectionOfBacking_0'); -var _emscripten_bind_SIGSurface_getDirectionOfFlanking_0 = Module['_emscripten_bind_SIGSurface_getDirectionOfFlanking_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getDirectionOfFlanking_0'); -var _emscripten_bind_SIGSurface_getElapsedTime_1 = Module['_emscripten_bind_SIGSurface_getElapsedTime_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getElapsedTime_1'); -var _emscripten_bind_SIGSurface_getEllipticalA_1 = Module['_emscripten_bind_SIGSurface_getEllipticalA_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getEllipticalA_1'); -var _emscripten_bind_SIGSurface_getEllipticalB_1 = Module['_emscripten_bind_SIGSurface_getEllipticalB_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getEllipticalB_1'); -var _emscripten_bind_SIGSurface_getEllipticalC_1 = Module['_emscripten_bind_SIGSurface_getEllipticalC_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getEllipticalC_1'); -var _emscripten_bind_SIGSurface_getFireLength_1 = Module['_emscripten_bind_SIGSurface_getFireLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFireLength_1'); -var _emscripten_bind_SIGSurface_getMaxFireWidth_1 = Module['_emscripten_bind_SIGSurface_getMaxFireWidth_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMaxFireWidth_1'); -var _emscripten_bind_SIGSurface_getFireArea_1 = Module['_emscripten_bind_SIGSurface_getFireArea_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFireArea_1'); -var _emscripten_bind_SIGSurface_getFireEccentricity_0 = Module['_emscripten_bind_SIGSurface_getFireEccentricity_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFireEccentricity_0'); -var _emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0 = Module['_emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0'); -var _emscripten_bind_SIGSurface_getFirePerimeter_1 = Module['_emscripten_bind_SIGSurface_getFirePerimeter_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFirePerimeter_1'); -var _emscripten_bind_SIGSurface_getFirelineIntensity_1 = Module['_emscripten_bind_SIGSurface_getFirelineIntensity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFirelineIntensity_1'); -var _emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1 = Module['_emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1'); -var _emscripten_bind_SIGSurface_getFlameLength_1 = Module['_emscripten_bind_SIGSurface_getFlameLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFlameLength_1'); -var _emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1 = Module['_emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1'); -var _emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1 = Module['_emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1'); -var _emscripten_bind_SIGSurface_getFlankingFlameLength_1 = Module['_emscripten_bind_SIGSurface_getFlankingFlameLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFlankingFlameLength_1'); -var _emscripten_bind_SIGSurface_getFlankingSpreadRate_1 = Module['_emscripten_bind_SIGSurface_getFlankingSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFlankingSpreadRate_1'); -var _emscripten_bind_SIGSurface_getFlankingSpreadDistance_1 = Module['_emscripten_bind_SIGSurface_getFlankingSpreadDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFlankingSpreadDistance_1'); -var _emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2 = Module['_emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2'); -var _emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2 = Module['_emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2'); -var _emscripten_bind_SIGSurface_getFuelLoadHundredHour_2 = Module['_emscripten_bind_SIGSurface_getFuelLoadHundredHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelLoadHundredHour_2'); -var _emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2 = Module['_emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2'); -var _emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2 = Module['_emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2'); -var _emscripten_bind_SIGSurface_getFuelLoadOneHour_2 = Module['_emscripten_bind_SIGSurface_getFuelLoadOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelLoadOneHour_2'); -var _emscripten_bind_SIGSurface_getFuelLoadTenHour_2 = Module['_emscripten_bind_SIGSurface_getFuelLoadTenHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelLoadTenHour_2'); -var _emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2 = Module['_emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2'); -var _emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2 = Module['_emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2'); -var _emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2 = Module['_emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2'); -var _emscripten_bind_SIGSurface_getFuelSavrOneHour_2 = Module['_emscripten_bind_SIGSurface_getFuelSavrOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelSavrOneHour_2'); -var _emscripten_bind_SIGSurface_getFuelbedDepth_2 = Module['_emscripten_bind_SIGSurface_getFuelbedDepth_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelbedDepth_2'); -var _emscripten_bind_SIGSurface_getHeadingSpreadRate_1 = Module['_emscripten_bind_SIGSurface_getHeadingSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getHeadingSpreadRate_1'); -var _emscripten_bind_SIGSurface_getHeadingToBackingRatio_0 = Module['_emscripten_bind_SIGSurface_getHeadingToBackingRatio_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getHeadingToBackingRatio_0'); -var _emscripten_bind_SIGSurface_getHeatPerUnitArea_1 = Module['_emscripten_bind_SIGSurface_getHeatPerUnitArea_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getHeatPerUnitArea_1'); -var _emscripten_bind_SIGSurface_getHeatSink_1 = Module['_emscripten_bind_SIGSurface_getHeatSink_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getHeatSink_1'); -var _emscripten_bind_SIGSurface_getHeatSource_1 = Module['_emscripten_bind_SIGSurface_getHeatSource_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getHeatSource_1'); -var _emscripten_bind_SIGSurface_getHeightOfUnderstory_1 = Module['_emscripten_bind_SIGSurface_getHeightOfUnderstory_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getHeightOfUnderstory_1'); -var _emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1 = Module['_emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1'); -var _emscripten_bind_SIGSurface_getMidflameWindspeed_1 = Module['_emscripten_bind_SIGSurface_getMidflameWindspeed_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMidflameWindspeed_1'); -var _emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1 = Module['_emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1'); -var _emscripten_bind_SIGSurface_getMoistureHundredHour_1 = Module['_emscripten_bind_SIGSurface_getMoistureHundredHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureHundredHour_1'); -var _emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1 = Module['_emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1'); -var _emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1 = Module['_emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1'); -var _emscripten_bind_SIGSurface_getMoistureLiveWoody_1 = Module['_emscripten_bind_SIGSurface_getMoistureLiveWoody_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureLiveWoody_1'); -var _emscripten_bind_SIGSurface_getMoistureOneHour_1 = Module['_emscripten_bind_SIGSurface_getMoistureOneHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureOneHour_1'); -var _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2'); -var _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2'); -var _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2'); -var _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2'); -var _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2'); -var _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2'); -var _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2'); -var _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2'); -var _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2'); -var _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2'); -var _emscripten_bind_SIGSurface_getMoistureTenHour_1 = Module['_emscripten_bind_SIGSurface_getMoistureTenHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureTenHour_1'); -var _emscripten_bind_SIGSurface_getOverstoryBasalArea_1 = Module['_emscripten_bind_SIGSurface_getOverstoryBasalArea_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getOverstoryBasalArea_1'); -var _emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1'); -var _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1'); -var _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1'); -var _emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1'); -var _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1'); -var _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1'); -var _emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1'); -var _emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1'); -var _emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1'); -var _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1'); -var _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1'); -var _emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1'); -var _emscripten_bind_SIGSurface_getReactionIntensity_1 = Module['_emscripten_bind_SIGSurface_getReactionIntensity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getReactionIntensity_1'); -var _emscripten_bind_SIGSurface_getResidenceTime_1 = Module['_emscripten_bind_SIGSurface_getResidenceTime_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getResidenceTime_1'); -var _emscripten_bind_SIGSurface_getSlope_1 = Module['_emscripten_bind_SIGSurface_getSlope_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getSlope_1'); -var _emscripten_bind_SIGSurface_getSlopeFactor_0 = Module['_emscripten_bind_SIGSurface_getSlopeFactor_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getSlopeFactor_0'); -var _emscripten_bind_SIGSurface_getSpreadDistance_1 = Module['_emscripten_bind_SIGSurface_getSpreadDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getSpreadDistance_1'); -var _emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1 = Module['_emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1'); -var _emscripten_bind_SIGSurface_getSpreadRate_1 = Module['_emscripten_bind_SIGSurface_getSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getSpreadRate_1'); -var _emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1 = Module['_emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1'); -var _emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1 = Module['_emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1'); -var _emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1'); -var _emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1'); -var _emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1 = Module['_emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1'); -var _emscripten_bind_SIGSurface_getWindDirection_0 = Module['_emscripten_bind_SIGSurface_getWindDirection_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getWindDirection_0'); -var _emscripten_bind_SIGSurface_getWindSpeed_2 = Module['_emscripten_bind_SIGSurface_getWindSpeed_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getWindSpeed_2'); -var _emscripten_bind_SIGSurface_getAspenFuelModelNumber_0 = Module['_emscripten_bind_SIGSurface_getAspenFuelModelNumber_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getAspenFuelModelNumber_0'); -var _emscripten_bind_SIGSurface_getFuelModelNumber_0 = Module['_emscripten_bind_SIGSurface_getFuelModelNumber_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelModelNumber_0'); -var _emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1'); -var _emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0 = Module['_emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0'); -var _emscripten_bind_SIGSurface_getFuelCode_1 = Module['_emscripten_bind_SIGSurface_getFuelCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelCode_1'); -var _emscripten_bind_SIGSurface_getFuelName_1 = Module['_emscripten_bind_SIGSurface_getFuelName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getFuelName_1'); -var _emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1'); -var _emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1'); -var _emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1 = Module['_emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1'); -var _emscripten_bind_SIGSurface_doSurfaceRun_0 = Module['_emscripten_bind_SIGSurface_doSurfaceRun_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_doSurfaceRun_0'); -var _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2 = Module['_emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2'); -var _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0 = Module['_emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0'); -var _emscripten_bind_SIGSurface_initializeMembers_0 = Module['_emscripten_bind_SIGSurface_initializeMembers_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_initializeMembers_0'); -var _emscripten_bind_SIGSurface_setAgeOfRough_1 = Module['_emscripten_bind_SIGSurface_setAgeOfRough_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setAgeOfRough_1'); -var _emscripten_bind_SIGSurface_setAspect_1 = Module['_emscripten_bind_SIGSurface_setAspect_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setAspect_1'); -var _emscripten_bind_SIGSurface_setAspenCuringLevel_2 = Module['_emscripten_bind_SIGSurface_setAspenCuringLevel_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setAspenCuringLevel_2'); -var _emscripten_bind_SIGSurface_setAspenDBH_2 = Module['_emscripten_bind_SIGSurface_setAspenDBH_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setAspenDBH_2'); -var _emscripten_bind_SIGSurface_setAspenFireSeverity_1 = Module['_emscripten_bind_SIGSurface_setAspenFireSeverity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setAspenFireSeverity_1'); -var _emscripten_bind_SIGSurface_setAspenFuelModelNumber_1 = Module['_emscripten_bind_SIGSurface_setAspenFuelModelNumber_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setAspenFuelModelNumber_1'); -var _emscripten_bind_SIGSurface_setCanopyCover_2 = Module['_emscripten_bind_SIGSurface_setCanopyCover_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setCanopyCover_2'); -var _emscripten_bind_SIGSurface_setCanopyHeight_2 = Module['_emscripten_bind_SIGSurface_setCanopyHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setCanopyHeight_2'); -var _emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2 = Module['_emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2'); -var _emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1 = Module['_emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1'); -var _emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1 = Module['_emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1'); -var _emscripten_bind_SIGSurface_setChaparralFuelType_1 = Module['_emscripten_bind_SIGSurface_setChaparralFuelType_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setChaparralFuelType_1'); -var _emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2 = Module['_emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2'); -var _emscripten_bind_SIGSurface_setCrownRatio_2 = Module['_emscripten_bind_SIGSurface_setCrownRatio_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setCrownRatio_2'); -var _emscripten_bind_SIGSurface_setDirectionOfInterest_1 = Module['_emscripten_bind_SIGSurface_setDirectionOfInterest_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setDirectionOfInterest_1'); -var _emscripten_bind_SIGSurface_setElapsedTime_2 = Module['_emscripten_bind_SIGSurface_setElapsedTime_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setElapsedTime_2'); -var _emscripten_bind_SIGSurface_setFirstFuelModelNumber_1 = Module['_emscripten_bind_SIGSurface_setFirstFuelModelNumber_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setFirstFuelModelNumber_1'); -var _emscripten_bind_SIGSurface_setFuelModels_1 = Module['_emscripten_bind_SIGSurface_setFuelModels_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setFuelModels_1'); -var _emscripten_bind_SIGSurface_setHeightOfUnderstory_2 = Module['_emscripten_bind_SIGSurface_setHeightOfUnderstory_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setHeightOfUnderstory_2'); -var _emscripten_bind_SIGSurface_setIsUsingChaparral_1 = Module['_emscripten_bind_SIGSurface_setIsUsingChaparral_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setIsUsingChaparral_1'); -var _emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1 = Module['_emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1'); -var _emscripten_bind_SIGSurface_setIsUsingWesternAspen_1 = Module['_emscripten_bind_SIGSurface_setIsUsingWesternAspen_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setIsUsingWesternAspen_1'); -var _emscripten_bind_SIGSurface_setMoistureDeadAggregate_2 = Module['_emscripten_bind_SIGSurface_setMoistureDeadAggregate_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureDeadAggregate_2'); -var _emscripten_bind_SIGSurface_setMoistureHundredHour_2 = Module['_emscripten_bind_SIGSurface_setMoistureHundredHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureHundredHour_2'); -var _emscripten_bind_SIGSurface_setMoistureInputMode_1 = Module['_emscripten_bind_SIGSurface_setMoistureInputMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureInputMode_1'); -var _emscripten_bind_SIGSurface_setMoistureLiveAggregate_2 = Module['_emscripten_bind_SIGSurface_setMoistureLiveAggregate_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureLiveAggregate_2'); -var _emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2 = Module['_emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2'); -var _emscripten_bind_SIGSurface_setMoistureLiveWoody_2 = Module['_emscripten_bind_SIGSurface_setMoistureLiveWoody_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureLiveWoody_2'); -var _emscripten_bind_SIGSurface_setMoistureOneHour_2 = Module['_emscripten_bind_SIGSurface_setMoistureOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureOneHour_2'); -var _emscripten_bind_SIGSurface_setMoistureScenarios_1 = Module['_emscripten_bind_SIGSurface_setMoistureScenarios_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureScenarios_1'); -var _emscripten_bind_SIGSurface_setMoistureTenHour_2 = Module['_emscripten_bind_SIGSurface_setMoistureTenHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setMoistureTenHour_2'); -var _emscripten_bind_SIGSurface_setOverstoryBasalArea_2 = Module['_emscripten_bind_SIGSurface_setOverstoryBasalArea_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setOverstoryBasalArea_2'); -var _emscripten_bind_SIGSurface_setPalmettoCoverage_2 = Module['_emscripten_bind_SIGSurface_setPalmettoCoverage_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setPalmettoCoverage_2'); -var _emscripten_bind_SIGSurface_setSecondFuelModelNumber_1 = Module['_emscripten_bind_SIGSurface_setSecondFuelModelNumber_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setSecondFuelModelNumber_1'); -var _emscripten_bind_SIGSurface_setSlope_2 = Module['_emscripten_bind_SIGSurface_setSlope_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setSlope_2'); -var _emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1 = Module['_emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1'); -var _emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1 = Module['_emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1'); -var _emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2 = Module['_emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2'); -var _emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1 = Module['_emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1'); -var _emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1 = Module['_emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1'); -var _emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1 = Module['_emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1'); -var _emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1 = Module['_emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1'); -var _emscripten_bind_SIGSurface_setWindDirection_1 = Module['_emscripten_bind_SIGSurface_setWindDirection_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setWindDirection_1'); -var _emscripten_bind_SIGSurface_setWindHeightInputMode_1 = Module['_emscripten_bind_SIGSurface_setWindHeightInputMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setWindHeightInputMode_1'); -var _emscripten_bind_SIGSurface_setWindSpeed_2 = Module['_emscripten_bind_SIGSurface_setWindSpeed_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setWindSpeed_2'); -var _emscripten_bind_SIGSurface_updateSurfaceInputs_21 = Module['_emscripten_bind_SIGSurface_updateSurfaceInputs_21'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_updateSurfaceInputs_21'); -var _emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25 = Module['_emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25'); -var _emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25 = Module['_emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25'); -var _emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26 = Module['_emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26'); -var _emscripten_bind_SIGSurface_setFuelModelNumber_1 = Module['_emscripten_bind_SIGSurface_setFuelModelNumber_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface_setFuelModelNumber_1'); -var _emscripten_bind_SIGSurface___destroy___0 = Module['_emscripten_bind_SIGSurface___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSurface___destroy___0'); -var _emscripten_bind_PalmettoGallberry_PalmettoGallberry_0 = Module['_emscripten_bind_PalmettoGallberry_PalmettoGallberry_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_PalmettoGallberry_0'); -var _emscripten_bind_PalmettoGallberry_initializeMembers_0 = Module['_emscripten_bind_PalmettoGallberry_initializeMembers_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_initializeMembers_0'); -var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2 = Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2'); -var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2 = Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2'); -var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2 = Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2'); -var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1 = Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1'); -var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2 = Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2'); -var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2 = Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2'); -var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3 = Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3'); -var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2 = Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2'); -var _emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0 = Module['_emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0'); -var _emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0 = Module['_emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0'); -var _emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0 = Module['_emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0'); -var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0 = Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0'); -var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0 = Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0'); -var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0 = Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0'); -var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0 = Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0'); -var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0 = Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0'); -var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0 = Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0'); -var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0 = Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0'); -var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0 = Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0'); -var _emscripten_bind_PalmettoGallberry___destroy___0 = Module['_emscripten_bind_PalmettoGallberry___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_PalmettoGallberry___destroy___0'); -var _emscripten_bind_WesternAspen_WesternAspen_0 = Module['_emscripten_bind_WesternAspen_WesternAspen_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_WesternAspen_0'); -var _emscripten_bind_WesternAspen_initializeMembers_0 = Module['_emscripten_bind_WesternAspen_initializeMembers_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_initializeMembers_0'); -var _emscripten_bind_WesternAspen_calculateAspenMortality_3 = Module['_emscripten_bind_WesternAspen_calculateAspenMortality_3'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_calculateAspenMortality_3'); -var _emscripten_bind_WesternAspen_getAspenFuelBedDepth_1 = Module['_emscripten_bind_WesternAspen_getAspenFuelBedDepth_1'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenFuelBedDepth_1'); -var _emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0 = Module['_emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0'); -var _emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0 = Module['_emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0'); -var _emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0 = Module['_emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0'); -var _emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0 = Module['_emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0'); -var _emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0 = Module['_emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0'); -var _emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0 = Module['_emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0'); -var _emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0 = Module['_emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0'); -var _emscripten_bind_WesternAspen_getAspenMortality_0 = Module['_emscripten_bind_WesternAspen_getAspenMortality_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenMortality_0'); -var _emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0 = Module['_emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0'); -var _emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0 = Module['_emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0'); -var _emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0 = Module['_emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0'); -var _emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0 = Module['_emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0'); -var _emscripten_bind_WesternAspen___destroy___0 = Module['_emscripten_bind_WesternAspen___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_WesternAspen___destroy___0'); -var _emscripten_bind_SIGCrown_SIGCrown_1 = Module['_emscripten_bind_SIGCrown_SIGCrown_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_SIGCrown_1'); -var _emscripten_bind_SIGCrown_getFireType_0 = Module['_emscripten_bind_SIGCrown_getFireType_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFireType_0'); -var _emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1 = Module['_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1'); -var _emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1 = Module['_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1'); -var _emscripten_bind_SIGCrown_isAllFuelLoadZero_1 = Module['_emscripten_bind_SIGCrown_isAllFuelLoadZero_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_isAllFuelLoadZero_1'); -var _emscripten_bind_SIGCrown_isFuelDynamic_1 = Module['_emscripten_bind_SIGCrown_isFuelDynamic_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_isFuelDynamic_1'); -var _emscripten_bind_SIGCrown_isFuelModelDefined_1 = Module['_emscripten_bind_SIGCrown_isFuelModelDefined_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_isFuelModelDefined_1'); -var _emscripten_bind_SIGCrown_isFuelModelReserved_1 = Module['_emscripten_bind_SIGCrown_isFuelModelReserved_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_isFuelModelReserved_1'); -var _emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1 = Module['_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1'); -var _emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1 = Module['_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1'); -var _emscripten_bind_SIGCrown_getAspect_0 = Module['_emscripten_bind_SIGCrown_getAspect_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getAspect_0'); -var _emscripten_bind_SIGCrown_getCanopyBaseHeight_1 = Module['_emscripten_bind_SIGCrown_getCanopyBaseHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCanopyBaseHeight_1'); -var _emscripten_bind_SIGCrown_getCanopyBulkDensity_1 = Module['_emscripten_bind_SIGCrown_getCanopyBulkDensity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCanopyBulkDensity_1'); -var _emscripten_bind_SIGCrown_getCanopyCover_1 = Module['_emscripten_bind_SIGCrown_getCanopyCover_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCanopyCover_1'); -var _emscripten_bind_SIGCrown_getCanopyHeight_1 = Module['_emscripten_bind_SIGCrown_getCanopyHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCanopyHeight_1'); -var _emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1 = Module['_emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1'); -var _emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1 = Module['_emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1'); -var _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1 = Module['_emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1'); -var _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1 = Module['_emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1'); -var _emscripten_bind_SIGCrown_getCrownFireActiveRatio_0 = Module['_emscripten_bind_SIGCrown_getCrownFireActiveRatio_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFireActiveRatio_0'); -var _emscripten_bind_SIGCrown_getCrownFireArea_1 = Module['_emscripten_bind_SIGCrown_getCrownFireArea_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFireArea_1'); -var _emscripten_bind_SIGCrown_getCrownFirePerimeter_1 = Module['_emscripten_bind_SIGCrown_getCrownFirePerimeter_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFirePerimeter_1'); -var _emscripten_bind_SIGCrown_getCrownTransitionRatio_0 = Module['_emscripten_bind_SIGCrown_getCrownTransitionRatio_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownTransitionRatio_0'); -var _emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0 = Module['_emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0'); -var _emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1 = Module['_emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1'); -var _emscripten_bind_SIGCrown_getCrownFireSpreadRate_1 = Module['_emscripten_bind_SIGCrown_getCrownFireSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFireSpreadRate_1'); -var _emscripten_bind_SIGCrown_getCrownFirelineIntensity_1 = Module['_emscripten_bind_SIGCrown_getCrownFirelineIntensity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFirelineIntensity_1'); -var _emscripten_bind_SIGCrown_getCrownFlameLength_1 = Module['_emscripten_bind_SIGCrown_getCrownFlameLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFlameLength_1'); -var _emscripten_bind_SIGCrown_getCrownFractionBurned_0 = Module['_emscripten_bind_SIGCrown_getCrownFractionBurned_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownFractionBurned_0'); -var _emscripten_bind_SIGCrown_getCrownRatio_1 = Module['_emscripten_bind_SIGCrown_getCrownRatio_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getCrownRatio_1'); -var _emscripten_bind_SIGCrown_getFinalFirelineIntesity_1 = Module['_emscripten_bind_SIGCrown_getFinalFirelineIntesity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFinalFirelineIntesity_1'); -var _emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1 = Module['_emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1'); -var _emscripten_bind_SIGCrown_getFinalSpreadRate_1 = Module['_emscripten_bind_SIGCrown_getFinalSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFinalSpreadRate_1'); -var _emscripten_bind_SIGCrown_getFinalSpreadDistance_1 = Module['_emscripten_bind_SIGCrown_getFinalSpreadDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFinalSpreadDistance_1'); -var _emscripten_bind_SIGCrown_getFinalFireArea_1 = Module['_emscripten_bind_SIGCrown_getFinalFireArea_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFinalFireArea_1'); -var _emscripten_bind_SIGCrown_getFinalFirePerimeter_1 = Module['_emscripten_bind_SIGCrown_getFinalFirePerimeter_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFinalFirePerimeter_1'); -var _emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2 = Module['_emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2'); -var _emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2 = Module['_emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2'); -var _emscripten_bind_SIGCrown_getFuelLoadHundredHour_2 = Module['_emscripten_bind_SIGCrown_getFuelLoadHundredHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelLoadHundredHour_2'); -var _emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2 = Module['_emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2'); -var _emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2 = Module['_emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2'); -var _emscripten_bind_SIGCrown_getFuelLoadOneHour_2 = Module['_emscripten_bind_SIGCrown_getFuelLoadOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelLoadOneHour_2'); -var _emscripten_bind_SIGCrown_getFuelLoadTenHour_2 = Module['_emscripten_bind_SIGCrown_getFuelLoadTenHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelLoadTenHour_2'); -var _emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2 = Module['_emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2'); -var _emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2 = Module['_emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2'); -var _emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2 = Module['_emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2'); -var _emscripten_bind_SIGCrown_getFuelSavrOneHour_2 = Module['_emscripten_bind_SIGCrown_getFuelSavrOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelSavrOneHour_2'); -var _emscripten_bind_SIGCrown_getFuelbedDepth_2 = Module['_emscripten_bind_SIGCrown_getFuelbedDepth_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelbedDepth_2'); -var _emscripten_bind_SIGCrown_getMoistureFoliar_1 = Module['_emscripten_bind_SIGCrown_getMoistureFoliar_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureFoliar_1'); -var _emscripten_bind_SIGCrown_getMoistureHundredHour_1 = Module['_emscripten_bind_SIGCrown_getMoistureHundredHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureHundredHour_1'); -var _emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1 = Module['_emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1'); -var _emscripten_bind_SIGCrown_getMoistureLiveWoody_1 = Module['_emscripten_bind_SIGCrown_getMoistureLiveWoody_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureLiveWoody_1'); -var _emscripten_bind_SIGCrown_getMoistureOneHour_1 = Module['_emscripten_bind_SIGCrown_getMoistureOneHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureOneHour_1'); -var _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2'); -var _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2'); -var _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2'); -var _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2'); -var _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2'); -var _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2'); -var _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2'); -var _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2'); -var _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2'); -var _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2'); -var _emscripten_bind_SIGCrown_getMoistureTenHour_1 = Module['_emscripten_bind_SIGCrown_getMoistureTenHour_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureTenHour_1'); -var _emscripten_bind_SIGCrown_getSlope_1 = Module['_emscripten_bind_SIGCrown_getSlope_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getSlope_1'); -var _emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1 = Module['_emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1'); -var _emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1 = Module['_emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1'); -var _emscripten_bind_SIGCrown_getWindDirection_0 = Module['_emscripten_bind_SIGCrown_getWindDirection_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getWindDirection_0'); -var _emscripten_bind_SIGCrown_getWindSpeed_2 = Module['_emscripten_bind_SIGCrown_getWindSpeed_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getWindSpeed_2'); -var _emscripten_bind_SIGCrown_getFuelModelNumber_0 = Module['_emscripten_bind_SIGCrown_getFuelModelNumber_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelModelNumber_0'); -var _emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1'); -var _emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0 = Module['_emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0'); -var _emscripten_bind_SIGCrown_getFuelCode_1 = Module['_emscripten_bind_SIGCrown_getFuelCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelCode_1'); -var _emscripten_bind_SIGCrown_getFuelName_1 = Module['_emscripten_bind_SIGCrown_getFuelName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFuelName_1'); -var _emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1'); -var _emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1'); -var _emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1 = Module['_emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1'); -var _emscripten_bind_SIGCrown_doCrownRun_0 = Module['_emscripten_bind_SIGCrown_doCrownRun_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_doCrownRun_0'); -var _emscripten_bind_SIGCrown_doCrownRunRothermel_0 = Module['_emscripten_bind_SIGCrown_doCrownRunRothermel_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_doCrownRunRothermel_0'); -var _emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0 = Module['_emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0'); -var _emscripten_bind_SIGCrown_initializeMembers_0 = Module['_emscripten_bind_SIGCrown_initializeMembers_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_initializeMembers_0'); -var _emscripten_bind_SIGCrown_setAspect_1 = Module['_emscripten_bind_SIGCrown_setAspect_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setAspect_1'); -var _emscripten_bind_SIGCrown_setCanopyBaseHeight_2 = Module['_emscripten_bind_SIGCrown_setCanopyBaseHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setCanopyBaseHeight_2'); -var _emscripten_bind_SIGCrown_setCanopyBulkDensity_2 = Module['_emscripten_bind_SIGCrown_setCanopyBulkDensity_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setCanopyBulkDensity_2'); -var _emscripten_bind_SIGCrown_setCanopyCover_2 = Module['_emscripten_bind_SIGCrown_setCanopyCover_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setCanopyCover_2'); -var _emscripten_bind_SIGCrown_setCanopyHeight_2 = Module['_emscripten_bind_SIGCrown_setCanopyHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setCanopyHeight_2'); -var _emscripten_bind_SIGCrown_setCrownRatio_2 = Module['_emscripten_bind_SIGCrown_setCrownRatio_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setCrownRatio_2'); -var _emscripten_bind_SIGCrown_setFuelModelNumber_1 = Module['_emscripten_bind_SIGCrown_setFuelModelNumber_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setFuelModelNumber_1'); -var _emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1 = Module['_emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1'); -var _emscripten_bind_SIGCrown_setElapsedTime_2 = Module['_emscripten_bind_SIGCrown_setElapsedTime_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setElapsedTime_2'); -var _emscripten_bind_SIGCrown_setFuelModels_1 = Module['_emscripten_bind_SIGCrown_setFuelModels_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setFuelModels_1'); -var _emscripten_bind_SIGCrown_setMoistureDeadAggregate_2 = Module['_emscripten_bind_SIGCrown_setMoistureDeadAggregate_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureDeadAggregate_2'); -var _emscripten_bind_SIGCrown_setMoistureFoliar_2 = Module['_emscripten_bind_SIGCrown_setMoistureFoliar_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureFoliar_2'); -var _emscripten_bind_SIGCrown_setMoistureHundredHour_2 = Module['_emscripten_bind_SIGCrown_setMoistureHundredHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureHundredHour_2'); -var _emscripten_bind_SIGCrown_setMoistureInputMode_1 = Module['_emscripten_bind_SIGCrown_setMoistureInputMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureInputMode_1'); -var _emscripten_bind_SIGCrown_setMoistureLiveAggregate_2 = Module['_emscripten_bind_SIGCrown_setMoistureLiveAggregate_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureLiveAggregate_2'); -var _emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2 = Module['_emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2'); -var _emscripten_bind_SIGCrown_setMoistureLiveWoody_2 = Module['_emscripten_bind_SIGCrown_setMoistureLiveWoody_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureLiveWoody_2'); -var _emscripten_bind_SIGCrown_setMoistureOneHour_2 = Module['_emscripten_bind_SIGCrown_setMoistureOneHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureOneHour_2'); -var _emscripten_bind_SIGCrown_setMoistureScenarios_1 = Module['_emscripten_bind_SIGCrown_setMoistureScenarios_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureScenarios_1'); -var _emscripten_bind_SIGCrown_setMoistureTenHour_2 = Module['_emscripten_bind_SIGCrown_setMoistureTenHour_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setMoistureTenHour_2'); -var _emscripten_bind_SIGCrown_setSlope_2 = Module['_emscripten_bind_SIGCrown_setSlope_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setSlope_2'); -var _emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1 = Module['_emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1'); -var _emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1 = Module['_emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1'); -var _emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1 = Module['_emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1'); -var _emscripten_bind_SIGCrown_setWindDirection_1 = Module['_emscripten_bind_SIGCrown_setWindDirection_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setWindDirection_1'); -var _emscripten_bind_SIGCrown_setWindHeightInputMode_1 = Module['_emscripten_bind_SIGCrown_setWindHeightInputMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setWindHeightInputMode_1'); -var _emscripten_bind_SIGCrown_setWindSpeed_2 = Module['_emscripten_bind_SIGCrown_setWindSpeed_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_setWindSpeed_2'); -var _emscripten_bind_SIGCrown_updateCrownInputs_25 = Module['_emscripten_bind_SIGCrown_updateCrownInputs_25'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_updateCrownInputs_25'); -var _emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21 = Module['_emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21'); -var _emscripten_bind_SIGCrown_getFinalFlameLength_1 = Module['_emscripten_bind_SIGCrown_getFinalFlameLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown_getFinalFlameLength_1'); -var _emscripten_bind_SIGCrown___destroy___0 = Module['_emscripten_bind_SIGCrown___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGCrown___destroy___0'); -var _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0 = Module['_emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0'); -var _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1 = Module['_emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1'); -var _emscripten_bind_SpeciesMasterTableRecord___destroy___0 = Module['_emscripten_bind_SpeciesMasterTableRecord___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTableRecord___destroy___0'); -var _emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0 = Module['_emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0'); -var _emscripten_bind_SpeciesMasterTable_initializeMasterTable_0 = Module['_emscripten_bind_SpeciesMasterTable_initializeMasterTable_0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTable_initializeMasterTable_0'); -var _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1 = Module['_emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1'); -var _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2 = Module['_emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2'); -var _emscripten_bind_SpeciesMasterTable_insertRecord_17 = Module['_emscripten_bind_SpeciesMasterTable_insertRecord_17'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTable_insertRecord_17'); -var _emscripten_bind_SpeciesMasterTable___destroy___0 = Module['_emscripten_bind_SpeciesMasterTable___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SpeciesMasterTable___destroy___0'); -var _emscripten_bind_SIGMortality_SIGMortality_1 = Module['_emscripten_bind_SIGMortality_SIGMortality_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_SIGMortality_1'); -var _emscripten_bind_SIGMortality_initializeMembers_0 = Module['_emscripten_bind_SIGMortality_initializeMembers_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_initializeMembers_0'); -var _emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2 = Module['_emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2'); -var _emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2 = Module['_emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2'); -var _emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2 = Module['_emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2'); -var _emscripten_bind_SIGMortality_calculateMortality_1 = Module['_emscripten_bind_SIGMortality_calculateMortality_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_calculateMortality_1'); -var _emscripten_bind_SIGMortality_calculateScorchHeight_7 = Module['_emscripten_bind_SIGMortality_calculateScorchHeight_7'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_calculateScorchHeight_7'); -var _emscripten_bind_SIGMortality_calculateMortalityAllDirections_1 = Module['_emscripten_bind_SIGMortality_calculateMortalityAllDirections_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_calculateMortalityAllDirections_1'); -var _emscripten_bind_SIGMortality_getRequiredFieldVector_0 = Module['_emscripten_bind_SIGMortality_getRequiredFieldVector_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getRequiredFieldVector_0'); -var _emscripten_bind_SIGMortality_getBeetleDamage_0 = Module['_emscripten_bind_SIGMortality_getBeetleDamage_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBeetleDamage_0'); -var _emscripten_bind_SIGMortality_getCrownDamageEquationCode_0 = Module['_emscripten_bind_SIGMortality_getCrownDamageEquationCode_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownDamageEquationCode_0'); -var _emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1 = Module['_emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1'); -var _emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1'); -var _emscripten_bind_SIGMortality_getCrownDamageType_0 = Module['_emscripten_bind_SIGMortality_getCrownDamageType_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownDamageType_0'); -var _emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1 = Module['_emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1'); -var _emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1'); -var _emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1 = Module['_emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1'); -var _emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1'); -var _emscripten_bind_SIGMortality_getSpeciesCode_0 = Module['_emscripten_bind_SIGMortality_getSpeciesCode_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getSpeciesCode_0'); -var _emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1 = Module['_emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1'); -var _emscripten_bind_SIGMortality_getEquationType_0 = Module['_emscripten_bind_SIGMortality_getEquationType_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getEquationType_0'); -var _emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1 = Module['_emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1'); -var _emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1'); -var _emscripten_bind_SIGMortality_getFireSeverity_0 = Module['_emscripten_bind_SIGMortality_getFireSeverity_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getFireSeverity_0'); -var _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0 = Module['_emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0'); -var _emscripten_bind_SIGMortality_getGACCRegion_0 = Module['_emscripten_bind_SIGMortality_getGACCRegion_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getGACCRegion_0'); -var _emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1 = Module['_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1'); -var _emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2 = Module['_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2'); -var _emscripten_bind_SIGMortality_getBarkThickness_1 = Module['_emscripten_bind_SIGMortality_getBarkThickness_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBarkThickness_1'); -var _emscripten_bind_SIGMortality_getBasalAreaKillled_0 = Module['_emscripten_bind_SIGMortality_getBasalAreaKillled_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBasalAreaKillled_0'); -var _emscripten_bind_SIGMortality_getBasalAreaPostfire_0 = Module['_emscripten_bind_SIGMortality_getBasalAreaPostfire_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBasalAreaPostfire_0'); -var _emscripten_bind_SIGMortality_getBasalAreaPrefire_0 = Module['_emscripten_bind_SIGMortality_getBasalAreaPrefire_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBasalAreaPrefire_0'); -var _emscripten_bind_SIGMortality_getBoleCharHeight_1 = Module['_emscripten_bind_SIGMortality_getBoleCharHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBoleCharHeight_1'); -var _emscripten_bind_SIGMortality_getBoleCharHeightBacking_1 = Module['_emscripten_bind_SIGMortality_getBoleCharHeightBacking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBoleCharHeightBacking_1'); -var _emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1 = Module['_emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1'); -var _emscripten_bind_SIGMortality_getCambiumKillRating_0 = Module['_emscripten_bind_SIGMortality_getCambiumKillRating_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCambiumKillRating_0'); -var _emscripten_bind_SIGMortality_getCrownDamage_0 = Module['_emscripten_bind_SIGMortality_getCrownDamage_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownDamage_0'); -var _emscripten_bind_SIGMortality_getCrownRatio_1 = Module['_emscripten_bind_SIGMortality_getCrownRatio_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownRatio_1'); -var _emscripten_bind_SIGMortality_getCVSorCLS_0 = Module['_emscripten_bind_SIGMortality_getCVSorCLS_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCVSorCLS_0'); -var _emscripten_bind_SIGMortality_getDBH_1 = Module['_emscripten_bind_SIGMortality_getDBH_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getDBH_1'); -var _emscripten_bind_SIGMortality_getFlameLength_1 = Module['_emscripten_bind_SIGMortality_getFlameLength_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getFlameLength_1'); -var _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1 = Module['_emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1'); -var _emscripten_bind_SIGMortality_getKilledTrees_0 = Module['_emscripten_bind_SIGMortality_getKilledTrees_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getKilledTrees_0'); -var _emscripten_bind_SIGMortality_getProbabilityOfMortality_1 = Module['_emscripten_bind_SIGMortality_getProbabilityOfMortality_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getProbabilityOfMortality_1'); -var _emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1 = Module['_emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1'); -var _emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1 = Module['_emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1'); -var _emscripten_bind_SIGMortality_getScorchHeight_1 = Module['_emscripten_bind_SIGMortality_getScorchHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getScorchHeight_1'); -var _emscripten_bind_SIGMortality_getScorchHeightBacking_1 = Module['_emscripten_bind_SIGMortality_getScorchHeightBacking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getScorchHeightBacking_1'); -var _emscripten_bind_SIGMortality_getScorchHeightFlanking_1 = Module['_emscripten_bind_SIGMortality_getScorchHeightFlanking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getScorchHeightFlanking_1'); -var _emscripten_bind_SIGMortality_getTotalPrefireTrees_0 = Module['_emscripten_bind_SIGMortality_getTotalPrefireTrees_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTotalPrefireTrees_0'); -var _emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1 = Module['_emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1'); -var _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1 = Module['_emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1'); -var _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1 = Module['_emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1'); -var _emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1 = Module['_emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1'); -var _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1 = Module['_emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1'); -var _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1 = Module['_emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1'); -var _emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1 = Module['_emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1'); -var _emscripten_bind_SIGMortality_getTreeHeight_1 = Module['_emscripten_bind_SIGMortality_getTreeHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getTreeHeight_1'); -var _emscripten_bind_SIGMortality_postfireCanopyCover_0 = Module['_emscripten_bind_SIGMortality_postfireCanopyCover_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_postfireCanopyCover_0'); -var _emscripten_bind_SIGMortality_prefireCanopyCover_0 = Module['_emscripten_bind_SIGMortality_prefireCanopyCover_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_prefireCanopyCover_0'); -var _emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1 = Module['_emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1'); -var _emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1'); -var _emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1 = Module['_emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1'); -var _emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1'); -var _emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0 = Module['_emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0'); -var _emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1 = Module['_emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1'); -var _emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1'); -var _emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0 = Module['_emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0'); -var _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1'); -var _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2 = Module['_emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2'); -var _emscripten_bind_SIGMortality_setAirTemperature_2 = Module['_emscripten_bind_SIGMortality_setAirTemperature_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setAirTemperature_2'); -var _emscripten_bind_SIGMortality_setBeetleDamage_1 = Module['_emscripten_bind_SIGMortality_setBeetleDamage_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setBeetleDamage_1'); -var _emscripten_bind_SIGMortality_setBoleCharHeight_2 = Module['_emscripten_bind_SIGMortality_setBoleCharHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setBoleCharHeight_2'); -var _emscripten_bind_SIGMortality_setCambiumKillRating_1 = Module['_emscripten_bind_SIGMortality_setCambiumKillRating_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setCambiumKillRating_1'); -var _emscripten_bind_SIGMortality_setCrownDamage_1 = Module['_emscripten_bind_SIGMortality_setCrownDamage_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setCrownDamage_1'); -var _emscripten_bind_SIGMortality_setCrownRatio_2 = Module['_emscripten_bind_SIGMortality_setCrownRatio_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setCrownRatio_2'); -var _emscripten_bind_SIGMortality_setDBH_2 = Module['_emscripten_bind_SIGMortality_setDBH_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setDBH_2'); -var _emscripten_bind_SIGMortality_setEquationType_1 = Module['_emscripten_bind_SIGMortality_setEquationType_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setEquationType_1'); -var _emscripten_bind_SIGMortality_setFireSeverity_1 = Module['_emscripten_bind_SIGMortality_setFireSeverity_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setFireSeverity_1'); -var _emscripten_bind_SIGMortality_setFirelineIntensity_2 = Module['_emscripten_bind_SIGMortality_setFirelineIntensity_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setFirelineIntensity_2'); -var _emscripten_bind_SIGMortality_setFlameLength_2 = Module['_emscripten_bind_SIGMortality_setFlameLength_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setFlameLength_2'); -var _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1 = Module['_emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1'); -var _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2 = Module['_emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2'); -var _emscripten_bind_SIGMortality_setMidFlameWindSpeed_2 = Module['_emscripten_bind_SIGMortality_setMidFlameWindSpeed_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setMidFlameWindSpeed_2'); -var _emscripten_bind_SIGMortality_setGACCRegion_1 = Module['_emscripten_bind_SIGMortality_setGACCRegion_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setGACCRegion_1'); -var _emscripten_bind_SIGMortality_setScorchHeight_2 = Module['_emscripten_bind_SIGMortality_setScorchHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setScorchHeight_2'); -var _emscripten_bind_SIGMortality_setSpeciesCode_1 = Module['_emscripten_bind_SIGMortality_setSpeciesCode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setSpeciesCode_1'); -var _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2 = Module['_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2'); -var _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2 = Module['_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2'); -var _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2 = Module['_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2'); -var _emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2 = Module['_emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2'); -var _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2 = Module['_emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2'); -var _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2 = Module['_emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2'); -var _emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2 = Module['_emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2'); -var _emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2 = Module['_emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2'); -var _emscripten_bind_SIGMortality_setTreeHeight_2 = Module['_emscripten_bind_SIGMortality_setTreeHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setTreeHeight_2'); -var _emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1 = Module['_emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1'); -var _emscripten_bind_SIGMortality_setWindHeightInputMode_1 = Module['_emscripten_bind_SIGMortality_setWindHeightInputMode_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setWindHeightInputMode_1'); -var _emscripten_bind_SIGMortality_setWindSpeed_2 = Module['_emscripten_bind_SIGMortality_setWindSpeed_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setWindSpeed_2'); -var _emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4 = Module['_emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4'); -var _emscripten_bind_SIGMortality___destroy___0 = Module['_emscripten_bind_SIGMortality___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGMortality___destroy___0'); -var _emscripten_bind_WindSpeedUtility_WindSpeedUtility_0 = Module['_emscripten_bind_WindSpeedUtility_WindSpeedUtility_0'] = makeInvalidEarlyAccess('_emscripten_bind_WindSpeedUtility_WindSpeedUtility_0'); -var _emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2 = Module['_emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2'] = makeInvalidEarlyAccess('_emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2'); -var _emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1 = Module['_emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1'] = makeInvalidEarlyAccess('_emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1'); -var _emscripten_bind_WindSpeedUtility___destroy___0 = Module['_emscripten_bind_WindSpeedUtility___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_WindSpeedUtility___destroy___0'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0'); -var _emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0 = Module['_emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0'); -var _emscripten_bind_SIGSlopeTool_SIGSlopeTool_0 = Module['_emscripten_bind_SIGSlopeTool_SIGSlopeTool_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_SIGSlopeTool_0'); -var _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1 = Module['_emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1'); -var _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1 = Module['_emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1'); -var _emscripten_bind_SIGSlopeTool_getHorizontalDistance_2 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistance_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistance_2'); -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2'); -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1'); -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1'); -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1'); -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1'); -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1'); -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1'); -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1'); -var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1 = Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1'); -var _emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1 = Module['_emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1'); -var _emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1 = Module['_emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1'); -var _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1 = Module['_emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1'); -var _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1 = Module['_emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1'); -var _emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1 = Module['_emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1'); -var _emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1 = Module['_emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1'); -var _emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1 = Module['_emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1'); -var _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1 = Module['_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1'); -var _emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1 = Module['_emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1'); -var _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0 = Module['_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0'); -var _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0 = Module['_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0'); -var _emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0 = Module['_emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0'); -var _emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0 = Module['_emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0'); -var _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1 = Module['_emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1'); -var _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1 = Module['_emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1'); -var _emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0 = Module['_emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0'); -var _emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0 = Module['_emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0'); -var _emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2 = Module['_emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2'); -var _emscripten_bind_SIGSlopeTool_setContourInterval_2 = Module['_emscripten_bind_SIGSlopeTool_setContourInterval_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_setContourInterval_2'); -var _emscripten_bind_SIGSlopeTool_setMapDistance_2 = Module['_emscripten_bind_SIGSlopeTool_setMapDistance_2'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_setMapDistance_2'); -var _emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1 = Module['_emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1'); -var _emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1 = Module['_emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1'); -var _emscripten_bind_SIGSlopeTool_setNumberOfContours_1 = Module['_emscripten_bind_SIGSlopeTool_setNumberOfContours_1'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool_setNumberOfContours_1'); -var _emscripten_bind_SIGSlopeTool___destroy___0 = Module['_emscripten_bind_SIGSlopeTool___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SIGSlopeTool___destroy___0'); -var _emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0 = Module['_emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0'] = makeInvalidEarlyAccess('_emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0'); -var _emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0 = Module['_emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0'] = makeInvalidEarlyAccess('_emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0'); -var _emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2 = Module['_emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2'] = makeInvalidEarlyAccess('_emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2'); -var _emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2 = Module['_emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2'] = makeInvalidEarlyAccess('_emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2'); -var _emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1 = Module['_emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1'] = makeInvalidEarlyAccess('_emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1'); -var _emscripten_bind_VaporPressureDeficitCalculator___destroy___0 = Module['_emscripten_bind_VaporPressureDeficitCalculator___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_VaporPressureDeficitCalculator___destroy___0'); -var _emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0 = Module['_emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0'); -var _emscripten_bind_RelativeHumidityTool_calculate_0 = Module['_emscripten_bind_RelativeHumidityTool_calculate_0'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_calculate_0'); -var _emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1 = Module['_emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1'); -var _emscripten_bind_RelativeHumidityTool_getSiteElevation_1 = Module['_emscripten_bind_RelativeHumidityTool_getSiteElevation_1'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_getSiteElevation_1'); -var _emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1 = Module['_emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1'); -var _emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1 = Module['_emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1'); -var _emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1 = Module['_emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1'); -var _emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1 = Module['_emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1'); -var _emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2 = Module['_emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2'); -var _emscripten_bind_RelativeHumidityTool_setSiteElevation_2 = Module['_emscripten_bind_RelativeHumidityTool_setSiteElevation_2'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_setSiteElevation_2'); -var _emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2 = Module['_emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2'); -var _emscripten_bind_RelativeHumidityTool___destroy___0 = Module['_emscripten_bind_RelativeHumidityTool___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_RelativeHumidityTool___destroy___0'); -var _emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0'); -var _emscripten_bind_SafeSeparationDistanceCalculator_calculate_0 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_calculate_0'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_calculate_0'); -var _emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0'); -var _emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0'); -var _emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0'); -var _emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1'); -var _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1'); -var _emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1'); -var _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0'); -var _emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1'); -var _emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1'); -var _emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1'); -var _emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2 = Module['_emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2'); -var _emscripten_bind_SafeSeparationDistanceCalculator___destroy___0 = Module['_emscripten_bind_SafeSeparationDistanceCalculator___destroy___0'] = makeInvalidEarlyAccess('_emscripten_bind_SafeSeparationDistanceCalculator___destroy___0'); -var _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet = Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet'] = makeInvalidEarlyAccess('_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet'); -var _emscripten_enum_AreaUnits_AreaUnitsEnum_Acres = Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_Acres'] = makeInvalidEarlyAccess('_emscripten_enum_AreaUnits_AreaUnitsEnum_Acres'); -var _emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares = Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares'] = makeInvalidEarlyAccess('_emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares'); -var _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters = Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters'] = makeInvalidEarlyAccess('_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters'); -var _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles = Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles'] = makeInvalidEarlyAccess('_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles'); -var _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers = Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers'] = makeInvalidEarlyAccess('_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers'); -var _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre = Module['_emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre'] = makeInvalidEarlyAccess('_emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre'); -var _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare = Module['_emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare'] = makeInvalidEarlyAccess('_emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare'); -var _emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction = Module['_emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction'] = makeInvalidEarlyAccess('_emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction'); -var _emscripten_enum_FractionUnits_FractionUnitsEnum_Percent = Module['_emscripten_enum_FractionUnits_FractionUnitsEnum_Percent'] = makeInvalidEarlyAccess('_emscripten_enum_FractionUnits_FractionUnitsEnum_Percent'); -var _emscripten_enum_LengthUnits_LengthUnitsEnum_Feet = Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Feet'] = makeInvalidEarlyAccess('_emscripten_enum_LengthUnits_LengthUnitsEnum_Feet'); -var _emscripten_enum_LengthUnits_LengthUnitsEnum_Inches = Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Inches'] = makeInvalidEarlyAccess('_emscripten_enum_LengthUnits_LengthUnitsEnum_Inches'); -var _emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters = Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters'] = makeInvalidEarlyAccess('_emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters'); -var _emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters = Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters'] = makeInvalidEarlyAccess('_emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters'); -var _emscripten_enum_LengthUnits_LengthUnitsEnum_Meters = Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Meters'] = makeInvalidEarlyAccess('_emscripten_enum_LengthUnits_LengthUnitsEnum_Meters'); -var _emscripten_enum_LengthUnits_LengthUnitsEnum_Chains = Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Chains'] = makeInvalidEarlyAccess('_emscripten_enum_LengthUnits_LengthUnitsEnum_Chains'); -var _emscripten_enum_LengthUnits_LengthUnitsEnum_Miles = Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Miles'] = makeInvalidEarlyAccess('_emscripten_enum_LengthUnits_LengthUnitsEnum_Miles'); -var _emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers = Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers'] = makeInvalidEarlyAccess('_emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers'); -var _emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot = Module['_emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot'] = makeInvalidEarlyAccess('_emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot'); -var _emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre = Module['_emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre'] = makeInvalidEarlyAccess('_emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre'); -var _emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare = Module['_emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare'] = makeInvalidEarlyAccess('_emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare'); -var _emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter = Module['_emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter'] = makeInvalidEarlyAccess('_emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter'); -var _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet = Module['_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet'); -var _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters = Module['_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters'); -var _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches = Module['_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches'); -var _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters = Module['_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters'); -var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute = Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute'); -var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour = Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour'); -var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond = Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond'); -var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute = Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute'); -var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour = Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour'); -var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour = Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour'); -var _emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal'); -var _emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal'); -var _emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal'); -var _emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal'); -var _emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal'); -var _emscripten_enum_PressureUnits_PressureUnitsEnum_Bar = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_Bar'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_Bar'); -var _emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere'); -var _emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere'); -var _emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch = Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch'] = makeInvalidEarlyAccess('_emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch'); -var _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees = Module['_emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees'] = makeInvalidEarlyAccess('_emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees'); -var _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent = Module['_emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent'] = makeInvalidEarlyAccess('_emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent'); -var _emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot = Module['_emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot'] = makeInvalidEarlyAccess('_emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot'); -var _emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter = Module['_emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter'] = makeInvalidEarlyAccess('_emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter'); -var _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound = Module['_emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound'] = makeInvalidEarlyAccess('_emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound'); -var _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram = Module['_emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram'] = makeInvalidEarlyAccess('_emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram'); -var _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot = Module['_emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot'] = makeInvalidEarlyAccess('_emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot'); -var _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter = Module['_emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter'] = makeInvalidEarlyAccess('_emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter'); -var _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot = Module['_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot'] = makeInvalidEarlyAccess('_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot'); -var _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter = Module['_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter'] = makeInvalidEarlyAccess('_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter'); -var _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter = Module['_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter'] = makeInvalidEarlyAccess('_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter'); -var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute = Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute'] = makeInvalidEarlyAccess('_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute'); -var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond = Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond'] = makeInvalidEarlyAccess('_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond'); -var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond = Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond'] = makeInvalidEarlyAccess('_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond'); -var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute = Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute'] = makeInvalidEarlyAccess('_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute'); -var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter = Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter'] = makeInvalidEarlyAccess('_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter'); -var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond = Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond'] = makeInvalidEarlyAccess('_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond'); -var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute = Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute'] = makeInvalidEarlyAccess('_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute'); -var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond = Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond'] = makeInvalidEarlyAccess('_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond'); -var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute = Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute'] = makeInvalidEarlyAccess('_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute'); -var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter = Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter'] = makeInvalidEarlyAccess('_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter'); -var _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit = Module['_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit'] = makeInvalidEarlyAccess('_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit'); -var _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius = Module['_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius'] = makeInvalidEarlyAccess('_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius'); -var _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin = Module['_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin'] = makeInvalidEarlyAccess('_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin'); -var _emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes = Module['_emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes'] = makeInvalidEarlyAccess('_emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes'); -var _emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds = Module['_emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds'] = makeInvalidEarlyAccess('_emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds'); -var _emscripten_enum_TimeUnits_TimeUnitsEnum_Hours = Module['_emscripten_enum_TimeUnits_TimeUnitsEnum_Hours'] = makeInvalidEarlyAccess('_emscripten_enum_TimeUnits_TimeUnitsEnum_Hours'); -var _emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack = Module['_emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack'] = makeInvalidEarlyAccess('_emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack'); -var _emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack = Module['_emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack'] = makeInvalidEarlyAccess('_emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack'); -var _emscripten_enum_ContainStatus_ContainStatusEnum_Unreported = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Unreported'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_Unreported'); -var _emscripten_enum_ContainStatus_ContainStatusEnum_Reported = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Reported'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_Reported'); -var _emscripten_enum_ContainStatus_ContainStatusEnum_Attacked = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Attacked'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_Attacked'); -var _emscripten_enum_ContainStatus_ContainStatusEnum_Contained = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Contained'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_Contained'); -var _emscripten_enum_ContainStatus_ContainStatusEnum_Overrun = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Overrun'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_Overrun'); -var _emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted'); -var _emscripten_enum_ContainStatus_ContainStatusEnum_Overflow = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Overflow'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_Overflow'); -var _emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded'); -var _emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded = Module['_emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded'] = makeInvalidEarlyAccess('_emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded'); -var _emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank = Module['_emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank'] = makeInvalidEarlyAccess('_emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank'); -var _emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank = Module['_emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank'] = makeInvalidEarlyAccess('_emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank'); -var _emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks = Module['_emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks'] = makeInvalidEarlyAccess('_emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks'); -var _emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank = Module['_emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank'] = makeInvalidEarlyAccess('_emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank'); -var _emscripten_enum_ContainMode_Default = Module['_emscripten_enum_ContainMode_Default'] = makeInvalidEarlyAccess('_emscripten_enum_ContainMode_Default'); -var _emscripten_enum_ContainMode_ComputeWithOptimalResource = Module['_emscripten_enum_ContainMode_ComputeWithOptimalResource'] = makeInvalidEarlyAccess('_emscripten_enum_ContainMode_ComputeWithOptimalResource'); -var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter = Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter'] = makeInvalidEarlyAccess('_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter'); -var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky = Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky'] = makeInvalidEarlyAccess('_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky'); -var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep = Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep'] = makeInvalidEarlyAccess('_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep'); -var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow = Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow'] = makeInvalidEarlyAccess('_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow'); -var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff = Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff'] = makeInvalidEarlyAccess('_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff'); -var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff = Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff'] = makeInvalidEarlyAccess('_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff'); -var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed = Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed'] = makeInvalidEarlyAccess('_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed'); -var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss = Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss'] = makeInvalidEarlyAccess('_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss'); -var _emscripten_enum_LightningCharge_LightningChargeEnum_Negative = Module['_emscripten_enum_LightningCharge_LightningChargeEnum_Negative'] = makeInvalidEarlyAccess('_emscripten_enum_LightningCharge_LightningChargeEnum_Negative'); -var _emscripten_enum_LightningCharge_LightningChargeEnum_Positive = Module['_emscripten_enum_LightningCharge_LightningChargeEnum_Positive'] = makeInvalidEarlyAccess('_emscripten_enum_LightningCharge_LightningChargeEnum_Positive'); -var _emscripten_enum_LightningCharge_LightningChargeEnum_Unknown = Module['_emscripten_enum_LightningCharge_LightningChargeEnum_Unknown'] = makeInvalidEarlyAccess('_emscripten_enum_LightningCharge_LightningChargeEnum_Unknown'); -var _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED = Module['_emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED'] = makeInvalidEarlyAccess('_emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED'); -var _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN = Module['_emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN'] = makeInvalidEarlyAccess('_emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN'); -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE'); -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR'); -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR'); -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK'); -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE'); -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE'); -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE'); -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR'); -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR'); -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE'); -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE'); -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE'); -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE'); -var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE = Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE'] = makeInvalidEarlyAccess('_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE'); -var _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD = Module['_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD'] = makeInvalidEarlyAccess('_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD'); -var _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM = Module['_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM'] = makeInvalidEarlyAccess('_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM'); -var _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD = Module['_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD'] = makeInvalidEarlyAccess('_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD'); -var _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP = Module['_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP'] = makeInvalidEarlyAccess('_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP'); -var _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead = Module['_emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead'] = makeInvalidEarlyAccess('_emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead'); -var _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live = Module['_emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live'] = makeInvalidEarlyAccess('_emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live'); -var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates = Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates'] = makeInvalidEarlyAccess('_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates'); -var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses = Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses'] = makeInvalidEarlyAccess('_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses'); -var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses = Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses'] = makeInvalidEarlyAccess('_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses'); -var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles = Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles'] = makeInvalidEarlyAccess('_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles'); -var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses = Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses'] = makeInvalidEarlyAccess('_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses'); -var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels = Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels'] = makeInvalidEarlyAccess('_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels'); -var _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low = Module['_emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low'] = makeInvalidEarlyAccess('_emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low'); -var _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate = Module['_emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate'] = makeInvalidEarlyAccess('_emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate'); -var _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet = Module['_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet'] = makeInvalidEarlyAccess('_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet'); -var _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise = Module['_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise'] = makeInvalidEarlyAccess('_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise'); -var _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush = Module['_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush'] = makeInvalidEarlyAccess('_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush'); -var _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad = Module['_emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad'] = makeInvalidEarlyAccess('_emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad'); -var _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType = Module['_emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType'] = makeInvalidEarlyAccess('_emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType'); -var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass = Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass'); -var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate = Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate'); -var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass = Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass'); -var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass = Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass'); -var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario = Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario'); -var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour = Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour'); -var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour = Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour'); -var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour = Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour'); -var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous = Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous'); -var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody = Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody'); -var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate = Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate'); -var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate = Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate'] = makeInvalidEarlyAccess('_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate'); -var _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint = Module['_emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint'); -var _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter = Module['_emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter'); -var _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod = Module['_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod'] = makeInvalidEarlyAccess('_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod'); -var _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic = Module['_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic'] = makeInvalidEarlyAccess('_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic'); -var _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic = Module['_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic'] = makeInvalidEarlyAccess('_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic'); -var _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional = Module['_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional'] = makeInvalidEarlyAccess('_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional'); -var _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered = Module['_emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered'] = makeInvalidEarlyAccess('_emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered'); -var _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered = Module['_emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered'] = makeInvalidEarlyAccess('_emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered'); -var _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput = Module['_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput'] = makeInvalidEarlyAccess('_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput'); -var _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio = Module['_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio'] = makeInvalidEarlyAccess('_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio'); -var _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio = Module['_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio'] = makeInvalidEarlyAccess('_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio'); -var _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope = Module['_emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope'] = makeInvalidEarlyAccess('_emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope'); -var _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth = Module['_emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth'] = makeInvalidEarlyAccess('_emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth'); -var _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame = Module['_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame'] = makeInvalidEarlyAccess('_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame'); -var _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot = Module['_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot'] = makeInvalidEarlyAccess('_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot'); -var _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter = Module['_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter'] = makeInvalidEarlyAccess('_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter'); -var _emscripten_enum_WindUpslopeAlignmentMode_NotAligned = Module['_emscripten_enum_WindUpslopeAlignmentMode_NotAligned'] = makeInvalidEarlyAccess('_emscripten_enum_WindUpslopeAlignmentMode_NotAligned'); -var _emscripten_enum_WindUpslopeAlignmentMode_Aligned = Module['_emscripten_enum_WindUpslopeAlignmentMode_Aligned'] = makeInvalidEarlyAccess('_emscripten_enum_WindUpslopeAlignmentMode_Aligned'); -var _emscripten_enum_SurfaceRunInDirectionOf_MaxSpread = Module['_emscripten_enum_SurfaceRunInDirectionOf_MaxSpread'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceRunInDirectionOf_MaxSpread'); -var _emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest = Module['_emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest'); -var _emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking = Module['_emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking'] = makeInvalidEarlyAccess('_emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking'); -var _emscripten_enum_FireType_FireTypeEnum_Surface = Module['_emscripten_enum_FireType_FireTypeEnum_Surface'] = makeInvalidEarlyAccess('_emscripten_enum_FireType_FireTypeEnum_Surface'); -var _emscripten_enum_FireType_FireTypeEnum_Torching = Module['_emscripten_enum_FireType_FireTypeEnum_Torching'] = makeInvalidEarlyAccess('_emscripten_enum_FireType_FireTypeEnum_Torching'); -var _emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire = Module['_emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire'] = makeInvalidEarlyAccess('_emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire'); -var _emscripten_enum_FireType_FireTypeEnum_Crowning = Module['_emscripten_enum_FireType_FireTypeEnum_Crowning'] = makeInvalidEarlyAccess('_emscripten_enum_FireType_FireTypeEnum_Crowning'); -var _emscripten_enum_BeetleDamage_not_set = Module['_emscripten_enum_BeetleDamage_not_set'] = makeInvalidEarlyAccess('_emscripten_enum_BeetleDamage_not_set'); -var _emscripten_enum_BeetleDamage_no = Module['_emscripten_enum_BeetleDamage_no'] = makeInvalidEarlyAccess('_emscripten_enum_BeetleDamage_no'); -var _emscripten_enum_BeetleDamage_yes = Module['_emscripten_enum_BeetleDamage_yes'] = makeInvalidEarlyAccess('_emscripten_enum_BeetleDamage_yes'); -var _emscripten_enum_CrownFireCalculationMethod_rothermel = Module['_emscripten_enum_CrownFireCalculationMethod_rothermel'] = makeInvalidEarlyAccess('_emscripten_enum_CrownFireCalculationMethod_rothermel'); -var _emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt = Module['_emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt'] = makeInvalidEarlyAccess('_emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt'); -var _emscripten_enum_CrownDamageEquationCode_not_set = Module['_emscripten_enum_CrownDamageEquationCode_not_set'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_not_set'); -var _emscripten_enum_CrownDamageEquationCode_white_fir = Module['_emscripten_enum_CrownDamageEquationCode_white_fir'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_white_fir'); -var _emscripten_enum_CrownDamageEquationCode_subalpine_fir = Module['_emscripten_enum_CrownDamageEquationCode_subalpine_fir'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_subalpine_fir'); -var _emscripten_enum_CrownDamageEquationCode_incense_cedar = Module['_emscripten_enum_CrownDamageEquationCode_incense_cedar'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_incense_cedar'); -var _emscripten_enum_CrownDamageEquationCode_western_larch = Module['_emscripten_enum_CrownDamageEquationCode_western_larch'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_western_larch'); -var _emscripten_enum_CrownDamageEquationCode_whitebark_pine = Module['_emscripten_enum_CrownDamageEquationCode_whitebark_pine'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_whitebark_pine'); -var _emscripten_enum_CrownDamageEquationCode_engelmann_spruce = Module['_emscripten_enum_CrownDamageEquationCode_engelmann_spruce'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_engelmann_spruce'); -var _emscripten_enum_CrownDamageEquationCode_sugar_pine = Module['_emscripten_enum_CrownDamageEquationCode_sugar_pine'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_sugar_pine'); -var _emscripten_enum_CrownDamageEquationCode_red_fir = Module['_emscripten_enum_CrownDamageEquationCode_red_fir'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_red_fir'); -var _emscripten_enum_CrownDamageEquationCode_ponderosa_pine = Module['_emscripten_enum_CrownDamageEquationCode_ponderosa_pine'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_ponderosa_pine'); -var _emscripten_enum_CrownDamageEquationCode_ponderosa_kill = Module['_emscripten_enum_CrownDamageEquationCode_ponderosa_kill'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_ponderosa_kill'); -var _emscripten_enum_CrownDamageEquationCode_douglas_fir = Module['_emscripten_enum_CrownDamageEquationCode_douglas_fir'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageEquationCode_douglas_fir'); -var _emscripten_enum_CrownDamageType_not_set = Module['_emscripten_enum_CrownDamageType_not_set'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageType_not_set'); -var _emscripten_enum_CrownDamageType_crown_length = Module['_emscripten_enum_CrownDamageType_crown_length'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageType_crown_length'); -var _emscripten_enum_CrownDamageType_crown_volume = Module['_emscripten_enum_CrownDamageType_crown_volume'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageType_crown_volume'); -var _emscripten_enum_CrownDamageType_crown_kill = Module['_emscripten_enum_CrownDamageType_crown_kill'] = makeInvalidEarlyAccess('_emscripten_enum_CrownDamageType_crown_kill'); -var _emscripten_enum_EquationType_not_set = Module['_emscripten_enum_EquationType_not_set'] = makeInvalidEarlyAccess('_emscripten_enum_EquationType_not_set'); -var _emscripten_enum_EquationType_crown_scorch = Module['_emscripten_enum_EquationType_crown_scorch'] = makeInvalidEarlyAccess('_emscripten_enum_EquationType_crown_scorch'); -var _emscripten_enum_EquationType_bole_char = Module['_emscripten_enum_EquationType_bole_char'] = makeInvalidEarlyAccess('_emscripten_enum_EquationType_bole_char'); -var _emscripten_enum_EquationType_crown_damage = Module['_emscripten_enum_EquationType_crown_damage'] = makeInvalidEarlyAccess('_emscripten_enum_EquationType_crown_damage'); -var _emscripten_enum_FireSeverity_not_set = Module['_emscripten_enum_FireSeverity_not_set'] = makeInvalidEarlyAccess('_emscripten_enum_FireSeverity_not_set'); -var _emscripten_enum_FireSeverity_empty = Module['_emscripten_enum_FireSeverity_empty'] = makeInvalidEarlyAccess('_emscripten_enum_FireSeverity_empty'); -var _emscripten_enum_FireSeverity_low = Module['_emscripten_enum_FireSeverity_low'] = makeInvalidEarlyAccess('_emscripten_enum_FireSeverity_low'); -var _emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length = Module['_emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length'] = makeInvalidEarlyAccess('_emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length'); -var _emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height = Module['_emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height'] = makeInvalidEarlyAccess('_emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height'); -var _emscripten_enum_GACC_NotSet = Module['_emscripten_enum_GACC_NotSet'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_NotSet'); -var _emscripten_enum_GACC_Alaska = Module['_emscripten_enum_GACC_Alaska'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_Alaska'); -var _emscripten_enum_GACC_California = Module['_emscripten_enum_GACC_California'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_California'); -var _emscripten_enum_GACC_EasternArea = Module['_emscripten_enum_GACC_EasternArea'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_EasternArea'); -var _emscripten_enum_GACC_GreatBasin = Module['_emscripten_enum_GACC_GreatBasin'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_GreatBasin'); -var _emscripten_enum_GACC_NorthernRockies = Module['_emscripten_enum_GACC_NorthernRockies'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_NorthernRockies'); -var _emscripten_enum_GACC_Northwest = Module['_emscripten_enum_GACC_Northwest'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_Northwest'); -var _emscripten_enum_GACC_RockeyMountain = Module['_emscripten_enum_GACC_RockeyMountain'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_RockeyMountain'); -var _emscripten_enum_GACC_SouthernArea = Module['_emscripten_enum_GACC_SouthernArea'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_SouthernArea'); -var _emscripten_enum_GACC_Southwest = Module['_emscripten_enum_GACC_Southwest'] = makeInvalidEarlyAccess('_emscripten_enum_GACC_Southwest'); -var _emscripten_enum_RequiredFieldNames_region = Module['_emscripten_enum_RequiredFieldNames_region'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_region'); -var _emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch = Module['_emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch'); -var _emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value = Module['_emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value'); -var _emscripten_enum_RequiredFieldNames_equation_type = Module['_emscripten_enum_RequiredFieldNames_equation_type'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_equation_type'); -var _emscripten_enum_RequiredFieldNames_dbh = Module['_emscripten_enum_RequiredFieldNames_dbh'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_dbh'); -var _emscripten_enum_RequiredFieldNames_tree_height = Module['_emscripten_enum_RequiredFieldNames_tree_height'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_tree_height'); -var _emscripten_enum_RequiredFieldNames_crown_ratio = Module['_emscripten_enum_RequiredFieldNames_crown_ratio'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_crown_ratio'); -var _emscripten_enum_RequiredFieldNames_crown_damage = Module['_emscripten_enum_RequiredFieldNames_crown_damage'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_crown_damage'); -var _emscripten_enum_RequiredFieldNames_cambium_kill_rating = Module['_emscripten_enum_RequiredFieldNames_cambium_kill_rating'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_cambium_kill_rating'); -var _emscripten_enum_RequiredFieldNames_beetle_damage = Module['_emscripten_enum_RequiredFieldNames_beetle_damage'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_beetle_damage'); -var _emscripten_enum_RequiredFieldNames_bole_char_height = Module['_emscripten_enum_RequiredFieldNames_bole_char_height'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_bole_char_height'); -var _emscripten_enum_RequiredFieldNames_bark_thickness = Module['_emscripten_enum_RequiredFieldNames_bark_thickness'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_bark_thickness'); -var _emscripten_enum_RequiredFieldNames_fire_severity = Module['_emscripten_enum_RequiredFieldNames_fire_severity'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_fire_severity'); -var _emscripten_enum_RequiredFieldNames_num_inputs = Module['_emscripten_enum_RequiredFieldNames_num_inputs'] = makeInvalidEarlyAccess('_emscripten_enum_RequiredFieldNames_num_inputs'); -var _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH = Module['_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH'); -var _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST = Module['_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST'); -var _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH = Module['_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH'); -var _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST = Module['_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST'); -var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F = Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F'); -var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F = Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F'); -var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F = Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F'); -var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F = Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F'); -var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F = Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F'); -var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F = Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F'); -var _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT = Module['_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT'); -var _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT = Module['_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT'); -var _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT = Module['_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT'); -var _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY = Module['_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY'); -var _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT = Module['_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT'); -var _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN = Module['_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT'); -var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT = Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT'); -var _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED = Module['_emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED'); -var _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED = Module['_emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED'); -var _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT = Module['_emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT'); -var _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT = Module['_emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT'); -var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE = Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE'); -var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE = Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE'); -var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE = Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE'); -var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE = Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE'); -var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE = Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE'); -var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET = Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET'] = makeInvalidEarlyAccess('_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION'); -var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY = Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY'] = makeInvalidEarlyAccess('_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY'); -var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES = Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES'] = makeInvalidEarlyAccess('_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES'); -var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE = Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE'] = makeInvalidEarlyAccess('_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE'); -var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE = Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE'] = makeInvalidEarlyAccess('_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE'); -var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE = Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE'] = makeInvalidEarlyAccess('_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE'); -var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE = Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE'] = makeInvalidEarlyAccess('_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE'); -var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE = Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE'] = makeInvalidEarlyAccess('_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE'); -var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES = Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES'] = makeInvalidEarlyAccess('_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES'); -var _emscripten_enum_BurningCondition_BurningConditionEnum_Low = Module['_emscripten_enum_BurningCondition_BurningConditionEnum_Low'] = makeInvalidEarlyAccess('_emscripten_enum_BurningCondition_BurningConditionEnum_Low'); -var _emscripten_enum_BurningCondition_BurningConditionEnum_Moderate = Module['_emscripten_enum_BurningCondition_BurningConditionEnum_Moderate'] = makeInvalidEarlyAccess('_emscripten_enum_BurningCondition_BurningConditionEnum_Moderate'); -var _emscripten_enum_BurningCondition_BurningConditionEnum_Extreme = Module['_emscripten_enum_BurningCondition_BurningConditionEnum_Extreme'] = makeInvalidEarlyAccess('_emscripten_enum_BurningCondition_BurningConditionEnum_Extreme'); -var _emscripten_enum_SlopeClass_SlopeClassEnum_Flat = Module['_emscripten_enum_SlopeClass_SlopeClassEnum_Flat'] = makeInvalidEarlyAccess('_emscripten_enum_SlopeClass_SlopeClassEnum_Flat'); -var _emscripten_enum_SlopeClass_SlopeClassEnum_Moderate = Module['_emscripten_enum_SlopeClass_SlopeClassEnum_Moderate'] = makeInvalidEarlyAccess('_emscripten_enum_SlopeClass_SlopeClassEnum_Moderate'); -var _emscripten_enum_SlopeClass_SlopeClassEnum_Steep = Module['_emscripten_enum_SlopeClass_SlopeClassEnum_Steep'] = makeInvalidEarlyAccess('_emscripten_enum_SlopeClass_SlopeClassEnum_Steep'); -var _emscripten_enum_SpeedClass_SpeedClassEnum_Light = Module['_emscripten_enum_SpeedClass_SpeedClassEnum_Light'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedClass_SpeedClassEnum_Light'); -var _emscripten_enum_SpeedClass_SpeedClassEnum_Moderate = Module['_emscripten_enum_SpeedClass_SpeedClassEnum_Moderate'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedClass_SpeedClassEnum_Moderate'); -var _emscripten_enum_SpeedClass_SpeedClassEnum_High = Module['_emscripten_enum_SpeedClass_SpeedClassEnum_High'] = makeInvalidEarlyAccess('_emscripten_enum_SpeedClass_SpeedClassEnum_High'); -var _emscripten_enum_SafetyCondition_SafetyConditionEnum_Low = Module['_emscripten_enum_SafetyCondition_SafetyConditionEnum_Low'] = makeInvalidEarlyAccess('_emscripten_enum_SafetyCondition_SafetyConditionEnum_Low'); -var _emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate = Module['_emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate'] = makeInvalidEarlyAccess('_emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate'); -var _emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme = Module['_emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme'] = makeInvalidEarlyAccess('_emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme'); -var ___cxa_free_exception = makeInvalidEarlyAccess('___cxa_free_exception'); -var _strerror = makeInvalidEarlyAccess('_strerror'); -var _emscripten_stack_get_end = makeInvalidEarlyAccess('_emscripten_stack_get_end'); -var _emscripten_stack_get_base = makeInvalidEarlyAccess('_emscripten_stack_get_base'); -var _setThrew = makeInvalidEarlyAccess('_setThrew'); -var __emscripten_tempret_set = makeInvalidEarlyAccess('__emscripten_tempret_set'); -var _emscripten_stack_init = makeInvalidEarlyAccess('_emscripten_stack_init'); -var _emscripten_stack_get_free = makeInvalidEarlyAccess('_emscripten_stack_get_free'); -var __emscripten_stack_restore = makeInvalidEarlyAccess('__emscripten_stack_restore'); -var __emscripten_stack_alloc = makeInvalidEarlyAccess('__emscripten_stack_alloc'); -var _emscripten_stack_get_current = makeInvalidEarlyAccess('_emscripten_stack_get_current'); -var ___cxa_increment_exception_refcount = makeInvalidEarlyAccess('___cxa_increment_exception_refcount'); -var ___cxa_decrement_exception_refcount = makeInvalidEarlyAccess('___cxa_decrement_exception_refcount'); -var ___get_exception_message = makeInvalidEarlyAccess('___get_exception_message'); -var ___cxa_can_catch = makeInvalidEarlyAccess('___cxa_can_catch'); -var ___cxa_get_exception_ptr = makeInvalidEarlyAccess('___cxa_get_exception_ptr'); - -function assignWasmExports(wasmExports) { - _fflush = createExportWrapper('fflush', 1); - Module['_webidl_free'] = _webidl_free = createExportWrapper('webidl_free', 1); - Module['_free'] = _free = createExportWrapper('free', 1); - Module['_webidl_malloc'] = _webidl_malloc = createExportWrapper('webidl_malloc', 1); - Module['_malloc'] = _malloc = createExportWrapper('malloc', 1); - Module['_emscripten_bind_VoidPtr___destroy___0'] = _emscripten_bind_VoidPtr___destroy___0 = createExportWrapper('emscripten_bind_VoidPtr___destroy___0', 1); - Module['_emscripten_bind_DoublePtr___destroy___0'] = _emscripten_bind_DoublePtr___destroy___0 = createExportWrapper('emscripten_bind_DoublePtr___destroy___0', 1); - Module['_emscripten_bind_BoolVector_BoolVector_0'] = _emscripten_bind_BoolVector_BoolVector_0 = createExportWrapper('emscripten_bind_BoolVector_BoolVector_0', 0); - Module['_emscripten_bind_BoolVector_BoolVector_1'] = _emscripten_bind_BoolVector_BoolVector_1 = createExportWrapper('emscripten_bind_BoolVector_BoolVector_1', 1); - Module['_emscripten_bind_BoolVector_resize_1'] = _emscripten_bind_BoolVector_resize_1 = createExportWrapper('emscripten_bind_BoolVector_resize_1', 2); - Module['_emscripten_bind_BoolVector_get_1'] = _emscripten_bind_BoolVector_get_1 = createExportWrapper('emscripten_bind_BoolVector_get_1', 2); - Module['_emscripten_bind_BoolVector_set_2'] = _emscripten_bind_BoolVector_set_2 = createExportWrapper('emscripten_bind_BoolVector_set_2', 3); - Module['_emscripten_bind_BoolVector_size_0'] = _emscripten_bind_BoolVector_size_0 = createExportWrapper('emscripten_bind_BoolVector_size_0', 1); - Module['_emscripten_bind_BoolVector___destroy___0'] = _emscripten_bind_BoolVector___destroy___0 = createExportWrapper('emscripten_bind_BoolVector___destroy___0', 1); - Module['_emscripten_bind_CharVector_CharVector_0'] = _emscripten_bind_CharVector_CharVector_0 = createExportWrapper('emscripten_bind_CharVector_CharVector_0', 0); - Module['_emscripten_bind_CharVector_CharVector_1'] = _emscripten_bind_CharVector_CharVector_1 = createExportWrapper('emscripten_bind_CharVector_CharVector_1', 1); - Module['_emscripten_bind_CharVector_resize_1'] = _emscripten_bind_CharVector_resize_1 = createExportWrapper('emscripten_bind_CharVector_resize_1', 2); - Module['_emscripten_bind_CharVector_get_1'] = _emscripten_bind_CharVector_get_1 = createExportWrapper('emscripten_bind_CharVector_get_1', 2); - Module['_emscripten_bind_CharVector_set_2'] = _emscripten_bind_CharVector_set_2 = createExportWrapper('emscripten_bind_CharVector_set_2', 3); - Module['_emscripten_bind_CharVector_size_0'] = _emscripten_bind_CharVector_size_0 = createExportWrapper('emscripten_bind_CharVector_size_0', 1); - Module['_emscripten_bind_CharVector___destroy___0'] = _emscripten_bind_CharVector___destroy___0 = createExportWrapper('emscripten_bind_CharVector___destroy___0', 1); - Module['_emscripten_bind_IntVector_IntVector_0'] = _emscripten_bind_IntVector_IntVector_0 = createExportWrapper('emscripten_bind_IntVector_IntVector_0', 0); - Module['_emscripten_bind_IntVector_IntVector_1'] = _emscripten_bind_IntVector_IntVector_1 = createExportWrapper('emscripten_bind_IntVector_IntVector_1', 1); - Module['_emscripten_bind_IntVector_resize_1'] = _emscripten_bind_IntVector_resize_1 = createExportWrapper('emscripten_bind_IntVector_resize_1', 2); - Module['_emscripten_bind_IntVector_get_1'] = _emscripten_bind_IntVector_get_1 = createExportWrapper('emscripten_bind_IntVector_get_1', 2); - Module['_emscripten_bind_IntVector_set_2'] = _emscripten_bind_IntVector_set_2 = createExportWrapper('emscripten_bind_IntVector_set_2', 3); - Module['_emscripten_bind_IntVector_size_0'] = _emscripten_bind_IntVector_size_0 = createExportWrapper('emscripten_bind_IntVector_size_0', 1); - Module['_emscripten_bind_IntVector___destroy___0'] = _emscripten_bind_IntVector___destroy___0 = createExportWrapper('emscripten_bind_IntVector___destroy___0', 1); - Module['_emscripten_bind_DoubleVector_DoubleVector_0'] = _emscripten_bind_DoubleVector_DoubleVector_0 = createExportWrapper('emscripten_bind_DoubleVector_DoubleVector_0', 0); - Module['_emscripten_bind_DoubleVector_DoubleVector_1'] = _emscripten_bind_DoubleVector_DoubleVector_1 = createExportWrapper('emscripten_bind_DoubleVector_DoubleVector_1', 1); - Module['_emscripten_bind_DoubleVector_resize_1'] = _emscripten_bind_DoubleVector_resize_1 = createExportWrapper('emscripten_bind_DoubleVector_resize_1', 2); - Module['_emscripten_bind_DoubleVector_get_1'] = _emscripten_bind_DoubleVector_get_1 = createExportWrapper('emscripten_bind_DoubleVector_get_1', 2); - Module['_emscripten_bind_DoubleVector_set_2'] = _emscripten_bind_DoubleVector_set_2 = createExportWrapper('emscripten_bind_DoubleVector_set_2', 3); - Module['_emscripten_bind_DoubleVector_size_0'] = _emscripten_bind_DoubleVector_size_0 = createExportWrapper('emscripten_bind_DoubleVector_size_0', 1); - Module['_emscripten_bind_DoubleVector___destroy___0'] = _emscripten_bind_DoubleVector___destroy___0 = createExportWrapper('emscripten_bind_DoubleVector___destroy___0', 1); - Module['_emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0'] = _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0', 0); - Module['_emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1'] = _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1', 1); - Module['_emscripten_bind_SpeciesMasterTableRecordVector_resize_1'] = _emscripten_bind_SpeciesMasterTableRecordVector_resize_1 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecordVector_resize_1', 2); - Module['_emscripten_bind_SpeciesMasterTableRecordVector_get_1'] = _emscripten_bind_SpeciesMasterTableRecordVector_get_1 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecordVector_get_1', 2); - Module['_emscripten_bind_SpeciesMasterTableRecordVector_set_2'] = _emscripten_bind_SpeciesMasterTableRecordVector_set_2 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecordVector_set_2', 3); - Module['_emscripten_bind_SpeciesMasterTableRecordVector_size_0'] = _emscripten_bind_SpeciesMasterTableRecordVector_size_0 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecordVector_size_0', 1); - Module['_emscripten_bind_SpeciesMasterTableRecordVector___destroy___0'] = _emscripten_bind_SpeciesMasterTableRecordVector___destroy___0 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecordVector___destroy___0', 1); - Module['_emscripten_bind_AreaUnits_toBaseUnits_2'] = _emscripten_bind_AreaUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_AreaUnits_toBaseUnits_2', 2); - Module['_emscripten_bind_AreaUnits_fromBaseUnits_2'] = _emscripten_bind_AreaUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_AreaUnits_fromBaseUnits_2', 2); - Module['_emscripten_bind_AreaUnits___destroy___0'] = _emscripten_bind_AreaUnits___destroy___0 = createExportWrapper('emscripten_bind_AreaUnits___destroy___0', 1); - Module['_emscripten_bind_BasalAreaUnits_toBaseUnits_2'] = _emscripten_bind_BasalAreaUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_BasalAreaUnits_toBaseUnits_2', 2); - Module['_emscripten_bind_BasalAreaUnits_fromBaseUnits_2'] = _emscripten_bind_BasalAreaUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_BasalAreaUnits_fromBaseUnits_2', 2); - Module['_emscripten_bind_BasalAreaUnits___destroy___0'] = _emscripten_bind_BasalAreaUnits___destroy___0 = createExportWrapper('emscripten_bind_BasalAreaUnits___destroy___0', 1); - Module['_emscripten_bind_FractionUnits_toBaseUnits_2'] = _emscripten_bind_FractionUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_FractionUnits_toBaseUnits_2', 2); - Module['_emscripten_bind_FractionUnits_fromBaseUnits_2'] = _emscripten_bind_FractionUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_FractionUnits_fromBaseUnits_2', 2); - Module['_emscripten_bind_FractionUnits___destroy___0'] = _emscripten_bind_FractionUnits___destroy___0 = createExportWrapper('emscripten_bind_FractionUnits___destroy___0', 1); - Module['_emscripten_bind_LengthUnits_toBaseUnits_2'] = _emscripten_bind_LengthUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_LengthUnits_toBaseUnits_2', 2); - Module['_emscripten_bind_LengthUnits_fromBaseUnits_2'] = _emscripten_bind_LengthUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_LengthUnits_fromBaseUnits_2', 2); - Module['_emscripten_bind_LengthUnits___destroy___0'] = _emscripten_bind_LengthUnits___destroy___0 = createExportWrapper('emscripten_bind_LengthUnits___destroy___0', 1); - Module['_emscripten_bind_LoadingUnits_toBaseUnits_2'] = _emscripten_bind_LoadingUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_LoadingUnits_toBaseUnits_2', 2); - Module['_emscripten_bind_LoadingUnits_fromBaseUnits_2'] = _emscripten_bind_LoadingUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_LoadingUnits_fromBaseUnits_2', 2); - Module['_emscripten_bind_LoadingUnits___destroy___0'] = _emscripten_bind_LoadingUnits___destroy___0 = createExportWrapper('emscripten_bind_LoadingUnits___destroy___0', 1); - Module['_emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2'] = _emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2', 2); - Module['_emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2'] = _emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2', 2); - Module['_emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0'] = _emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0 = createExportWrapper('emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0', 1); - Module['_emscripten_bind_SpeedUnits_toBaseUnits_2'] = _emscripten_bind_SpeedUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_SpeedUnits_toBaseUnits_2', 2); - Module['_emscripten_bind_SpeedUnits_fromBaseUnits_2'] = _emscripten_bind_SpeedUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_SpeedUnits_fromBaseUnits_2', 2); - Module['_emscripten_bind_SpeedUnits___destroy___0'] = _emscripten_bind_SpeedUnits___destroy___0 = createExportWrapper('emscripten_bind_SpeedUnits___destroy___0', 1); - Module['_emscripten_bind_PressureUnits_toBaseUnits_2'] = _emscripten_bind_PressureUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_PressureUnits_toBaseUnits_2', 2); - Module['_emscripten_bind_PressureUnits_fromBaseUnits_2'] = _emscripten_bind_PressureUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_PressureUnits_fromBaseUnits_2', 2); - Module['_emscripten_bind_PressureUnits___destroy___0'] = _emscripten_bind_PressureUnits___destroy___0 = createExportWrapper('emscripten_bind_PressureUnits___destroy___0', 1); - Module['_emscripten_bind_SlopeUnits_toBaseUnits_2'] = _emscripten_bind_SlopeUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_SlopeUnits_toBaseUnits_2', 2); - Module['_emscripten_bind_SlopeUnits_fromBaseUnits_2'] = _emscripten_bind_SlopeUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_SlopeUnits_fromBaseUnits_2', 2); - Module['_emscripten_bind_SlopeUnits___destroy___0'] = _emscripten_bind_SlopeUnits___destroy___0 = createExportWrapper('emscripten_bind_SlopeUnits___destroy___0', 1); - Module['_emscripten_bind_DensityUnits_toBaseUnits_2'] = _emscripten_bind_DensityUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_DensityUnits_toBaseUnits_2', 2); - Module['_emscripten_bind_DensityUnits_fromBaseUnits_2'] = _emscripten_bind_DensityUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_DensityUnits_fromBaseUnits_2', 2); - Module['_emscripten_bind_DensityUnits___destroy___0'] = _emscripten_bind_DensityUnits___destroy___0 = createExportWrapper('emscripten_bind_DensityUnits___destroy___0', 1); - Module['_emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2'] = _emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2', 2); - Module['_emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2'] = _emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2', 2); - Module['_emscripten_bind_HeatOfCombustionUnits___destroy___0'] = _emscripten_bind_HeatOfCombustionUnits___destroy___0 = createExportWrapper('emscripten_bind_HeatOfCombustionUnits___destroy___0', 1); - Module['_emscripten_bind_HeatSinkUnits_toBaseUnits_2'] = _emscripten_bind_HeatSinkUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_HeatSinkUnits_toBaseUnits_2', 2); - Module['_emscripten_bind_HeatSinkUnits_fromBaseUnits_2'] = _emscripten_bind_HeatSinkUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_HeatSinkUnits_fromBaseUnits_2', 2); - Module['_emscripten_bind_HeatSinkUnits___destroy___0'] = _emscripten_bind_HeatSinkUnits___destroy___0 = createExportWrapper('emscripten_bind_HeatSinkUnits___destroy___0', 1); - Module['_emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2'] = _emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2', 2); - Module['_emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2'] = _emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2', 2); - Module['_emscripten_bind_HeatPerUnitAreaUnits___destroy___0'] = _emscripten_bind_HeatPerUnitAreaUnits___destroy___0 = createExportWrapper('emscripten_bind_HeatPerUnitAreaUnits___destroy___0', 1); - Module['_emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2'] = _emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2', 2); - Module['_emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2'] = _emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2', 2); - Module['_emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0'] = _emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0 = createExportWrapper('emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0', 1); - Module['_emscripten_bind_FirelineIntensityUnits_toBaseUnits_2'] = _emscripten_bind_FirelineIntensityUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_FirelineIntensityUnits_toBaseUnits_2', 2); - Module['_emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2'] = _emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2', 2); - Module['_emscripten_bind_FirelineIntensityUnits___destroy___0'] = _emscripten_bind_FirelineIntensityUnits___destroy___0 = createExportWrapper('emscripten_bind_FirelineIntensityUnits___destroy___0', 1); - Module['_emscripten_bind_TemperatureUnits_toBaseUnits_2'] = _emscripten_bind_TemperatureUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_TemperatureUnits_toBaseUnits_2', 2); - Module['_emscripten_bind_TemperatureUnits_fromBaseUnits_2'] = _emscripten_bind_TemperatureUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_TemperatureUnits_fromBaseUnits_2', 2); - Module['_emscripten_bind_TemperatureUnits___destroy___0'] = _emscripten_bind_TemperatureUnits___destroy___0 = createExportWrapper('emscripten_bind_TemperatureUnits___destroy___0', 1); - Module['_emscripten_bind_TimeUnits_toBaseUnits_2'] = _emscripten_bind_TimeUnits_toBaseUnits_2 = createExportWrapper('emscripten_bind_TimeUnits_toBaseUnits_2', 2); - Module['_emscripten_bind_TimeUnits_fromBaseUnits_2'] = _emscripten_bind_TimeUnits_fromBaseUnits_2 = createExportWrapper('emscripten_bind_TimeUnits_fromBaseUnits_2', 2); - Module['_emscripten_bind_TimeUnits___destroy___0'] = _emscripten_bind_TimeUnits___destroy___0 = createExportWrapper('emscripten_bind_TimeUnits___destroy___0', 1); - Module['_emscripten_bind_FireSize_getBackingSpreadRate_1'] = _emscripten_bind_FireSize_getBackingSpreadRate_1 = createExportWrapper('emscripten_bind_FireSize_getBackingSpreadRate_1', 2); - Module['_emscripten_bind_FireSize_getEccentricity_0'] = _emscripten_bind_FireSize_getEccentricity_0 = createExportWrapper('emscripten_bind_FireSize_getEccentricity_0', 1); - Module['_emscripten_bind_FireSize_getEllipticalA_3'] = _emscripten_bind_FireSize_getEllipticalA_3 = createExportWrapper('emscripten_bind_FireSize_getEllipticalA_3', 4); - Module['_emscripten_bind_FireSize_getEllipticalB_3'] = _emscripten_bind_FireSize_getEllipticalB_3 = createExportWrapper('emscripten_bind_FireSize_getEllipticalB_3', 4); - Module['_emscripten_bind_FireSize_getEllipticalC_3'] = _emscripten_bind_FireSize_getEllipticalC_3 = createExportWrapper('emscripten_bind_FireSize_getEllipticalC_3', 4); - Module['_emscripten_bind_FireSize_getFireArea_4'] = _emscripten_bind_FireSize_getFireArea_4 = createExportWrapper('emscripten_bind_FireSize_getFireArea_4', 5); - Module['_emscripten_bind_FireSize_getFireLength_3'] = _emscripten_bind_FireSize_getFireLength_3 = createExportWrapper('emscripten_bind_FireSize_getFireLength_3', 4); - Module['_emscripten_bind_FireSize_getFireLengthToWidthRatio_0'] = _emscripten_bind_FireSize_getFireLengthToWidthRatio_0 = createExportWrapper('emscripten_bind_FireSize_getFireLengthToWidthRatio_0', 1); - Module['_emscripten_bind_FireSize_getFirePerimeter_4'] = _emscripten_bind_FireSize_getFirePerimeter_4 = createExportWrapper('emscripten_bind_FireSize_getFirePerimeter_4', 5); - Module['_emscripten_bind_FireSize_getFlankingSpreadRate_1'] = _emscripten_bind_FireSize_getFlankingSpreadRate_1 = createExportWrapper('emscripten_bind_FireSize_getFlankingSpreadRate_1', 2); - Module['_emscripten_bind_FireSize_getHeadingToBackingRatio_0'] = _emscripten_bind_FireSize_getHeadingToBackingRatio_0 = createExportWrapper('emscripten_bind_FireSize_getHeadingToBackingRatio_0', 1); - Module['_emscripten_bind_FireSize_getMaxFireWidth_3'] = _emscripten_bind_FireSize_getMaxFireWidth_3 = createExportWrapper('emscripten_bind_FireSize_getMaxFireWidth_3', 4); - Module['_emscripten_bind_FireSize_calculateFireBasicDimensions_5'] = _emscripten_bind_FireSize_calculateFireBasicDimensions_5 = createExportWrapper('emscripten_bind_FireSize_calculateFireBasicDimensions_5', 6); - Module['_emscripten_bind_FireSize___destroy___0'] = _emscripten_bind_FireSize___destroy___0 = createExportWrapper('emscripten_bind_FireSize___destroy___0', 1); - Module['_emscripten_bind_SIGContainAdapter_SIGContainAdapter_0'] = _emscripten_bind_SIGContainAdapter_SIGContainAdapter_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_SIGContainAdapter_0', 0); - Module['_emscripten_bind_SIGContainAdapter_getContainmentStatus_0'] = _emscripten_bind_SIGContainAdapter_getContainmentStatus_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getContainmentStatus_0', 1); - Module['_emscripten_bind_SIGContainAdapter_getFirePerimeterX_0'] = _emscripten_bind_SIGContainAdapter_getFirePerimeterX_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFirePerimeterX_0', 1); - Module['_emscripten_bind_SIGContainAdapter_getFirePerimeterY_0'] = _emscripten_bind_SIGContainAdapter_getFirePerimeterY_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFirePerimeterY_0', 1); - Module['_emscripten_bind_SIGContainAdapter_getAttackDistance_1'] = _emscripten_bind_SIGContainAdapter_getAttackDistance_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getAttackDistance_1', 2); - Module['_emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1'] = _emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1', 2); - Module['_emscripten_bind_SIGContainAdapter_getFinalCost_0'] = _emscripten_bind_SIGContainAdapter_getFinalCost_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFinalCost_0', 1); - Module['_emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1'] = _emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1', 2); - Module['_emscripten_bind_SIGContainAdapter_getFinalFireSize_1'] = _emscripten_bind_SIGContainAdapter_getFinalFireSize_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFinalFireSize_1', 2); - Module['_emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1'] = _emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1', 2); - Module['_emscripten_bind_SIGContainAdapter_getFinalProductionRate_1'] = _emscripten_bind_SIGContainAdapter_getFinalProductionRate_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFinalProductionRate_1', 2); - Module['_emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0'] = _emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0', 1); - Module['_emscripten_bind_SIGContainAdapter_getFireBackAtReport_0'] = _emscripten_bind_SIGContainAdapter_getFireBackAtReport_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFireBackAtReport_0', 1); - Module['_emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0'] = _emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0', 1); - Module['_emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0'] = _emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0', 1); - Module['_emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1'] = _emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1', 2); - Module['_emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0'] = _emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0', 1); - Module['_emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1'] = _emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1', 2); - Module['_emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1'] = _emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1', 2); - Module['_emscripten_bind_SIGContainAdapter_getReportSize_1'] = _emscripten_bind_SIGContainAdapter_getReportSize_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getReportSize_1', 2); - Module['_emscripten_bind_SIGContainAdapter_getReportRate_1'] = _emscripten_bind_SIGContainAdapter_getReportRate_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getReportRate_1', 2); - Module['_emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1'] = _emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1', 2); - Module['_emscripten_bind_SIGContainAdapter_getTactic_0'] = _emscripten_bind_SIGContainAdapter_getTactic_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getTactic_0', 1); - Module['_emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0'] = _emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0', 1); - Module['_emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1'] = _emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1', 2); - Module['_emscripten_bind_SIGContainAdapter_removeResourceAt_1'] = _emscripten_bind_SIGContainAdapter_removeResourceAt_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_removeResourceAt_1', 2); - Module['_emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1'] = _emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1', 2); - Module['_emscripten_bind_SIGContainAdapter_addResource_9'] = _emscripten_bind_SIGContainAdapter_addResource_9 = createExportWrapper('emscripten_bind_SIGContainAdapter_addResource_9', 10); - Module['_emscripten_bind_SIGContainAdapter_doContainRun_0'] = _emscripten_bind_SIGContainAdapter_doContainRun_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_doContainRun_0', 1); - Module['_emscripten_bind_SIGContainAdapter_removeAllResources_0'] = _emscripten_bind_SIGContainAdapter_removeAllResources_0 = createExportWrapper('emscripten_bind_SIGContainAdapter_removeAllResources_0', 1); - Module['_emscripten_bind_SIGContainAdapter_setAttackDistance_2'] = _emscripten_bind_SIGContainAdapter_setAttackDistance_2 = createExportWrapper('emscripten_bind_SIGContainAdapter_setAttackDistance_2', 3); - Module['_emscripten_bind_SIGContainAdapter_setContainMode_1'] = _emscripten_bind_SIGContainAdapter_setContainMode_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setContainMode_1', 2); - Module['_emscripten_bind_SIGContainAdapter_setFireStartTime_1'] = _emscripten_bind_SIGContainAdapter_setFireStartTime_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setFireStartTime_1', 2); - Module['_emscripten_bind_SIGContainAdapter_setLwRatio_1'] = _emscripten_bind_SIGContainAdapter_setLwRatio_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setLwRatio_1', 2); - Module['_emscripten_bind_SIGContainAdapter_setMaxFireSize_1'] = _emscripten_bind_SIGContainAdapter_setMaxFireSize_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setMaxFireSize_1', 2); - Module['_emscripten_bind_SIGContainAdapter_setMaxFireTime_1'] = _emscripten_bind_SIGContainAdapter_setMaxFireTime_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setMaxFireTime_1', 2); - Module['_emscripten_bind_SIGContainAdapter_setMaxSteps_1'] = _emscripten_bind_SIGContainAdapter_setMaxSteps_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setMaxSteps_1', 2); - Module['_emscripten_bind_SIGContainAdapter_setMinSteps_1'] = _emscripten_bind_SIGContainAdapter_setMinSteps_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setMinSteps_1', 2); - Module['_emscripten_bind_SIGContainAdapter_setReportRate_2'] = _emscripten_bind_SIGContainAdapter_setReportRate_2 = createExportWrapper('emscripten_bind_SIGContainAdapter_setReportRate_2', 3); - Module['_emscripten_bind_SIGContainAdapter_setReportSize_2'] = _emscripten_bind_SIGContainAdapter_setReportSize_2 = createExportWrapper('emscripten_bind_SIGContainAdapter_setReportSize_2', 3); - Module['_emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2'] = _emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2 = createExportWrapper('emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2', 3); - Module['_emscripten_bind_SIGContainAdapter_setResourceDuration_2'] = _emscripten_bind_SIGContainAdapter_setResourceDuration_2 = createExportWrapper('emscripten_bind_SIGContainAdapter_setResourceDuration_2', 3); - Module['_emscripten_bind_SIGContainAdapter_setRetry_1'] = _emscripten_bind_SIGContainAdapter_setRetry_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setRetry_1', 2); - Module['_emscripten_bind_SIGContainAdapter_setTactic_1'] = _emscripten_bind_SIGContainAdapter_setTactic_1 = createExportWrapper('emscripten_bind_SIGContainAdapter_setTactic_1', 2); - Module['_emscripten_bind_SIGContainAdapter___destroy___0'] = _emscripten_bind_SIGContainAdapter___destroy___0 = createExportWrapper('emscripten_bind_SIGContainAdapter___destroy___0', 1); - Module['_emscripten_bind_SIGIgnite_SIGIgnite_0'] = _emscripten_bind_SIGIgnite_SIGIgnite_0 = createExportWrapper('emscripten_bind_SIGIgnite_SIGIgnite_0', 0); - Module['_emscripten_bind_SIGIgnite_initializeMembers_0'] = _emscripten_bind_SIGIgnite_initializeMembers_0 = createExportWrapper('emscripten_bind_SIGIgnite_initializeMembers_0', 1); - Module['_emscripten_bind_SIGIgnite_getFuelBedType_0'] = _emscripten_bind_SIGIgnite_getFuelBedType_0 = createExportWrapper('emscripten_bind_SIGIgnite_getFuelBedType_0', 1); - Module['_emscripten_bind_SIGIgnite_getLightningChargeType_0'] = _emscripten_bind_SIGIgnite_getLightningChargeType_0 = createExportWrapper('emscripten_bind_SIGIgnite_getLightningChargeType_0', 1); - Module['_emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0'] = _emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0 = createExportWrapper('emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0', 1); - Module['_emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1'] = _emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1 = createExportWrapper('emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1', 2); - Module['_emscripten_bind_SIGIgnite_setAirTemperature_2'] = _emscripten_bind_SIGIgnite_setAirTemperature_2 = createExportWrapper('emscripten_bind_SIGIgnite_setAirTemperature_2', 3); - Module['_emscripten_bind_SIGIgnite_setDuffDepth_2'] = _emscripten_bind_SIGIgnite_setDuffDepth_2 = createExportWrapper('emscripten_bind_SIGIgnite_setDuffDepth_2', 3); - Module['_emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1'] = _emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1 = createExportWrapper('emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1', 2); - Module['_emscripten_bind_SIGIgnite_setLightningChargeType_1'] = _emscripten_bind_SIGIgnite_setLightningChargeType_1 = createExportWrapper('emscripten_bind_SIGIgnite_setLightningChargeType_1', 2); - Module['_emscripten_bind_SIGIgnite_setMoistureHundredHour_2'] = _emscripten_bind_SIGIgnite_setMoistureHundredHour_2 = createExportWrapper('emscripten_bind_SIGIgnite_setMoistureHundredHour_2', 3); - Module['_emscripten_bind_SIGIgnite_setMoistureOneHour_2'] = _emscripten_bind_SIGIgnite_setMoistureOneHour_2 = createExportWrapper('emscripten_bind_SIGIgnite_setMoistureOneHour_2', 3); - Module['_emscripten_bind_SIGIgnite_setSunShade_2'] = _emscripten_bind_SIGIgnite_setSunShade_2 = createExportWrapper('emscripten_bind_SIGIgnite_setSunShade_2', 3); - Module['_emscripten_bind_SIGIgnite_updateIgniteInputs_11'] = _emscripten_bind_SIGIgnite_updateIgniteInputs_11 = createExportWrapper('emscripten_bind_SIGIgnite_updateIgniteInputs_11', 12); - Module['_emscripten_bind_SIGIgnite_getAirTemperature_1'] = _emscripten_bind_SIGIgnite_getAirTemperature_1 = createExportWrapper('emscripten_bind_SIGIgnite_getAirTemperature_1', 2); - Module['_emscripten_bind_SIGIgnite_getDuffDepth_1'] = _emscripten_bind_SIGIgnite_getDuffDepth_1 = createExportWrapper('emscripten_bind_SIGIgnite_getDuffDepth_1', 2); - Module['_emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1'] = _emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1 = createExportWrapper('emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1', 2); - Module['_emscripten_bind_SIGIgnite_getFuelTemperature_1'] = _emscripten_bind_SIGIgnite_getFuelTemperature_1 = createExportWrapper('emscripten_bind_SIGIgnite_getFuelTemperature_1', 2); - Module['_emscripten_bind_SIGIgnite_getMoistureHundredHour_1'] = _emscripten_bind_SIGIgnite_getMoistureHundredHour_1 = createExportWrapper('emscripten_bind_SIGIgnite_getMoistureHundredHour_1', 2); - Module['_emscripten_bind_SIGIgnite_getMoistureOneHour_1'] = _emscripten_bind_SIGIgnite_getMoistureOneHour_1 = createExportWrapper('emscripten_bind_SIGIgnite_getMoistureOneHour_1', 2); - Module['_emscripten_bind_SIGIgnite_getSunShade_1'] = _emscripten_bind_SIGIgnite_getSunShade_1 = createExportWrapper('emscripten_bind_SIGIgnite_getSunShade_1', 2); - Module['_emscripten_bind_SIGIgnite_isFuelDepthNeeded_0'] = _emscripten_bind_SIGIgnite_isFuelDepthNeeded_0 = createExportWrapper('emscripten_bind_SIGIgnite_isFuelDepthNeeded_0', 1); - Module['_emscripten_bind_SIGIgnite___destroy___0'] = _emscripten_bind_SIGIgnite___destroy___0 = createExportWrapper('emscripten_bind_SIGIgnite___destroy___0', 1); - Module['_emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0'] = _emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0', 0); - Module['_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1'] = _emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1', 2); - Module['_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1'] = _emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1', 2); - Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2', 3); - Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2', 3); - Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2', 3); - Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2', 3); - Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2', 3); - Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2', 3); - Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2', 3); - Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2', 3); - Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2', 3); - Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2', 3); - Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1', 2); - Module['_emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0'] = _emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0', 1); - Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1', 2); - Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1', 2); - Module['_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1'] = _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1 = createExportWrapper('emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1', 2); - Module['_emscripten_bind_SIGMoistureScenarios___destroy___0'] = _emscripten_bind_SIGMoistureScenarios___destroy___0 = createExportWrapper('emscripten_bind_SIGMoistureScenarios___destroy___0', 1); - Module['_emscripten_bind_SIGSpot_SIGSpot_0'] = _emscripten_bind_SIGSpot_SIGSpot_0 = createExportWrapper('emscripten_bind_SIGSpot_SIGSpot_0', 0); - Module['_emscripten_bind_SIGSpot_getDownwindCanopyMode_0'] = _emscripten_bind_SIGSpot_getDownwindCanopyMode_0 = createExportWrapper('emscripten_bind_SIGSpot_getDownwindCanopyMode_0', 1); - Module['_emscripten_bind_SIGSpot_getLocation_0'] = _emscripten_bind_SIGSpot_getLocation_0 = createExportWrapper('emscripten_bind_SIGSpot_getLocation_0', 1); - Module['_emscripten_bind_SIGSpot_getTreeSpecies_0'] = _emscripten_bind_SIGSpot_getTreeSpecies_0 = createExportWrapper('emscripten_bind_SIGSpot_getTreeSpecies_0', 1); - Module['_emscripten_bind_SIGSpot_getBurningPileFlameHeight_1'] = _emscripten_bind_SIGSpot_getBurningPileFlameHeight_1 = createExportWrapper('emscripten_bind_SIGSpot_getBurningPileFlameHeight_1', 2); - Module['_emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1'] = _emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1 = createExportWrapper('emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1', 2); - Module['_emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1'] = _emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1 = createExportWrapper('emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1', 2); - Module['_emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1'] = _emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1 = createExportWrapper('emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1', 2); - Module['_emscripten_bind_SIGSpot_getDBH_1'] = _emscripten_bind_SIGSpot_getDBH_1 = createExportWrapper('emscripten_bind_SIGSpot_getDBH_1', 2); - Module['_emscripten_bind_SIGSpot_getDownwindCoverHeight_1'] = _emscripten_bind_SIGSpot_getDownwindCoverHeight_1 = createExportWrapper('emscripten_bind_SIGSpot_getDownwindCoverHeight_1', 2); - Module['_emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1'] = _emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1 = createExportWrapper('emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1', 2); - Module['_emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1'] = _emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1 = createExportWrapper('emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1', 2); - Module['_emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0'] = _emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0 = createExportWrapper('emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0', 1); - Module['_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1'] = _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1', 2); - Module['_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1'] = _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1', 2); - Module['_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1'] = _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1', 2); - Module['_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1'] = _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1', 2); - Module['_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1'] = _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1', 2); - Module['_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1'] = _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1', 2); - Module['_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1'] = _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1', 2); - Module['_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1'] = _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1', 2); - Module['_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1'] = _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1', 2); - Module['_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1'] = _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1 = createExportWrapper('emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1', 2); - Module['_emscripten_bind_SIGSpot_getRidgeToValleyDistance_1'] = _emscripten_bind_SIGSpot_getRidgeToValleyDistance_1 = createExportWrapper('emscripten_bind_SIGSpot_getRidgeToValleyDistance_1', 2); - Module['_emscripten_bind_SIGSpot_getRidgeToValleyElevation_1'] = _emscripten_bind_SIGSpot_getRidgeToValleyElevation_1 = createExportWrapper('emscripten_bind_SIGSpot_getRidgeToValleyElevation_1', 2); - Module['_emscripten_bind_SIGSpot_getSurfaceFlameLength_1'] = _emscripten_bind_SIGSpot_getSurfaceFlameLength_1 = createExportWrapper('emscripten_bind_SIGSpot_getSurfaceFlameLength_1', 2); - Module['_emscripten_bind_SIGSpot_getTreeHeight_1'] = _emscripten_bind_SIGSpot_getTreeHeight_1 = createExportWrapper('emscripten_bind_SIGSpot_getTreeHeight_1', 2); - Module['_emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1'] = _emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1 = createExportWrapper('emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1', 2); - Module['_emscripten_bind_SIGSpot_getTorchingTrees_0'] = _emscripten_bind_SIGSpot_getTorchingTrees_0 = createExportWrapper('emscripten_bind_SIGSpot_getTorchingTrees_0', 1); - Module['_emscripten_bind_SIGSpot_calculateAll_0'] = _emscripten_bind_SIGSpot_calculateAll_0 = createExportWrapper('emscripten_bind_SIGSpot_calculateAll_0', 1); - Module['_emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0'] = _emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0 = createExportWrapper('emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0', 1); - Module['_emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0'] = _emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0 = createExportWrapper('emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0', 1); - Module['_emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0'] = _emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0 = createExportWrapper('emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0', 1); - Module['_emscripten_bind_SIGSpot_initializeMembers_0'] = _emscripten_bind_SIGSpot_initializeMembers_0 = createExportWrapper('emscripten_bind_SIGSpot_initializeMembers_0', 1); - Module['_emscripten_bind_SIGSpot_setActiveCrownFlameLength_2'] = _emscripten_bind_SIGSpot_setActiveCrownFlameLength_2 = createExportWrapper('emscripten_bind_SIGSpot_setActiveCrownFlameLength_2', 3); - Module['_emscripten_bind_SIGSpot_setBurningPileFlameHeight_2'] = _emscripten_bind_SIGSpot_setBurningPileFlameHeight_2 = createExportWrapper('emscripten_bind_SIGSpot_setBurningPileFlameHeight_2', 3); - Module['_emscripten_bind_SIGSpot_setDBH_2'] = _emscripten_bind_SIGSpot_setDBH_2 = createExportWrapper('emscripten_bind_SIGSpot_setDBH_2', 3); - Module['_emscripten_bind_SIGSpot_setDownwindCanopyMode_1'] = _emscripten_bind_SIGSpot_setDownwindCanopyMode_1 = createExportWrapper('emscripten_bind_SIGSpot_setDownwindCanopyMode_1', 2); - Module['_emscripten_bind_SIGSpot_setDownwindCoverHeight_2'] = _emscripten_bind_SIGSpot_setDownwindCoverHeight_2 = createExportWrapper('emscripten_bind_SIGSpot_setDownwindCoverHeight_2', 3); - Module['_emscripten_bind_SIGSpot_setFireType_1'] = _emscripten_bind_SIGSpot_setFireType_1 = createExportWrapper('emscripten_bind_SIGSpot_setFireType_1', 2); - Module['_emscripten_bind_SIGSpot_setFlameLength_2'] = _emscripten_bind_SIGSpot_setFlameLength_2 = createExportWrapper('emscripten_bind_SIGSpot_setFlameLength_2', 3); - Module['_emscripten_bind_SIGSpot_setFirelineIntensity_2'] = _emscripten_bind_SIGSpot_setFirelineIntensity_2 = createExportWrapper('emscripten_bind_SIGSpot_setFirelineIntensity_2', 3); - Module['_emscripten_bind_SIGSpot_setLocation_1'] = _emscripten_bind_SIGSpot_setLocation_1 = createExportWrapper('emscripten_bind_SIGSpot_setLocation_1', 2); - Module['_emscripten_bind_SIGSpot_setRidgeToValleyDistance_2'] = _emscripten_bind_SIGSpot_setRidgeToValleyDistance_2 = createExportWrapper('emscripten_bind_SIGSpot_setRidgeToValleyDistance_2', 3); - Module['_emscripten_bind_SIGSpot_setRidgeToValleyElevation_2'] = _emscripten_bind_SIGSpot_setRidgeToValleyElevation_2 = createExportWrapper('emscripten_bind_SIGSpot_setRidgeToValleyElevation_2', 3); - Module['_emscripten_bind_SIGSpot_setTorchingTrees_1'] = _emscripten_bind_SIGSpot_setTorchingTrees_1 = createExportWrapper('emscripten_bind_SIGSpot_setTorchingTrees_1', 2); - Module['_emscripten_bind_SIGSpot_setTreeHeight_2'] = _emscripten_bind_SIGSpot_setTreeHeight_2 = createExportWrapper('emscripten_bind_SIGSpot_setTreeHeight_2', 3); - Module['_emscripten_bind_SIGSpot_setTreeSpecies_1'] = _emscripten_bind_SIGSpot_setTreeSpecies_1 = createExportWrapper('emscripten_bind_SIGSpot_setTreeSpecies_1', 2); - Module['_emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2'] = _emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2 = createExportWrapper('emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2', 3); - Module['_emscripten_bind_SIGSpot_setWindSpeed_2'] = _emscripten_bind_SIGSpot_setWindSpeed_2 = createExportWrapper('emscripten_bind_SIGSpot_setWindSpeed_2', 3); - Module['_emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3'] = _emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3 = createExportWrapper('emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3', 4); - Module['_emscripten_bind_SIGSpot_setWindHeightInputMode_1'] = _emscripten_bind_SIGSpot_setWindHeightInputMode_1 = createExportWrapper('emscripten_bind_SIGSpot_setWindHeightInputMode_1', 2); - Module['_emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12'] = _emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12 = createExportWrapper('emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12', 13); - Module['_emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12'] = _emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12 = createExportWrapper('emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12', 13); - Module['_emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16'] = _emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16 = createExportWrapper('emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16', 17); - Module['_emscripten_bind_SIGSpot___destroy___0'] = _emscripten_bind_SIGSpot___destroy___0 = createExportWrapper('emscripten_bind_SIGSpot___destroy___0', 1); - Module['_emscripten_bind_SIGFuelModels_SIGFuelModels_0'] = _emscripten_bind_SIGFuelModels_SIGFuelModels_0 = createExportWrapper('emscripten_bind_SIGFuelModels_SIGFuelModels_0', 0); - Module['_emscripten_bind_SIGFuelModels_SIGFuelModels_1'] = _emscripten_bind_SIGFuelModels_SIGFuelModels_1 = createExportWrapper('emscripten_bind_SIGFuelModels_SIGFuelModels_1', 1); - Module['_emscripten_bind_SIGFuelModels_equal_1'] = _emscripten_bind_SIGFuelModels_equal_1 = createExportWrapper('emscripten_bind_SIGFuelModels_equal_1', 2); - Module['_emscripten_bind_SIGFuelModels_clearCustomFuelModel_1'] = _emscripten_bind_SIGFuelModels_clearCustomFuelModel_1 = createExportWrapper('emscripten_bind_SIGFuelModels_clearCustomFuelModel_1', 2); - Module['_emscripten_bind_SIGFuelModels_getIsDynamic_1'] = _emscripten_bind_SIGFuelModels_getIsDynamic_1 = createExportWrapper('emscripten_bind_SIGFuelModels_getIsDynamic_1', 2); - Module['_emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1'] = _emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1 = createExportWrapper('emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1', 2); - Module['_emscripten_bind_SIGFuelModels_isFuelModelDefined_1'] = _emscripten_bind_SIGFuelModels_isFuelModelDefined_1 = createExportWrapper('emscripten_bind_SIGFuelModels_isFuelModelDefined_1', 2); - Module['_emscripten_bind_SIGFuelModels_isFuelModelReserved_1'] = _emscripten_bind_SIGFuelModels_isFuelModelReserved_1 = createExportWrapper('emscripten_bind_SIGFuelModels_isFuelModelReserved_1', 2); - Module['_emscripten_bind_SIGFuelModels_setCustomFuelModel_21'] = _emscripten_bind_SIGFuelModels_setCustomFuelModel_21 = createExportWrapper('emscripten_bind_SIGFuelModels_setCustomFuelModel_21', 22); - Module['_emscripten_bind_SIGFuelModels_getFuelCode_1'] = _emscripten_bind_SIGFuelModels_getFuelCode_1 = createExportWrapper('emscripten_bind_SIGFuelModels_getFuelCode_1', 2); - Module['_emscripten_bind_SIGFuelModels_getFuelName_1'] = _emscripten_bind_SIGFuelModels_getFuelName_1 = createExportWrapper('emscripten_bind_SIGFuelModels_getFuelName_1', 2); - Module['_emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2'] = _emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2', 3); - Module['_emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2'] = _emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2', 3); - Module['_emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2'] = _emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2', 3); - Module['_emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2'] = _emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2', 3); - Module['_emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2'] = _emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2', 3); - Module['_emscripten_bind_SIGFuelModels_getFuelbedDepth_2'] = _emscripten_bind_SIGFuelModels_getFuelbedDepth_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getFuelbedDepth_2', 3); - Module['_emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2'] = _emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2', 3); - Module['_emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2'] = _emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2', 3); - Module['_emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2'] = _emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2', 3); - Module['_emscripten_bind_SIGFuelModels_getSavrLiveWoody_2'] = _emscripten_bind_SIGFuelModels_getSavrLiveWoody_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getSavrLiveWoody_2', 3); - Module['_emscripten_bind_SIGFuelModels_getSavrOneHour_2'] = _emscripten_bind_SIGFuelModels_getSavrOneHour_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getSavrOneHour_2', 3); - Module['_emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2'] = _emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2 = createExportWrapper('emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2', 3); - Module['_emscripten_bind_SIGFuelModels___destroy___0'] = _emscripten_bind_SIGFuelModels___destroy___0 = createExportWrapper('emscripten_bind_SIGFuelModels___destroy___0', 1); - Module['_emscripten_bind_SIGSurface_SIGSurface_1'] = _emscripten_bind_SIGSurface_SIGSurface_1 = createExportWrapper('emscripten_bind_SIGSurface_SIGSurface_1', 1); - Module['_emscripten_bind_SIGSurface_getAspenFireSeverity_0'] = _emscripten_bind_SIGSurface_getAspenFireSeverity_0 = createExportWrapper('emscripten_bind_SIGSurface_getAspenFireSeverity_0', 1); - Module['_emscripten_bind_SIGSurface_getChaparralFuelType_0'] = _emscripten_bind_SIGSurface_getChaparralFuelType_0 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralFuelType_0', 1); - Module['_emscripten_bind_SIGSurface_getMoistureInputMode_0'] = _emscripten_bind_SIGSurface_getMoistureInputMode_0 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureInputMode_0', 1); - Module['_emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0'] = _emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0 = createExportWrapper('emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0', 1); - Module['_emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0'] = _emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0 = createExportWrapper('emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0', 1); - Module['_emscripten_bind_SIGSurface_getWindHeightInputMode_0'] = _emscripten_bind_SIGSurface_getWindHeightInputMode_0 = createExportWrapper('emscripten_bind_SIGSurface_getWindHeightInputMode_0', 1); - Module['_emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0'] = _emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0 = createExportWrapper('emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0', 1); - Module['_emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0'] = _emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0 = createExportWrapper('emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0', 1); - Module['_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1'] = _emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1 = createExportWrapper('emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1', 2); - Module['_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1'] = _emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1 = createExportWrapper('emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1', 2); - Module['_emscripten_bind_SIGSurface_getIsUsingChaparral_0'] = _emscripten_bind_SIGSurface_getIsUsingChaparral_0 = createExportWrapper('emscripten_bind_SIGSurface_getIsUsingChaparral_0', 1); - Module['_emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0'] = _emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0 = createExportWrapper('emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0', 1); - Module['_emscripten_bind_SIGSurface_getIsUsingWesternAspen_0'] = _emscripten_bind_SIGSurface_getIsUsingWesternAspen_0 = createExportWrapper('emscripten_bind_SIGSurface_getIsUsingWesternAspen_0', 1); - Module['_emscripten_bind_SIGSurface_isAllFuelLoadZero_1'] = _emscripten_bind_SIGSurface_isAllFuelLoadZero_1 = createExportWrapper('emscripten_bind_SIGSurface_isAllFuelLoadZero_1', 2); - Module['_emscripten_bind_SIGSurface_isFuelDynamic_1'] = _emscripten_bind_SIGSurface_isFuelDynamic_1 = createExportWrapper('emscripten_bind_SIGSurface_isFuelDynamic_1', 2); - Module['_emscripten_bind_SIGSurface_isFuelModelDefined_1'] = _emscripten_bind_SIGSurface_isFuelModelDefined_1 = createExportWrapper('emscripten_bind_SIGSurface_isFuelModelDefined_1', 2); - Module['_emscripten_bind_SIGSurface_isFuelModelReserved_1'] = _emscripten_bind_SIGSurface_isFuelModelReserved_1 = createExportWrapper('emscripten_bind_SIGSurface_isFuelModelReserved_1', 2); - Module['_emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1'] = _emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1 = createExportWrapper('emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1', 2); - Module['_emscripten_bind_SIGSurface_isUsingTwoFuelModels_0'] = _emscripten_bind_SIGSurface_isUsingTwoFuelModels_0 = createExportWrapper('emscripten_bind_SIGSurface_isUsingTwoFuelModels_0', 1); - Module['_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1'] = _emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1 = createExportWrapper('emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1', 2); - Module['_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1'] = _emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1 = createExportWrapper('emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1', 2); - Module['_emscripten_bind_SIGSurface_calculateFlameLength_3'] = _emscripten_bind_SIGSurface_calculateFlameLength_3 = createExportWrapper('emscripten_bind_SIGSurface_calculateFlameLength_3', 4); - Module['_emscripten_bind_SIGSurface_getAgeOfRough_0'] = _emscripten_bind_SIGSurface_getAgeOfRough_0 = createExportWrapper('emscripten_bind_SIGSurface_getAgeOfRough_0', 1); - Module['_emscripten_bind_SIGSurface_getAspect_0'] = _emscripten_bind_SIGSurface_getAspect_0 = createExportWrapper('emscripten_bind_SIGSurface_getAspect_0', 1); - Module['_emscripten_bind_SIGSurface_getAspenCuringLevel_1'] = _emscripten_bind_SIGSurface_getAspenCuringLevel_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenCuringLevel_1', 2); - Module['_emscripten_bind_SIGSurface_getAspenDBH_1'] = _emscripten_bind_SIGSurface_getAspenDBH_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenDBH_1', 2); - Module['_emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1'] = _emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1', 2); - Module['_emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1'] = _emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1', 2); - Module['_emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1'] = _emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1', 2); - Module['_emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1'] = _emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1', 2); - Module['_emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1'] = _emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1', 2); - Module['_emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1'] = _emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1', 2); - Module['_emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1'] = _emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1', 2); - Module['_emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1'] = _emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1 = createExportWrapper('emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1', 2); - Module['_emscripten_bind_SIGSurface_getBackingFirelineIntensity_1'] = _emscripten_bind_SIGSurface_getBackingFirelineIntensity_1 = createExportWrapper('emscripten_bind_SIGSurface_getBackingFirelineIntensity_1', 2); - Module['_emscripten_bind_SIGSurface_getBackingFlameLength_1'] = _emscripten_bind_SIGSurface_getBackingFlameLength_1 = createExportWrapper('emscripten_bind_SIGSurface_getBackingFlameLength_1', 2); - Module['_emscripten_bind_SIGSurface_getBackingSpreadDistance_1'] = _emscripten_bind_SIGSurface_getBackingSpreadDistance_1 = createExportWrapper('emscripten_bind_SIGSurface_getBackingSpreadDistance_1', 2); - Module['_emscripten_bind_SIGSurface_getBackingSpreadRate_1'] = _emscripten_bind_SIGSurface_getBackingSpreadRate_1 = createExportWrapper('emscripten_bind_SIGSurface_getBackingSpreadRate_1', 2); - Module['_emscripten_bind_SIGSurface_getBulkDensity_1'] = _emscripten_bind_SIGSurface_getBulkDensity_1 = createExportWrapper('emscripten_bind_SIGSurface_getBulkDensity_1', 2); - Module['_emscripten_bind_SIGSurface_getCanopyCover_1'] = _emscripten_bind_SIGSurface_getCanopyCover_1 = createExportWrapper('emscripten_bind_SIGSurface_getCanopyCover_1', 2); - Module['_emscripten_bind_SIGSurface_getCanopyHeight_1'] = _emscripten_bind_SIGSurface_getCanopyHeight_1 = createExportWrapper('emscripten_bind_SIGSurface_getCanopyHeight_1', 2); - Module['_emscripten_bind_SIGSurface_getChaparralAge_1'] = _emscripten_bind_SIGSurface_getChaparralAge_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralAge_1', 2); - Module['_emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0'] = _emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0', 1); - Module['_emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0'] = _emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0', 1); - Module['_emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1'] = _emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1', 2); - Module['_emscripten_bind_SIGSurface_getChaparralDensity_3'] = _emscripten_bind_SIGSurface_getChaparralDensity_3 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralDensity_3', 4); - Module['_emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1'] = _emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1', 2); - Module['_emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0'] = _emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0', 1); - Module['_emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3'] = _emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3', 4); - Module['_emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1'] = _emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1', 2); - Module['_emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1'] = _emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1', 2); - Module['_emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1'] = _emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1', 2); - Module['_emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1'] = _emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1', 2); - Module['_emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1'] = _emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1', 2); - Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1'] = _emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1', 2); - Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1'] = _emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1', 2); - Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1'] = _emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1', 2); - Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1'] = _emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1', 2); - Module['_emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1'] = _emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1', 2); - Module['_emscripten_bind_SIGSurface_getChaparralMoisture_3'] = _emscripten_bind_SIGSurface_getChaparralMoisture_3 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralMoisture_3', 4); - Module['_emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1'] = _emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1', 2); - Module['_emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1'] = _emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1', 2); - Module['_emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1'] = _emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1', 2); - Module['_emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2'] = _emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2 = createExportWrapper('emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2', 3); - Module['_emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1'] = _emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1 = createExportWrapper('emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1', 2); - Module['_emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1'] = _emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1 = createExportWrapper('emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1', 2); - Module['_emscripten_bind_SIGSurface_getCharacteristicSAVR_1'] = _emscripten_bind_SIGSurface_getCharacteristicSAVR_1 = createExportWrapper('emscripten_bind_SIGSurface_getCharacteristicSAVR_1', 2); - Module['_emscripten_bind_SIGSurface_getCrownRatio_1'] = _emscripten_bind_SIGSurface_getCrownRatio_1 = createExportWrapper('emscripten_bind_SIGSurface_getCrownRatio_1', 2); - Module['_emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0'] = _emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0 = createExportWrapper('emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0', 1); - Module['_emscripten_bind_SIGSurface_getDirectionOfInterest_0'] = _emscripten_bind_SIGSurface_getDirectionOfInterest_0 = createExportWrapper('emscripten_bind_SIGSurface_getDirectionOfInterest_0', 1); - Module['_emscripten_bind_SIGSurface_getDirectionOfBacking_0'] = _emscripten_bind_SIGSurface_getDirectionOfBacking_0 = createExportWrapper('emscripten_bind_SIGSurface_getDirectionOfBacking_0', 1); - Module['_emscripten_bind_SIGSurface_getDirectionOfFlanking_0'] = _emscripten_bind_SIGSurface_getDirectionOfFlanking_0 = createExportWrapper('emscripten_bind_SIGSurface_getDirectionOfFlanking_0', 1); - Module['_emscripten_bind_SIGSurface_getElapsedTime_1'] = _emscripten_bind_SIGSurface_getElapsedTime_1 = createExportWrapper('emscripten_bind_SIGSurface_getElapsedTime_1', 2); - Module['_emscripten_bind_SIGSurface_getEllipticalA_1'] = _emscripten_bind_SIGSurface_getEllipticalA_1 = createExportWrapper('emscripten_bind_SIGSurface_getEllipticalA_1', 2); - Module['_emscripten_bind_SIGSurface_getEllipticalB_1'] = _emscripten_bind_SIGSurface_getEllipticalB_1 = createExportWrapper('emscripten_bind_SIGSurface_getEllipticalB_1', 2); - Module['_emscripten_bind_SIGSurface_getEllipticalC_1'] = _emscripten_bind_SIGSurface_getEllipticalC_1 = createExportWrapper('emscripten_bind_SIGSurface_getEllipticalC_1', 2); - Module['_emscripten_bind_SIGSurface_getFireLength_1'] = _emscripten_bind_SIGSurface_getFireLength_1 = createExportWrapper('emscripten_bind_SIGSurface_getFireLength_1', 2); - Module['_emscripten_bind_SIGSurface_getMaxFireWidth_1'] = _emscripten_bind_SIGSurface_getMaxFireWidth_1 = createExportWrapper('emscripten_bind_SIGSurface_getMaxFireWidth_1', 2); - Module['_emscripten_bind_SIGSurface_getFireArea_1'] = _emscripten_bind_SIGSurface_getFireArea_1 = createExportWrapper('emscripten_bind_SIGSurface_getFireArea_1', 2); - Module['_emscripten_bind_SIGSurface_getFireEccentricity_0'] = _emscripten_bind_SIGSurface_getFireEccentricity_0 = createExportWrapper('emscripten_bind_SIGSurface_getFireEccentricity_0', 1); - Module['_emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0'] = _emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0 = createExportWrapper('emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0', 1); - Module['_emscripten_bind_SIGSurface_getFirePerimeter_1'] = _emscripten_bind_SIGSurface_getFirePerimeter_1 = createExportWrapper('emscripten_bind_SIGSurface_getFirePerimeter_1', 2); - Module['_emscripten_bind_SIGSurface_getFirelineIntensity_1'] = _emscripten_bind_SIGSurface_getFirelineIntensity_1 = createExportWrapper('emscripten_bind_SIGSurface_getFirelineIntensity_1', 2); - Module['_emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1'] = _emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1 = createExportWrapper('emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1', 2); - Module['_emscripten_bind_SIGSurface_getFlameLength_1'] = _emscripten_bind_SIGSurface_getFlameLength_1 = createExportWrapper('emscripten_bind_SIGSurface_getFlameLength_1', 2); - Module['_emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1'] = _emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1 = createExportWrapper('emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1', 2); - Module['_emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1'] = _emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1 = createExportWrapper('emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1', 2); - Module['_emscripten_bind_SIGSurface_getFlankingFlameLength_1'] = _emscripten_bind_SIGSurface_getFlankingFlameLength_1 = createExportWrapper('emscripten_bind_SIGSurface_getFlankingFlameLength_1', 2); - Module['_emscripten_bind_SIGSurface_getFlankingSpreadRate_1'] = _emscripten_bind_SIGSurface_getFlankingSpreadRate_1 = createExportWrapper('emscripten_bind_SIGSurface_getFlankingSpreadRate_1', 2); - Module['_emscripten_bind_SIGSurface_getFlankingSpreadDistance_1'] = _emscripten_bind_SIGSurface_getFlankingSpreadDistance_1 = createExportWrapper('emscripten_bind_SIGSurface_getFlankingSpreadDistance_1', 2); - Module['_emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2'] = _emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2', 3); - Module['_emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2'] = _emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2', 3); - Module['_emscripten_bind_SIGSurface_getFuelLoadHundredHour_2'] = _emscripten_bind_SIGSurface_getFuelLoadHundredHour_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelLoadHundredHour_2', 3); - Module['_emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2'] = _emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2', 3); - Module['_emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2'] = _emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2', 3); - Module['_emscripten_bind_SIGSurface_getFuelLoadOneHour_2'] = _emscripten_bind_SIGSurface_getFuelLoadOneHour_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelLoadOneHour_2', 3); - Module['_emscripten_bind_SIGSurface_getFuelLoadTenHour_2'] = _emscripten_bind_SIGSurface_getFuelLoadTenHour_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelLoadTenHour_2', 3); - Module['_emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2'] = _emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2', 3); - Module['_emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2'] = _emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2', 3); - Module['_emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2'] = _emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2', 3); - Module['_emscripten_bind_SIGSurface_getFuelSavrOneHour_2'] = _emscripten_bind_SIGSurface_getFuelSavrOneHour_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelSavrOneHour_2', 3); - Module['_emscripten_bind_SIGSurface_getFuelbedDepth_2'] = _emscripten_bind_SIGSurface_getFuelbedDepth_2 = createExportWrapper('emscripten_bind_SIGSurface_getFuelbedDepth_2', 3); - Module['_emscripten_bind_SIGSurface_getHeadingSpreadRate_1'] = _emscripten_bind_SIGSurface_getHeadingSpreadRate_1 = createExportWrapper('emscripten_bind_SIGSurface_getHeadingSpreadRate_1', 2); - Module['_emscripten_bind_SIGSurface_getHeadingToBackingRatio_0'] = _emscripten_bind_SIGSurface_getHeadingToBackingRatio_0 = createExportWrapper('emscripten_bind_SIGSurface_getHeadingToBackingRatio_0', 1); - Module['_emscripten_bind_SIGSurface_getHeatPerUnitArea_1'] = _emscripten_bind_SIGSurface_getHeatPerUnitArea_1 = createExportWrapper('emscripten_bind_SIGSurface_getHeatPerUnitArea_1', 2); - Module['_emscripten_bind_SIGSurface_getHeatSink_1'] = _emscripten_bind_SIGSurface_getHeatSink_1 = createExportWrapper('emscripten_bind_SIGSurface_getHeatSink_1', 2); - Module['_emscripten_bind_SIGSurface_getHeatSource_1'] = _emscripten_bind_SIGSurface_getHeatSource_1 = createExportWrapper('emscripten_bind_SIGSurface_getHeatSource_1', 2); - Module['_emscripten_bind_SIGSurface_getHeightOfUnderstory_1'] = _emscripten_bind_SIGSurface_getHeightOfUnderstory_1 = createExportWrapper('emscripten_bind_SIGSurface_getHeightOfUnderstory_1', 2); - Module['_emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1'] = _emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1 = createExportWrapper('emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1', 2); - Module['_emscripten_bind_SIGSurface_getMidflameWindspeed_1'] = _emscripten_bind_SIGSurface_getMidflameWindspeed_1 = createExportWrapper('emscripten_bind_SIGSurface_getMidflameWindspeed_1', 2); - Module['_emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1'] = _emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1', 2); - Module['_emscripten_bind_SIGSurface_getMoistureHundredHour_1'] = _emscripten_bind_SIGSurface_getMoistureHundredHour_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureHundredHour_1', 2); - Module['_emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1'] = _emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1', 2); - Module['_emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1'] = _emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1', 2); - Module['_emscripten_bind_SIGSurface_getMoistureLiveWoody_1'] = _emscripten_bind_SIGSurface_getMoistureLiveWoody_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureLiveWoody_1', 2); - Module['_emscripten_bind_SIGSurface_getMoistureOneHour_1'] = _emscripten_bind_SIGSurface_getMoistureOneHour_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureOneHour_1', 2); - Module['_emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2', 3); - Module['_emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2', 3); - Module['_emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2', 3); - Module['_emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2', 3); - Module['_emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2', 3); - Module['_emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2', 3); - Module['_emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2', 3); - Module['_emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2', 3); - Module['_emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2', 3); - Module['_emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2'] = _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2', 3); - Module['_emscripten_bind_SIGSurface_getMoistureTenHour_1'] = _emscripten_bind_SIGSurface_getMoistureTenHour_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureTenHour_1', 2); - Module['_emscripten_bind_SIGSurface_getOverstoryBasalArea_1'] = _emscripten_bind_SIGSurface_getOverstoryBasalArea_1 = createExportWrapper('emscripten_bind_SIGSurface_getOverstoryBasalArea_1', 2); - Module['_emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1', 2); - Module['_emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1', 2); - Module['_emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1', 2); - Module['_emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1', 2); - Module['_emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1', 2); - Module['_emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1', 2); - Module['_emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1', 2); - Module['_emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1', 2); - Module['_emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1', 2); - Module['_emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1', 2); - Module['_emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1', 2); - Module['_emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1'] = _emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1', 2); - Module['_emscripten_bind_SIGSurface_getReactionIntensity_1'] = _emscripten_bind_SIGSurface_getReactionIntensity_1 = createExportWrapper('emscripten_bind_SIGSurface_getReactionIntensity_1', 2); - Module['_emscripten_bind_SIGSurface_getResidenceTime_1'] = _emscripten_bind_SIGSurface_getResidenceTime_1 = createExportWrapper('emscripten_bind_SIGSurface_getResidenceTime_1', 2); - Module['_emscripten_bind_SIGSurface_getSlope_1'] = _emscripten_bind_SIGSurface_getSlope_1 = createExportWrapper('emscripten_bind_SIGSurface_getSlope_1', 2); - Module['_emscripten_bind_SIGSurface_getSlopeFactor_0'] = _emscripten_bind_SIGSurface_getSlopeFactor_0 = createExportWrapper('emscripten_bind_SIGSurface_getSlopeFactor_0', 1); - Module['_emscripten_bind_SIGSurface_getSpreadDistance_1'] = _emscripten_bind_SIGSurface_getSpreadDistance_1 = createExportWrapper('emscripten_bind_SIGSurface_getSpreadDistance_1', 2); - Module['_emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1'] = _emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1 = createExportWrapper('emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1', 2); - Module['_emscripten_bind_SIGSurface_getSpreadRate_1'] = _emscripten_bind_SIGSurface_getSpreadRate_1 = createExportWrapper('emscripten_bind_SIGSurface_getSpreadRate_1', 2); - Module['_emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1'] = _emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1 = createExportWrapper('emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1', 2); - Module['_emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1'] = _emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1 = createExportWrapper('emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1', 2); - Module['_emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1'] = _emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1', 2); - Module['_emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1'] = _emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1', 2); - Module['_emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1'] = _emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1 = createExportWrapper('emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1', 2); - Module['_emscripten_bind_SIGSurface_getWindDirection_0'] = _emscripten_bind_SIGSurface_getWindDirection_0 = createExportWrapper('emscripten_bind_SIGSurface_getWindDirection_0', 1); - Module['_emscripten_bind_SIGSurface_getWindSpeed_2'] = _emscripten_bind_SIGSurface_getWindSpeed_2 = createExportWrapper('emscripten_bind_SIGSurface_getWindSpeed_2', 3); - Module['_emscripten_bind_SIGSurface_getAspenFuelModelNumber_0'] = _emscripten_bind_SIGSurface_getAspenFuelModelNumber_0 = createExportWrapper('emscripten_bind_SIGSurface_getAspenFuelModelNumber_0', 1); - Module['_emscripten_bind_SIGSurface_getFuelModelNumber_0'] = _emscripten_bind_SIGSurface_getFuelModelNumber_0 = createExportWrapper('emscripten_bind_SIGSurface_getFuelModelNumber_0', 1); - Module['_emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1'] = _emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1', 2); - Module['_emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0'] = _emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0 = createExportWrapper('emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0', 1); - Module['_emscripten_bind_SIGSurface_getFuelCode_1'] = _emscripten_bind_SIGSurface_getFuelCode_1 = createExportWrapper('emscripten_bind_SIGSurface_getFuelCode_1', 2); - Module['_emscripten_bind_SIGSurface_getFuelName_1'] = _emscripten_bind_SIGSurface_getFuelName_1 = createExportWrapper('emscripten_bind_SIGSurface_getFuelName_1', 2); - Module['_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1'] = _emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1', 2); - Module['_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1'] = _emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1', 2); - Module['_emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1'] = _emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1 = createExportWrapper('emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1', 2); - Module['_emscripten_bind_SIGSurface_doSurfaceRun_0'] = _emscripten_bind_SIGSurface_doSurfaceRun_0 = createExportWrapper('emscripten_bind_SIGSurface_doSurfaceRun_0', 1); - Module['_emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2'] = _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2 = createExportWrapper('emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2', 3); - Module['_emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0'] = _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0 = createExportWrapper('emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0', 1); - Module['_emscripten_bind_SIGSurface_initializeMembers_0'] = _emscripten_bind_SIGSurface_initializeMembers_0 = createExportWrapper('emscripten_bind_SIGSurface_initializeMembers_0', 1); - Module['_emscripten_bind_SIGSurface_setAgeOfRough_1'] = _emscripten_bind_SIGSurface_setAgeOfRough_1 = createExportWrapper('emscripten_bind_SIGSurface_setAgeOfRough_1', 2); - Module['_emscripten_bind_SIGSurface_setAspect_1'] = _emscripten_bind_SIGSurface_setAspect_1 = createExportWrapper('emscripten_bind_SIGSurface_setAspect_1', 2); - Module['_emscripten_bind_SIGSurface_setAspenCuringLevel_2'] = _emscripten_bind_SIGSurface_setAspenCuringLevel_2 = createExportWrapper('emscripten_bind_SIGSurface_setAspenCuringLevel_2', 3); - Module['_emscripten_bind_SIGSurface_setAspenDBH_2'] = _emscripten_bind_SIGSurface_setAspenDBH_2 = createExportWrapper('emscripten_bind_SIGSurface_setAspenDBH_2', 3); - Module['_emscripten_bind_SIGSurface_setAspenFireSeverity_1'] = _emscripten_bind_SIGSurface_setAspenFireSeverity_1 = createExportWrapper('emscripten_bind_SIGSurface_setAspenFireSeverity_1', 2); - Module['_emscripten_bind_SIGSurface_setAspenFuelModelNumber_1'] = _emscripten_bind_SIGSurface_setAspenFuelModelNumber_1 = createExportWrapper('emscripten_bind_SIGSurface_setAspenFuelModelNumber_1', 2); - Module['_emscripten_bind_SIGSurface_setCanopyCover_2'] = _emscripten_bind_SIGSurface_setCanopyCover_2 = createExportWrapper('emscripten_bind_SIGSurface_setCanopyCover_2', 3); - Module['_emscripten_bind_SIGSurface_setCanopyHeight_2'] = _emscripten_bind_SIGSurface_setCanopyHeight_2 = createExportWrapper('emscripten_bind_SIGSurface_setCanopyHeight_2', 3); - Module['_emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2'] = _emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2 = createExportWrapper('emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2', 3); - Module['_emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1'] = _emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1 = createExportWrapper('emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1', 2); - Module['_emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1'] = _emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1 = createExportWrapper('emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1', 2); - Module['_emscripten_bind_SIGSurface_setChaparralFuelType_1'] = _emscripten_bind_SIGSurface_setChaparralFuelType_1 = createExportWrapper('emscripten_bind_SIGSurface_setChaparralFuelType_1', 2); - Module['_emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2'] = _emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2 = createExportWrapper('emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2', 3); - Module['_emscripten_bind_SIGSurface_setCrownRatio_2'] = _emscripten_bind_SIGSurface_setCrownRatio_2 = createExportWrapper('emscripten_bind_SIGSurface_setCrownRatio_2', 3); - Module['_emscripten_bind_SIGSurface_setDirectionOfInterest_1'] = _emscripten_bind_SIGSurface_setDirectionOfInterest_1 = createExportWrapper('emscripten_bind_SIGSurface_setDirectionOfInterest_1', 2); - Module['_emscripten_bind_SIGSurface_setElapsedTime_2'] = _emscripten_bind_SIGSurface_setElapsedTime_2 = createExportWrapper('emscripten_bind_SIGSurface_setElapsedTime_2', 3); - Module['_emscripten_bind_SIGSurface_setFirstFuelModelNumber_1'] = _emscripten_bind_SIGSurface_setFirstFuelModelNumber_1 = createExportWrapper('emscripten_bind_SIGSurface_setFirstFuelModelNumber_1', 2); - Module['_emscripten_bind_SIGSurface_setFuelModels_1'] = _emscripten_bind_SIGSurface_setFuelModels_1 = createExportWrapper('emscripten_bind_SIGSurface_setFuelModels_1', 2); - Module['_emscripten_bind_SIGSurface_setHeightOfUnderstory_2'] = _emscripten_bind_SIGSurface_setHeightOfUnderstory_2 = createExportWrapper('emscripten_bind_SIGSurface_setHeightOfUnderstory_2', 3); - Module['_emscripten_bind_SIGSurface_setIsUsingChaparral_1'] = _emscripten_bind_SIGSurface_setIsUsingChaparral_1 = createExportWrapper('emscripten_bind_SIGSurface_setIsUsingChaparral_1', 2); - Module['_emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1'] = _emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1 = createExportWrapper('emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1', 2); - Module['_emscripten_bind_SIGSurface_setIsUsingWesternAspen_1'] = _emscripten_bind_SIGSurface_setIsUsingWesternAspen_1 = createExportWrapper('emscripten_bind_SIGSurface_setIsUsingWesternAspen_1', 2); - Module['_emscripten_bind_SIGSurface_setMoistureDeadAggregate_2'] = _emscripten_bind_SIGSurface_setMoistureDeadAggregate_2 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureDeadAggregate_2', 3); - Module['_emscripten_bind_SIGSurface_setMoistureHundredHour_2'] = _emscripten_bind_SIGSurface_setMoistureHundredHour_2 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureHundredHour_2', 3); - Module['_emscripten_bind_SIGSurface_setMoistureInputMode_1'] = _emscripten_bind_SIGSurface_setMoistureInputMode_1 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureInputMode_1', 2); - Module['_emscripten_bind_SIGSurface_setMoistureLiveAggregate_2'] = _emscripten_bind_SIGSurface_setMoistureLiveAggregate_2 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureLiveAggregate_2', 3); - Module['_emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2'] = _emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2', 3); - Module['_emscripten_bind_SIGSurface_setMoistureLiveWoody_2'] = _emscripten_bind_SIGSurface_setMoistureLiveWoody_2 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureLiveWoody_2', 3); - Module['_emscripten_bind_SIGSurface_setMoistureOneHour_2'] = _emscripten_bind_SIGSurface_setMoistureOneHour_2 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureOneHour_2', 3); - Module['_emscripten_bind_SIGSurface_setMoistureScenarios_1'] = _emscripten_bind_SIGSurface_setMoistureScenarios_1 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureScenarios_1', 2); - Module['_emscripten_bind_SIGSurface_setMoistureTenHour_2'] = _emscripten_bind_SIGSurface_setMoistureTenHour_2 = createExportWrapper('emscripten_bind_SIGSurface_setMoistureTenHour_2', 3); - Module['_emscripten_bind_SIGSurface_setOverstoryBasalArea_2'] = _emscripten_bind_SIGSurface_setOverstoryBasalArea_2 = createExportWrapper('emscripten_bind_SIGSurface_setOverstoryBasalArea_2', 3); - Module['_emscripten_bind_SIGSurface_setPalmettoCoverage_2'] = _emscripten_bind_SIGSurface_setPalmettoCoverage_2 = createExportWrapper('emscripten_bind_SIGSurface_setPalmettoCoverage_2', 3); - Module['_emscripten_bind_SIGSurface_setSecondFuelModelNumber_1'] = _emscripten_bind_SIGSurface_setSecondFuelModelNumber_1 = createExportWrapper('emscripten_bind_SIGSurface_setSecondFuelModelNumber_1', 2); - Module['_emscripten_bind_SIGSurface_setSlope_2'] = _emscripten_bind_SIGSurface_setSlope_2 = createExportWrapper('emscripten_bind_SIGSurface_setSlope_2', 3); - Module['_emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1'] = _emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1 = createExportWrapper('emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1', 2); - Module['_emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1'] = _emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1 = createExportWrapper('emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1', 2); - Module['_emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2'] = _emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2 = createExportWrapper('emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2', 3); - Module['_emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1'] = _emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1 = createExportWrapper('emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1', 2); - Module['_emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1'] = _emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1 = createExportWrapper('emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1', 2); - Module['_emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1'] = _emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1 = createExportWrapper('emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1', 2); - Module['_emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1'] = _emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1 = createExportWrapper('emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1', 2); - Module['_emscripten_bind_SIGSurface_setWindDirection_1'] = _emscripten_bind_SIGSurface_setWindDirection_1 = createExportWrapper('emscripten_bind_SIGSurface_setWindDirection_1', 2); - Module['_emscripten_bind_SIGSurface_setWindHeightInputMode_1'] = _emscripten_bind_SIGSurface_setWindHeightInputMode_1 = createExportWrapper('emscripten_bind_SIGSurface_setWindHeightInputMode_1', 2); - Module['_emscripten_bind_SIGSurface_setWindSpeed_2'] = _emscripten_bind_SIGSurface_setWindSpeed_2 = createExportWrapper('emscripten_bind_SIGSurface_setWindSpeed_2', 3); - Module['_emscripten_bind_SIGSurface_updateSurfaceInputs_21'] = _emscripten_bind_SIGSurface_updateSurfaceInputs_21 = createExportWrapper('emscripten_bind_SIGSurface_updateSurfaceInputs_21', 22); - Module['_emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25'] = _emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25 = createExportWrapper('emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25', 26); - Module['_emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25'] = _emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25 = createExportWrapper('emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25', 26); - Module['_emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26'] = _emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26 = createExportWrapper('emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26', 27); - Module['_emscripten_bind_SIGSurface_setFuelModelNumber_1'] = _emscripten_bind_SIGSurface_setFuelModelNumber_1 = createExportWrapper('emscripten_bind_SIGSurface_setFuelModelNumber_1', 2); - Module['_emscripten_bind_SIGSurface___destroy___0'] = _emscripten_bind_SIGSurface___destroy___0 = createExportWrapper('emscripten_bind_SIGSurface___destroy___0', 1); - Module['_emscripten_bind_PalmettoGallberry_PalmettoGallberry_0'] = _emscripten_bind_PalmettoGallberry_PalmettoGallberry_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_PalmettoGallberry_0', 0); - Module['_emscripten_bind_PalmettoGallberry_initializeMembers_0'] = _emscripten_bind_PalmettoGallberry_initializeMembers_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_initializeMembers_0', 1); - Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2'] = _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2 = createExportWrapper('emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2', 3); - Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2'] = _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2 = createExportWrapper('emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2', 3); - Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2'] = _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2 = createExportWrapper('emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2', 3); - Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1'] = _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1 = createExportWrapper('emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1', 2); - Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2'] = _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2 = createExportWrapper('emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2', 3); - Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2'] = _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2 = createExportWrapper('emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2', 3); - Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3'] = _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3 = createExportWrapper('emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3', 4); - Module['_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2'] = _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2 = createExportWrapper('emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2', 3); - Module['_emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0'] = _emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0', 1); - Module['_emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0'] = _emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0', 1); - Module['_emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0'] = _emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0', 1); - Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0'] = _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0', 1); - Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0'] = _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0', 1); - Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0'] = _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0', 1); - Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0'] = _emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0', 1); - Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0'] = _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0', 1); - Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0'] = _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0', 1); - Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0'] = _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0', 1); - Module['_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0'] = _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0 = createExportWrapper('emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0', 1); - Module['_emscripten_bind_PalmettoGallberry___destroy___0'] = _emscripten_bind_PalmettoGallberry___destroy___0 = createExportWrapper('emscripten_bind_PalmettoGallberry___destroy___0', 1); - Module['_emscripten_bind_WesternAspen_WesternAspen_0'] = _emscripten_bind_WesternAspen_WesternAspen_0 = createExportWrapper('emscripten_bind_WesternAspen_WesternAspen_0', 0); - Module['_emscripten_bind_WesternAspen_initializeMembers_0'] = _emscripten_bind_WesternAspen_initializeMembers_0 = createExportWrapper('emscripten_bind_WesternAspen_initializeMembers_0', 1); - Module['_emscripten_bind_WesternAspen_calculateAspenMortality_3'] = _emscripten_bind_WesternAspen_calculateAspenMortality_3 = createExportWrapper('emscripten_bind_WesternAspen_calculateAspenMortality_3', 4); - Module['_emscripten_bind_WesternAspen_getAspenFuelBedDepth_1'] = _emscripten_bind_WesternAspen_getAspenFuelBedDepth_1 = createExportWrapper('emscripten_bind_WesternAspen_getAspenFuelBedDepth_1', 2); - Module['_emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0'] = _emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0', 1); - Module['_emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0'] = _emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0', 1); - Module['_emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0'] = _emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0', 1); - Module['_emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0'] = _emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0', 1); - Module['_emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0'] = _emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0', 1); - Module['_emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0'] = _emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0', 1); - Module['_emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0'] = _emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0', 1); - Module['_emscripten_bind_WesternAspen_getAspenMortality_0'] = _emscripten_bind_WesternAspen_getAspenMortality_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenMortality_0', 1); - Module['_emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0'] = _emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0', 1); - Module['_emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0'] = _emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0', 1); - Module['_emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0'] = _emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0', 1); - Module['_emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0'] = _emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0 = createExportWrapper('emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0', 1); - Module['_emscripten_bind_WesternAspen___destroy___0'] = _emscripten_bind_WesternAspen___destroy___0 = createExportWrapper('emscripten_bind_WesternAspen___destroy___0', 1); - Module['_emscripten_bind_SIGCrown_SIGCrown_1'] = _emscripten_bind_SIGCrown_SIGCrown_1 = createExportWrapper('emscripten_bind_SIGCrown_SIGCrown_1', 1); - Module['_emscripten_bind_SIGCrown_getFireType_0'] = _emscripten_bind_SIGCrown_getFireType_0 = createExportWrapper('emscripten_bind_SIGCrown_getFireType_0', 1); - Module['_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1'] = _emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1 = createExportWrapper('emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1', 2); - Module['_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1'] = _emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1 = createExportWrapper('emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1', 2); - Module['_emscripten_bind_SIGCrown_isAllFuelLoadZero_1'] = _emscripten_bind_SIGCrown_isAllFuelLoadZero_1 = createExportWrapper('emscripten_bind_SIGCrown_isAllFuelLoadZero_1', 2); - Module['_emscripten_bind_SIGCrown_isFuelDynamic_1'] = _emscripten_bind_SIGCrown_isFuelDynamic_1 = createExportWrapper('emscripten_bind_SIGCrown_isFuelDynamic_1', 2); - Module['_emscripten_bind_SIGCrown_isFuelModelDefined_1'] = _emscripten_bind_SIGCrown_isFuelModelDefined_1 = createExportWrapper('emscripten_bind_SIGCrown_isFuelModelDefined_1', 2); - Module['_emscripten_bind_SIGCrown_isFuelModelReserved_1'] = _emscripten_bind_SIGCrown_isFuelModelReserved_1 = createExportWrapper('emscripten_bind_SIGCrown_isFuelModelReserved_1', 2); - Module['_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1'] = _emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1 = createExportWrapper('emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1', 2); - Module['_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1'] = _emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1 = createExportWrapper('emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1', 2); - Module['_emscripten_bind_SIGCrown_getAspect_0'] = _emscripten_bind_SIGCrown_getAspect_0 = createExportWrapper('emscripten_bind_SIGCrown_getAspect_0', 1); - Module['_emscripten_bind_SIGCrown_getCanopyBaseHeight_1'] = _emscripten_bind_SIGCrown_getCanopyBaseHeight_1 = createExportWrapper('emscripten_bind_SIGCrown_getCanopyBaseHeight_1', 2); - Module['_emscripten_bind_SIGCrown_getCanopyBulkDensity_1'] = _emscripten_bind_SIGCrown_getCanopyBulkDensity_1 = createExportWrapper('emscripten_bind_SIGCrown_getCanopyBulkDensity_1', 2); - Module['_emscripten_bind_SIGCrown_getCanopyCover_1'] = _emscripten_bind_SIGCrown_getCanopyCover_1 = createExportWrapper('emscripten_bind_SIGCrown_getCanopyCover_1', 2); - Module['_emscripten_bind_SIGCrown_getCanopyHeight_1'] = _emscripten_bind_SIGCrown_getCanopyHeight_1 = createExportWrapper('emscripten_bind_SIGCrown_getCanopyHeight_1', 2); - Module['_emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1'] = _emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1 = createExportWrapper('emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1', 2); - Module['_emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1'] = _emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1', 2); - Module['_emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1'] = _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1', 2); - Module['_emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1'] = _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1', 2); - Module['_emscripten_bind_SIGCrown_getCrownFireActiveRatio_0'] = _emscripten_bind_SIGCrown_getCrownFireActiveRatio_0 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFireActiveRatio_0', 1); - Module['_emscripten_bind_SIGCrown_getCrownFireArea_1'] = _emscripten_bind_SIGCrown_getCrownFireArea_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFireArea_1', 2); - Module['_emscripten_bind_SIGCrown_getCrownFirePerimeter_1'] = _emscripten_bind_SIGCrown_getCrownFirePerimeter_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFirePerimeter_1', 2); - Module['_emscripten_bind_SIGCrown_getCrownTransitionRatio_0'] = _emscripten_bind_SIGCrown_getCrownTransitionRatio_0 = createExportWrapper('emscripten_bind_SIGCrown_getCrownTransitionRatio_0', 1); - Module['_emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0'] = _emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0', 1); - Module['_emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1'] = _emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1', 2); - Module['_emscripten_bind_SIGCrown_getCrownFireSpreadRate_1'] = _emscripten_bind_SIGCrown_getCrownFireSpreadRate_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFireSpreadRate_1', 2); - Module['_emscripten_bind_SIGCrown_getCrownFirelineIntensity_1'] = _emscripten_bind_SIGCrown_getCrownFirelineIntensity_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFirelineIntensity_1', 2); - Module['_emscripten_bind_SIGCrown_getCrownFlameLength_1'] = _emscripten_bind_SIGCrown_getCrownFlameLength_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFlameLength_1', 2); - Module['_emscripten_bind_SIGCrown_getCrownFractionBurned_0'] = _emscripten_bind_SIGCrown_getCrownFractionBurned_0 = createExportWrapper('emscripten_bind_SIGCrown_getCrownFractionBurned_0', 1); - Module['_emscripten_bind_SIGCrown_getCrownRatio_1'] = _emscripten_bind_SIGCrown_getCrownRatio_1 = createExportWrapper('emscripten_bind_SIGCrown_getCrownRatio_1', 2); - Module['_emscripten_bind_SIGCrown_getFinalFirelineIntesity_1'] = _emscripten_bind_SIGCrown_getFinalFirelineIntesity_1 = createExportWrapper('emscripten_bind_SIGCrown_getFinalFirelineIntesity_1', 2); - Module['_emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1'] = _emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1 = createExportWrapper('emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1', 2); - Module['_emscripten_bind_SIGCrown_getFinalSpreadRate_1'] = _emscripten_bind_SIGCrown_getFinalSpreadRate_1 = createExportWrapper('emscripten_bind_SIGCrown_getFinalSpreadRate_1', 2); - Module['_emscripten_bind_SIGCrown_getFinalSpreadDistance_1'] = _emscripten_bind_SIGCrown_getFinalSpreadDistance_1 = createExportWrapper('emscripten_bind_SIGCrown_getFinalSpreadDistance_1', 2); - Module['_emscripten_bind_SIGCrown_getFinalFireArea_1'] = _emscripten_bind_SIGCrown_getFinalFireArea_1 = createExportWrapper('emscripten_bind_SIGCrown_getFinalFireArea_1', 2); - Module['_emscripten_bind_SIGCrown_getFinalFirePerimeter_1'] = _emscripten_bind_SIGCrown_getFinalFirePerimeter_1 = createExportWrapper('emscripten_bind_SIGCrown_getFinalFirePerimeter_1', 2); - Module['_emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2'] = _emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2', 3); - Module['_emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2'] = _emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2', 3); - Module['_emscripten_bind_SIGCrown_getFuelLoadHundredHour_2'] = _emscripten_bind_SIGCrown_getFuelLoadHundredHour_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelLoadHundredHour_2', 3); - Module['_emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2'] = _emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2', 3); - Module['_emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2'] = _emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2', 3); - Module['_emscripten_bind_SIGCrown_getFuelLoadOneHour_2'] = _emscripten_bind_SIGCrown_getFuelLoadOneHour_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelLoadOneHour_2', 3); - Module['_emscripten_bind_SIGCrown_getFuelLoadTenHour_2'] = _emscripten_bind_SIGCrown_getFuelLoadTenHour_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelLoadTenHour_2', 3); - Module['_emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2'] = _emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2', 3); - Module['_emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2'] = _emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2', 3); - Module['_emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2'] = _emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2', 3); - Module['_emscripten_bind_SIGCrown_getFuelSavrOneHour_2'] = _emscripten_bind_SIGCrown_getFuelSavrOneHour_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelSavrOneHour_2', 3); - Module['_emscripten_bind_SIGCrown_getFuelbedDepth_2'] = _emscripten_bind_SIGCrown_getFuelbedDepth_2 = createExportWrapper('emscripten_bind_SIGCrown_getFuelbedDepth_2', 3); - Module['_emscripten_bind_SIGCrown_getMoistureFoliar_1'] = _emscripten_bind_SIGCrown_getMoistureFoliar_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureFoliar_1', 2); - Module['_emscripten_bind_SIGCrown_getMoistureHundredHour_1'] = _emscripten_bind_SIGCrown_getMoistureHundredHour_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureHundredHour_1', 2); - Module['_emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1'] = _emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1', 2); - Module['_emscripten_bind_SIGCrown_getMoistureLiveWoody_1'] = _emscripten_bind_SIGCrown_getMoistureLiveWoody_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureLiveWoody_1', 2); - Module['_emscripten_bind_SIGCrown_getMoistureOneHour_1'] = _emscripten_bind_SIGCrown_getMoistureOneHour_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureOneHour_1', 2); - Module['_emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2', 3); - Module['_emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2', 3); - Module['_emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2', 3); - Module['_emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2', 3); - Module['_emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2', 3); - Module['_emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2', 3); - Module['_emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2', 3); - Module['_emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2', 3); - Module['_emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2', 3); - Module['_emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2'] = _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2', 3); - Module['_emscripten_bind_SIGCrown_getMoistureTenHour_1'] = _emscripten_bind_SIGCrown_getMoistureTenHour_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureTenHour_1', 2); - Module['_emscripten_bind_SIGCrown_getSlope_1'] = _emscripten_bind_SIGCrown_getSlope_1 = createExportWrapper('emscripten_bind_SIGCrown_getSlope_1', 2); - Module['_emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1'] = _emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1 = createExportWrapper('emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1', 2); - Module['_emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1'] = _emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1 = createExportWrapper('emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1', 2); - Module['_emscripten_bind_SIGCrown_getWindDirection_0'] = _emscripten_bind_SIGCrown_getWindDirection_0 = createExportWrapper('emscripten_bind_SIGCrown_getWindDirection_0', 1); - Module['_emscripten_bind_SIGCrown_getWindSpeed_2'] = _emscripten_bind_SIGCrown_getWindSpeed_2 = createExportWrapper('emscripten_bind_SIGCrown_getWindSpeed_2', 3); - Module['_emscripten_bind_SIGCrown_getFuelModelNumber_0'] = _emscripten_bind_SIGCrown_getFuelModelNumber_0 = createExportWrapper('emscripten_bind_SIGCrown_getFuelModelNumber_0', 1); - Module['_emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1'] = _emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1', 2); - Module['_emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0'] = _emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0 = createExportWrapper('emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0', 1); - Module['_emscripten_bind_SIGCrown_getFuelCode_1'] = _emscripten_bind_SIGCrown_getFuelCode_1 = createExportWrapper('emscripten_bind_SIGCrown_getFuelCode_1', 2); - Module['_emscripten_bind_SIGCrown_getFuelName_1'] = _emscripten_bind_SIGCrown_getFuelName_1 = createExportWrapper('emscripten_bind_SIGCrown_getFuelName_1', 2); - Module['_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1'] = _emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1', 2); - Module['_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1'] = _emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1', 2); - Module['_emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1'] = _emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1 = createExportWrapper('emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1', 2); - Module['_emscripten_bind_SIGCrown_doCrownRun_0'] = _emscripten_bind_SIGCrown_doCrownRun_0 = createExportWrapper('emscripten_bind_SIGCrown_doCrownRun_0', 1); - Module['_emscripten_bind_SIGCrown_doCrownRunRothermel_0'] = _emscripten_bind_SIGCrown_doCrownRunRothermel_0 = createExportWrapper('emscripten_bind_SIGCrown_doCrownRunRothermel_0', 1); - Module['_emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0'] = _emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0 = createExportWrapper('emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0', 1); - Module['_emscripten_bind_SIGCrown_initializeMembers_0'] = _emscripten_bind_SIGCrown_initializeMembers_0 = createExportWrapper('emscripten_bind_SIGCrown_initializeMembers_0', 1); - Module['_emscripten_bind_SIGCrown_setAspect_1'] = _emscripten_bind_SIGCrown_setAspect_1 = createExportWrapper('emscripten_bind_SIGCrown_setAspect_1', 2); - Module['_emscripten_bind_SIGCrown_setCanopyBaseHeight_2'] = _emscripten_bind_SIGCrown_setCanopyBaseHeight_2 = createExportWrapper('emscripten_bind_SIGCrown_setCanopyBaseHeight_2', 3); - Module['_emscripten_bind_SIGCrown_setCanopyBulkDensity_2'] = _emscripten_bind_SIGCrown_setCanopyBulkDensity_2 = createExportWrapper('emscripten_bind_SIGCrown_setCanopyBulkDensity_2', 3); - Module['_emscripten_bind_SIGCrown_setCanopyCover_2'] = _emscripten_bind_SIGCrown_setCanopyCover_2 = createExportWrapper('emscripten_bind_SIGCrown_setCanopyCover_2', 3); - Module['_emscripten_bind_SIGCrown_setCanopyHeight_2'] = _emscripten_bind_SIGCrown_setCanopyHeight_2 = createExportWrapper('emscripten_bind_SIGCrown_setCanopyHeight_2', 3); - Module['_emscripten_bind_SIGCrown_setCrownRatio_2'] = _emscripten_bind_SIGCrown_setCrownRatio_2 = createExportWrapper('emscripten_bind_SIGCrown_setCrownRatio_2', 3); - Module['_emscripten_bind_SIGCrown_setFuelModelNumber_1'] = _emscripten_bind_SIGCrown_setFuelModelNumber_1 = createExportWrapper('emscripten_bind_SIGCrown_setFuelModelNumber_1', 2); - Module['_emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1'] = _emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1 = createExportWrapper('emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1', 2); - Module['_emscripten_bind_SIGCrown_setElapsedTime_2'] = _emscripten_bind_SIGCrown_setElapsedTime_2 = createExportWrapper('emscripten_bind_SIGCrown_setElapsedTime_2', 3); - Module['_emscripten_bind_SIGCrown_setFuelModels_1'] = _emscripten_bind_SIGCrown_setFuelModels_1 = createExportWrapper('emscripten_bind_SIGCrown_setFuelModels_1', 2); - Module['_emscripten_bind_SIGCrown_setMoistureDeadAggregate_2'] = _emscripten_bind_SIGCrown_setMoistureDeadAggregate_2 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureDeadAggregate_2', 3); - Module['_emscripten_bind_SIGCrown_setMoistureFoliar_2'] = _emscripten_bind_SIGCrown_setMoistureFoliar_2 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureFoliar_2', 3); - Module['_emscripten_bind_SIGCrown_setMoistureHundredHour_2'] = _emscripten_bind_SIGCrown_setMoistureHundredHour_2 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureHundredHour_2', 3); - Module['_emscripten_bind_SIGCrown_setMoistureInputMode_1'] = _emscripten_bind_SIGCrown_setMoistureInputMode_1 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureInputMode_1', 2); - Module['_emscripten_bind_SIGCrown_setMoistureLiveAggregate_2'] = _emscripten_bind_SIGCrown_setMoistureLiveAggregate_2 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureLiveAggregate_2', 3); - Module['_emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2'] = _emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2', 3); - Module['_emscripten_bind_SIGCrown_setMoistureLiveWoody_2'] = _emscripten_bind_SIGCrown_setMoistureLiveWoody_2 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureLiveWoody_2', 3); - Module['_emscripten_bind_SIGCrown_setMoistureOneHour_2'] = _emscripten_bind_SIGCrown_setMoistureOneHour_2 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureOneHour_2', 3); - Module['_emscripten_bind_SIGCrown_setMoistureScenarios_1'] = _emscripten_bind_SIGCrown_setMoistureScenarios_1 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureScenarios_1', 2); - Module['_emscripten_bind_SIGCrown_setMoistureTenHour_2'] = _emscripten_bind_SIGCrown_setMoistureTenHour_2 = createExportWrapper('emscripten_bind_SIGCrown_setMoistureTenHour_2', 3); - Module['_emscripten_bind_SIGCrown_setSlope_2'] = _emscripten_bind_SIGCrown_setSlope_2 = createExportWrapper('emscripten_bind_SIGCrown_setSlope_2', 3); - Module['_emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1'] = _emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1 = createExportWrapper('emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1', 2); - Module['_emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1'] = _emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1 = createExportWrapper('emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1', 2); - Module['_emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1'] = _emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1 = createExportWrapper('emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1', 2); - Module['_emscripten_bind_SIGCrown_setWindDirection_1'] = _emscripten_bind_SIGCrown_setWindDirection_1 = createExportWrapper('emscripten_bind_SIGCrown_setWindDirection_1', 2); - Module['_emscripten_bind_SIGCrown_setWindHeightInputMode_1'] = _emscripten_bind_SIGCrown_setWindHeightInputMode_1 = createExportWrapper('emscripten_bind_SIGCrown_setWindHeightInputMode_1', 2); - Module['_emscripten_bind_SIGCrown_setWindSpeed_2'] = _emscripten_bind_SIGCrown_setWindSpeed_2 = createExportWrapper('emscripten_bind_SIGCrown_setWindSpeed_2', 3); - Module['_emscripten_bind_SIGCrown_updateCrownInputs_25'] = _emscripten_bind_SIGCrown_updateCrownInputs_25 = createExportWrapper('emscripten_bind_SIGCrown_updateCrownInputs_25', 26); - Module['_emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21'] = _emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21 = createExportWrapper('emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21', 22); - Module['_emscripten_bind_SIGCrown_getFinalFlameLength_1'] = _emscripten_bind_SIGCrown_getFinalFlameLength_1 = createExportWrapper('emscripten_bind_SIGCrown_getFinalFlameLength_1', 2); - Module['_emscripten_bind_SIGCrown___destroy___0'] = _emscripten_bind_SIGCrown___destroy___0 = createExportWrapper('emscripten_bind_SIGCrown___destroy___0', 1); - Module['_emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0'] = _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0', 0); - Module['_emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1'] = _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1', 1); - Module['_emscripten_bind_SpeciesMasterTableRecord___destroy___0'] = _emscripten_bind_SpeciesMasterTableRecord___destroy___0 = createExportWrapper('emscripten_bind_SpeciesMasterTableRecord___destroy___0', 1); - Module['_emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0'] = _emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0 = createExportWrapper('emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0', 0); - Module['_emscripten_bind_SpeciesMasterTable_initializeMasterTable_0'] = _emscripten_bind_SpeciesMasterTable_initializeMasterTable_0 = createExportWrapper('emscripten_bind_SpeciesMasterTable_initializeMasterTable_0', 1); - Module['_emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1'] = _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1', 2); - Module['_emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2'] = _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2 = createExportWrapper('emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2', 3); - Module['_emscripten_bind_SpeciesMasterTable_insertRecord_17'] = _emscripten_bind_SpeciesMasterTable_insertRecord_17 = createExportWrapper('emscripten_bind_SpeciesMasterTable_insertRecord_17', 18); - Module['_emscripten_bind_SpeciesMasterTable___destroy___0'] = _emscripten_bind_SpeciesMasterTable___destroy___0 = createExportWrapper('emscripten_bind_SpeciesMasterTable___destroy___0', 1); - Module['_emscripten_bind_SIGMortality_SIGMortality_1'] = _emscripten_bind_SIGMortality_SIGMortality_1 = createExportWrapper('emscripten_bind_SIGMortality_SIGMortality_1', 1); - Module['_emscripten_bind_SIGMortality_initializeMembers_0'] = _emscripten_bind_SIGMortality_initializeMembers_0 = createExportWrapper('emscripten_bind_SIGMortality_initializeMembers_0', 1); - Module['_emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2'] = _emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2 = createExportWrapper('emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2', 3); - Module['_emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2'] = _emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2 = createExportWrapper('emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2', 3); - Module['_emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2'] = _emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2 = createExportWrapper('emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2', 3); - Module['_emscripten_bind_SIGMortality_calculateMortality_1'] = _emscripten_bind_SIGMortality_calculateMortality_1 = createExportWrapper('emscripten_bind_SIGMortality_calculateMortality_1', 2); - Module['_emscripten_bind_SIGMortality_calculateScorchHeight_7'] = _emscripten_bind_SIGMortality_calculateScorchHeight_7 = createExportWrapper('emscripten_bind_SIGMortality_calculateScorchHeight_7', 8); - Module['_emscripten_bind_SIGMortality_calculateMortalityAllDirections_1'] = _emscripten_bind_SIGMortality_calculateMortalityAllDirections_1 = createExportWrapper('emscripten_bind_SIGMortality_calculateMortalityAllDirections_1', 2); - Module['_emscripten_bind_SIGMortality_getRequiredFieldVector_0'] = _emscripten_bind_SIGMortality_getRequiredFieldVector_0 = createExportWrapper('emscripten_bind_SIGMortality_getRequiredFieldVector_0', 1); - Module['_emscripten_bind_SIGMortality_getBeetleDamage_0'] = _emscripten_bind_SIGMortality_getBeetleDamage_0 = createExportWrapper('emscripten_bind_SIGMortality_getBeetleDamage_0', 1); - Module['_emscripten_bind_SIGMortality_getCrownDamageEquationCode_0'] = _emscripten_bind_SIGMortality_getCrownDamageEquationCode_0 = createExportWrapper('emscripten_bind_SIGMortality_getCrownDamageEquationCode_0', 1); - Module['_emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1'] = _emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1 = createExportWrapper('emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1', 2); - Module['_emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1'] = _emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1', 2); - Module['_emscripten_bind_SIGMortality_getCrownDamageType_0'] = _emscripten_bind_SIGMortality_getCrownDamageType_0 = createExportWrapper('emscripten_bind_SIGMortality_getCrownDamageType_0', 1); - Module['_emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1'] = _emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1 = createExportWrapper('emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1', 2); - Module['_emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1'] = _emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1', 2); - Module['_emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1'] = _emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1 = createExportWrapper('emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1', 2); - Module['_emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1'] = _emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1', 2); - Module['_emscripten_bind_SIGMortality_getSpeciesCode_0'] = _emscripten_bind_SIGMortality_getSpeciesCode_0 = createExportWrapper('emscripten_bind_SIGMortality_getSpeciesCode_0', 1); - Module['_emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1'] = _emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1 = createExportWrapper('emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1', 2); - Module['_emscripten_bind_SIGMortality_getEquationType_0'] = _emscripten_bind_SIGMortality_getEquationType_0 = createExportWrapper('emscripten_bind_SIGMortality_getEquationType_0', 1); - Module['_emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1'] = _emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1 = createExportWrapper('emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1', 2); - Module['_emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1'] = _emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1', 2); - Module['_emscripten_bind_SIGMortality_getFireSeverity_0'] = _emscripten_bind_SIGMortality_getFireSeverity_0 = createExportWrapper('emscripten_bind_SIGMortality_getFireSeverity_0', 1); - Module['_emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0'] = _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0 = createExportWrapper('emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0', 1); - Module['_emscripten_bind_SIGMortality_getGACCRegion_0'] = _emscripten_bind_SIGMortality_getGACCRegion_0 = createExportWrapper('emscripten_bind_SIGMortality_getGACCRegion_0', 1); - Module['_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1'] = _emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1 = createExportWrapper('emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1', 2); - Module['_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2'] = _emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2 = createExportWrapper('emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2', 3); - Module['_emscripten_bind_SIGMortality_getBarkThickness_1'] = _emscripten_bind_SIGMortality_getBarkThickness_1 = createExportWrapper('emscripten_bind_SIGMortality_getBarkThickness_1', 2); - Module['_emscripten_bind_SIGMortality_getBasalAreaKillled_0'] = _emscripten_bind_SIGMortality_getBasalAreaKillled_0 = createExportWrapper('emscripten_bind_SIGMortality_getBasalAreaKillled_0', 1); - Module['_emscripten_bind_SIGMortality_getBasalAreaPostfire_0'] = _emscripten_bind_SIGMortality_getBasalAreaPostfire_0 = createExportWrapper('emscripten_bind_SIGMortality_getBasalAreaPostfire_0', 1); - Module['_emscripten_bind_SIGMortality_getBasalAreaPrefire_0'] = _emscripten_bind_SIGMortality_getBasalAreaPrefire_0 = createExportWrapper('emscripten_bind_SIGMortality_getBasalAreaPrefire_0', 1); - Module['_emscripten_bind_SIGMortality_getBoleCharHeight_1'] = _emscripten_bind_SIGMortality_getBoleCharHeight_1 = createExportWrapper('emscripten_bind_SIGMortality_getBoleCharHeight_1', 2); - Module['_emscripten_bind_SIGMortality_getBoleCharHeightBacking_1'] = _emscripten_bind_SIGMortality_getBoleCharHeightBacking_1 = createExportWrapper('emscripten_bind_SIGMortality_getBoleCharHeightBacking_1', 2); - Module['_emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1'] = _emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1 = createExportWrapper('emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1', 2); - Module['_emscripten_bind_SIGMortality_getCambiumKillRating_0'] = _emscripten_bind_SIGMortality_getCambiumKillRating_0 = createExportWrapper('emscripten_bind_SIGMortality_getCambiumKillRating_0', 1); - Module['_emscripten_bind_SIGMortality_getCrownDamage_0'] = _emscripten_bind_SIGMortality_getCrownDamage_0 = createExportWrapper('emscripten_bind_SIGMortality_getCrownDamage_0', 1); - Module['_emscripten_bind_SIGMortality_getCrownRatio_1'] = _emscripten_bind_SIGMortality_getCrownRatio_1 = createExportWrapper('emscripten_bind_SIGMortality_getCrownRatio_1', 2); - Module['_emscripten_bind_SIGMortality_getCVSorCLS_0'] = _emscripten_bind_SIGMortality_getCVSorCLS_0 = createExportWrapper('emscripten_bind_SIGMortality_getCVSorCLS_0', 1); - Module['_emscripten_bind_SIGMortality_getDBH_1'] = _emscripten_bind_SIGMortality_getDBH_1 = createExportWrapper('emscripten_bind_SIGMortality_getDBH_1', 2); - Module['_emscripten_bind_SIGMortality_getFlameLength_1'] = _emscripten_bind_SIGMortality_getFlameLength_1 = createExportWrapper('emscripten_bind_SIGMortality_getFlameLength_1', 2); - Module['_emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1'] = _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1 = createExportWrapper('emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1', 2); - Module['_emscripten_bind_SIGMortality_getKilledTrees_0'] = _emscripten_bind_SIGMortality_getKilledTrees_0 = createExportWrapper('emscripten_bind_SIGMortality_getKilledTrees_0', 1); - Module['_emscripten_bind_SIGMortality_getProbabilityOfMortality_1'] = _emscripten_bind_SIGMortality_getProbabilityOfMortality_1 = createExportWrapper('emscripten_bind_SIGMortality_getProbabilityOfMortality_1', 2); - Module['_emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1'] = _emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1 = createExportWrapper('emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1', 2); - Module['_emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1'] = _emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1 = createExportWrapper('emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1', 2); - Module['_emscripten_bind_SIGMortality_getScorchHeight_1'] = _emscripten_bind_SIGMortality_getScorchHeight_1 = createExportWrapper('emscripten_bind_SIGMortality_getScorchHeight_1', 2); - Module['_emscripten_bind_SIGMortality_getScorchHeightBacking_1'] = _emscripten_bind_SIGMortality_getScorchHeightBacking_1 = createExportWrapper('emscripten_bind_SIGMortality_getScorchHeightBacking_1', 2); - Module['_emscripten_bind_SIGMortality_getScorchHeightFlanking_1'] = _emscripten_bind_SIGMortality_getScorchHeightFlanking_1 = createExportWrapper('emscripten_bind_SIGMortality_getScorchHeightFlanking_1', 2); - Module['_emscripten_bind_SIGMortality_getTotalPrefireTrees_0'] = _emscripten_bind_SIGMortality_getTotalPrefireTrees_0 = createExportWrapper('emscripten_bind_SIGMortality_getTotalPrefireTrees_0', 1); - Module['_emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1'] = _emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1 = createExportWrapper('emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1', 2); - Module['_emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1'] = _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1 = createExportWrapper('emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1', 2); - Module['_emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1'] = _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1 = createExportWrapper('emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1', 2); - Module['_emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1'] = _emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1 = createExportWrapper('emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1', 2); - Module['_emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1'] = _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1 = createExportWrapper('emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1', 2); - Module['_emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1'] = _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1 = createExportWrapper('emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1', 2); - Module['_emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1'] = _emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1 = createExportWrapper('emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1', 2); - Module['_emscripten_bind_SIGMortality_getTreeHeight_1'] = _emscripten_bind_SIGMortality_getTreeHeight_1 = createExportWrapper('emscripten_bind_SIGMortality_getTreeHeight_1', 2); - Module['_emscripten_bind_SIGMortality_postfireCanopyCover_0'] = _emscripten_bind_SIGMortality_postfireCanopyCover_0 = createExportWrapper('emscripten_bind_SIGMortality_postfireCanopyCover_0', 1); - Module['_emscripten_bind_SIGMortality_prefireCanopyCover_0'] = _emscripten_bind_SIGMortality_prefireCanopyCover_0 = createExportWrapper('emscripten_bind_SIGMortality_prefireCanopyCover_0', 1); - Module['_emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1'] = _emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1 = createExportWrapper('emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1', 2); - Module['_emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1'] = _emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1', 2); - Module['_emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1'] = _emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1 = createExportWrapper('emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1', 2); - Module['_emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1'] = _emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1', 2); - Module['_emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0'] = _emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0 = createExportWrapper('emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0', 1); - Module['_emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1'] = _emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1 = createExportWrapper('emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1', 2); - Module['_emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1'] = _emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1', 2); - Module['_emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0'] = _emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0 = createExportWrapper('emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0', 1); - Module['_emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1'] = _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1', 2); - Module['_emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2'] = _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2 = createExportWrapper('emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2', 3); - Module['_emscripten_bind_SIGMortality_setAirTemperature_2'] = _emscripten_bind_SIGMortality_setAirTemperature_2 = createExportWrapper('emscripten_bind_SIGMortality_setAirTemperature_2', 3); - Module['_emscripten_bind_SIGMortality_setBeetleDamage_1'] = _emscripten_bind_SIGMortality_setBeetleDamage_1 = createExportWrapper('emscripten_bind_SIGMortality_setBeetleDamage_1', 2); - Module['_emscripten_bind_SIGMortality_setBoleCharHeight_2'] = _emscripten_bind_SIGMortality_setBoleCharHeight_2 = createExportWrapper('emscripten_bind_SIGMortality_setBoleCharHeight_2', 3); - Module['_emscripten_bind_SIGMortality_setCambiumKillRating_1'] = _emscripten_bind_SIGMortality_setCambiumKillRating_1 = createExportWrapper('emscripten_bind_SIGMortality_setCambiumKillRating_1', 2); - Module['_emscripten_bind_SIGMortality_setCrownDamage_1'] = _emscripten_bind_SIGMortality_setCrownDamage_1 = createExportWrapper('emscripten_bind_SIGMortality_setCrownDamage_1', 2); - Module['_emscripten_bind_SIGMortality_setCrownRatio_2'] = _emscripten_bind_SIGMortality_setCrownRatio_2 = createExportWrapper('emscripten_bind_SIGMortality_setCrownRatio_2', 3); - Module['_emscripten_bind_SIGMortality_setDBH_2'] = _emscripten_bind_SIGMortality_setDBH_2 = createExportWrapper('emscripten_bind_SIGMortality_setDBH_2', 3); - Module['_emscripten_bind_SIGMortality_setEquationType_1'] = _emscripten_bind_SIGMortality_setEquationType_1 = createExportWrapper('emscripten_bind_SIGMortality_setEquationType_1', 2); - Module['_emscripten_bind_SIGMortality_setFireSeverity_1'] = _emscripten_bind_SIGMortality_setFireSeverity_1 = createExportWrapper('emscripten_bind_SIGMortality_setFireSeverity_1', 2); - Module['_emscripten_bind_SIGMortality_setFirelineIntensity_2'] = _emscripten_bind_SIGMortality_setFirelineIntensity_2 = createExportWrapper('emscripten_bind_SIGMortality_setFirelineIntensity_2', 3); - Module['_emscripten_bind_SIGMortality_setFlameLength_2'] = _emscripten_bind_SIGMortality_setFlameLength_2 = createExportWrapper('emscripten_bind_SIGMortality_setFlameLength_2', 3); - Module['_emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1'] = _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1 = createExportWrapper('emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1', 2); - Module['_emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2'] = _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2 = createExportWrapper('emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2', 3); - Module['_emscripten_bind_SIGMortality_setMidFlameWindSpeed_2'] = _emscripten_bind_SIGMortality_setMidFlameWindSpeed_2 = createExportWrapper('emscripten_bind_SIGMortality_setMidFlameWindSpeed_2', 3); - Module['_emscripten_bind_SIGMortality_setGACCRegion_1'] = _emscripten_bind_SIGMortality_setGACCRegion_1 = createExportWrapper('emscripten_bind_SIGMortality_setGACCRegion_1', 2); - Module['_emscripten_bind_SIGMortality_setScorchHeight_2'] = _emscripten_bind_SIGMortality_setScorchHeight_2 = createExportWrapper('emscripten_bind_SIGMortality_setScorchHeight_2', 3); - Module['_emscripten_bind_SIGMortality_setSpeciesCode_1'] = _emscripten_bind_SIGMortality_setSpeciesCode_1 = createExportWrapper('emscripten_bind_SIGMortality_setSpeciesCode_1', 2); - Module['_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2'] = _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2 = createExportWrapper('emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2', 3); - Module['_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2'] = _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2 = createExportWrapper('emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2', 3); - Module['_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2'] = _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2 = createExportWrapper('emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2', 3); - Module['_emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2'] = _emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2 = createExportWrapper('emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2', 3); - Module['_emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2'] = _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2 = createExportWrapper('emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2', 3); - Module['_emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2'] = _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2 = createExportWrapper('emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2', 3); - Module['_emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2'] = _emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2 = createExportWrapper('emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2', 3); - Module['_emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2'] = _emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2 = createExportWrapper('emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2', 3); - Module['_emscripten_bind_SIGMortality_setTreeHeight_2'] = _emscripten_bind_SIGMortality_setTreeHeight_2 = createExportWrapper('emscripten_bind_SIGMortality_setTreeHeight_2', 3); - Module['_emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1'] = _emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1 = createExportWrapper('emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1', 2); - Module['_emscripten_bind_SIGMortality_setWindHeightInputMode_1'] = _emscripten_bind_SIGMortality_setWindHeightInputMode_1 = createExportWrapper('emscripten_bind_SIGMortality_setWindHeightInputMode_1', 2); - Module['_emscripten_bind_SIGMortality_setWindSpeed_2'] = _emscripten_bind_SIGMortality_setWindSpeed_2 = createExportWrapper('emscripten_bind_SIGMortality_setWindSpeed_2', 3); - Module['_emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4'] = _emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4 = createExportWrapper('emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4', 5); - Module['_emscripten_bind_SIGMortality___destroy___0'] = _emscripten_bind_SIGMortality___destroy___0 = createExportWrapper('emscripten_bind_SIGMortality___destroy___0', 1); - Module['_emscripten_bind_WindSpeedUtility_WindSpeedUtility_0'] = _emscripten_bind_WindSpeedUtility_WindSpeedUtility_0 = createExportWrapper('emscripten_bind_WindSpeedUtility_WindSpeedUtility_0', 0); - Module['_emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2'] = _emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2 = createExportWrapper('emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2', 3); - Module['_emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1'] = _emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1 = createExportWrapper('emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1', 2); - Module['_emscripten_bind_WindSpeedUtility___destroy___0'] = _emscripten_bind_WindSpeedUtility___destroy___0 = createExportWrapper('emscripten_bind_WindSpeedUtility___destroy___0', 1); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0', 0); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0', 1); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1', 2); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1', 2); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1', 2); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1', 2); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1', 2); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1', 2); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1', 2); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1', 2); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1', 2); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0', 1); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0', 1); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0', 1); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0', 1); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1', 2); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8', 9); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0', 1); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1', 2); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0', 1); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0', 1); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0', 1); - Module['_emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0'] = _emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0 = createExportWrapper('emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0', 1); - Module['_emscripten_bind_SIGSlopeTool_SIGSlopeTool_0'] = _emscripten_bind_SIGSlopeTool_SIGSlopeTool_0 = createExportWrapper('emscripten_bind_SIGSlopeTool_SIGSlopeTool_0', 0); - Module['_emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1'] = _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1'] = _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistance_2'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistance_2 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistance_2', 3); - Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2', 3); - Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1'] = _emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1'] = _emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1'] = _emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1'] = _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1'] = _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1'] = _emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1'] = _emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1'] = _emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1'] = _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1'] = _emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0'] = _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0 = createExportWrapper('emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0', 1); - Module['_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0'] = _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0 = createExportWrapper('emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0', 1); - Module['_emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0'] = _emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0 = createExportWrapper('emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0', 1); - Module['_emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0'] = _emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0 = createExportWrapper('emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0', 1); - Module['_emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1'] = _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1', 2); - Module['_emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1'] = _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1', 2); - Module['_emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0'] = _emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0 = createExportWrapper('emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0', 1); - Module['_emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0'] = _emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0 = createExportWrapper('emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0', 1); - Module['_emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2'] = _emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2 = createExportWrapper('emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2', 3); - Module['_emscripten_bind_SIGSlopeTool_setContourInterval_2'] = _emscripten_bind_SIGSlopeTool_setContourInterval_2 = createExportWrapper('emscripten_bind_SIGSlopeTool_setContourInterval_2', 3); - Module['_emscripten_bind_SIGSlopeTool_setMapDistance_2'] = _emscripten_bind_SIGSlopeTool_setMapDistance_2 = createExportWrapper('emscripten_bind_SIGSlopeTool_setMapDistance_2', 3); - Module['_emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1'] = _emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1', 2); - Module['_emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1'] = _emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1', 2); - Module['_emscripten_bind_SIGSlopeTool_setNumberOfContours_1'] = _emscripten_bind_SIGSlopeTool_setNumberOfContours_1 = createExportWrapper('emscripten_bind_SIGSlopeTool_setNumberOfContours_1', 2); - Module['_emscripten_bind_SIGSlopeTool___destroy___0'] = _emscripten_bind_SIGSlopeTool___destroy___0 = createExportWrapper('emscripten_bind_SIGSlopeTool___destroy___0', 1); - Module['_emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0'] = _emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0 = createExportWrapper('emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0', 0); - Module['_emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0'] = _emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0 = createExportWrapper('emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0', 1); - Module['_emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2'] = _emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2 = createExportWrapper('emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2', 3); - Module['_emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2'] = _emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2 = createExportWrapper('emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2', 3); - Module['_emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1'] = _emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1 = createExportWrapper('emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1', 2); - Module['_emscripten_bind_VaporPressureDeficitCalculator___destroy___0'] = _emscripten_bind_VaporPressureDeficitCalculator___destroy___0 = createExportWrapper('emscripten_bind_VaporPressureDeficitCalculator___destroy___0', 1); - Module['_emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0'] = _emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0 = createExportWrapper('emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0', 0); - Module['_emscripten_bind_RelativeHumidityTool_calculate_0'] = _emscripten_bind_RelativeHumidityTool_calculate_0 = createExportWrapper('emscripten_bind_RelativeHumidityTool_calculate_0', 1); - Module['_emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1'] = _emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1 = createExportWrapper('emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1', 2); - Module['_emscripten_bind_RelativeHumidityTool_getSiteElevation_1'] = _emscripten_bind_RelativeHumidityTool_getSiteElevation_1 = createExportWrapper('emscripten_bind_RelativeHumidityTool_getSiteElevation_1', 2); - Module['_emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1'] = _emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1 = createExportWrapper('emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1', 2); - Module['_emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1'] = _emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1 = createExportWrapper('emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1', 2); - Module['_emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1'] = _emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1 = createExportWrapper('emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1', 2); - Module['_emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1'] = _emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1 = createExportWrapper('emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1', 2); - Module['_emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2'] = _emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2 = createExportWrapper('emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2', 3); - Module['_emscripten_bind_RelativeHumidityTool_setSiteElevation_2'] = _emscripten_bind_RelativeHumidityTool_setSiteElevation_2 = createExportWrapper('emscripten_bind_RelativeHumidityTool_setSiteElevation_2', 3); - Module['_emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2'] = _emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2 = createExportWrapper('emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2', 3); - Module['_emscripten_bind_RelativeHumidityTool___destroy___0'] = _emscripten_bind_RelativeHumidityTool___destroy___0 = createExportWrapper('emscripten_bind_RelativeHumidityTool___destroy___0', 1); - Module['_emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0'] = _emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0', 0); - Module['_emscripten_bind_SafeSeparationDistanceCalculator_calculate_0'] = _emscripten_bind_SafeSeparationDistanceCalculator_calculate_0 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_calculate_0', 1); - Module['_emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0'] = _emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0', 1); - Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0'] = _emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0', 1); - Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0'] = _emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0', 1); - Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1'] = _emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1', 2); - Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1'] = _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1', 2); - Module['_emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1'] = _emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1', 2); - Module['_emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0'] = _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0', 1); - Module['_emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1'] = _emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1', 2); - Module['_emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1'] = _emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1', 2); - Module['_emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1'] = _emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1', 2); - Module['_emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2'] = _emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2', 3); - Module['_emscripten_bind_SafeSeparationDistanceCalculator___destroy___0'] = _emscripten_bind_SafeSeparationDistanceCalculator___destroy___0 = createExportWrapper('emscripten_bind_SafeSeparationDistanceCalculator___destroy___0', 1); - Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet = createExportWrapper('emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet', 0); - Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_Acres'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_Acres = createExportWrapper('emscripten_enum_AreaUnits_AreaUnitsEnum_Acres', 0); - Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares = createExportWrapper('emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares', 0); - Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters = createExportWrapper('emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters', 0); - Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles = createExportWrapper('emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles', 0); - Module['_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers = createExportWrapper('emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers', 0); - Module['_emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre'] = _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre = createExportWrapper('emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre', 0); - Module['_emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare'] = _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare = createExportWrapper('emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare', 0); - Module['_emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction'] = _emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction = createExportWrapper('emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction', 0); - Module['_emscripten_enum_FractionUnits_FractionUnitsEnum_Percent'] = _emscripten_enum_FractionUnits_FractionUnitsEnum_Percent = createExportWrapper('emscripten_enum_FractionUnits_FractionUnitsEnum_Percent', 0); - Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Feet'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Feet = createExportWrapper('emscripten_enum_LengthUnits_LengthUnitsEnum_Feet', 0); - Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Inches'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Inches = createExportWrapper('emscripten_enum_LengthUnits_LengthUnitsEnum_Inches', 0); - Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters = createExportWrapper('emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters', 0); - Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters = createExportWrapper('emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters', 0); - Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Meters'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Meters = createExportWrapper('emscripten_enum_LengthUnits_LengthUnitsEnum_Meters', 0); - Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Chains'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Chains = createExportWrapper('emscripten_enum_LengthUnits_LengthUnitsEnum_Chains', 0); - Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Miles'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Miles = createExportWrapper('emscripten_enum_LengthUnits_LengthUnitsEnum_Miles', 0); - Module['_emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers = createExportWrapper('emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers', 0); - Module['_emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot'] = _emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot = createExportWrapper('emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot', 0); - Module['_emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre'] = _emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre = createExportWrapper('emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre', 0); - Module['_emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare'] = _emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare = createExportWrapper('emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare', 0); - Module['_emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter'] = _emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter = createExportWrapper('emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter', 0); - Module['_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet'] = _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet = createExportWrapper('emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet', 0); - Module['_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters'] = _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters = createExportWrapper('emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters', 0); - Module['_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches'] = _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches = createExportWrapper('emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches', 0); - Module['_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters'] = _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters = createExportWrapper('emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters', 0); - Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute = createExportWrapper('emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute', 0); - Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour = createExportWrapper('emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour', 0); - Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond = createExportWrapper('emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond', 0); - Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute = createExportWrapper('emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute', 0); - Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour = createExportWrapper('emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour', 0); - Module['_emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour = createExportWrapper('emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour', 0); - Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal', 0); - Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal', 0); - Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal', 0); - Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal', 0); - Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal', 0); - Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_Bar'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_Bar = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_Bar', 0); - Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere', 0); - Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere', 0); - Module['_emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch = createExportWrapper('emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch', 0); - Module['_emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees'] = _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees = createExportWrapper('emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees', 0); - Module['_emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent'] = _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent = createExportWrapper('emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent', 0); - Module['_emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot'] = _emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot = createExportWrapper('emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot', 0); - Module['_emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter'] = _emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter = createExportWrapper('emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter', 0); - Module['_emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound'] = _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound = createExportWrapper('emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound', 0); - Module['_emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram'] = _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram = createExportWrapper('emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram', 0); - Module['_emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot'] = _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot = createExportWrapper('emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot', 0); - Module['_emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter'] = _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter = createExportWrapper('emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter', 0); - Module['_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot'] = _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot = createExportWrapper('emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot', 0); - Module['_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter'] = _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter = createExportWrapper('emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter', 0); - Module['_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter'] = _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter = createExportWrapper('emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter', 0); - Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute = createExportWrapper('emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute', 0); - Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond = createExportWrapper('emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond', 0); - Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond = createExportWrapper('emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond', 0); - Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute = createExportWrapper('emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute', 0); - Module['_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter = createExportWrapper('emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter', 0); - Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond = createExportWrapper('emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond', 0); - Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute = createExportWrapper('emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute', 0); - Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond = createExportWrapper('emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond', 0); - Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute = createExportWrapper('emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute', 0); - Module['_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter = createExportWrapper('emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter', 0); - Module['_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit'] = _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit = createExportWrapper('emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit', 0); - Module['_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius'] = _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius = createExportWrapper('emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius', 0); - Module['_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin'] = _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin = createExportWrapper('emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin', 0); - Module['_emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes'] = _emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes = createExportWrapper('emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes', 0); - Module['_emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds'] = _emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds = createExportWrapper('emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds', 0); - Module['_emscripten_enum_TimeUnits_TimeUnitsEnum_Hours'] = _emscripten_enum_TimeUnits_TimeUnitsEnum_Hours = createExportWrapper('emscripten_enum_TimeUnits_TimeUnitsEnum_Hours', 0); - Module['_emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack'] = _emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack = createExportWrapper('emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack', 0); - Module['_emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack'] = _emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack = createExportWrapper('emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack', 0); - Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Unreported'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Unreported = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_Unreported', 0); - Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Reported'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Reported = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_Reported', 0); - Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Attacked'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Attacked = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_Attacked', 0); - Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Contained'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Contained = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_Contained', 0); - Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Overrun'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Overrun = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_Overrun', 0); - Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted', 0); - Module['_emscripten_enum_ContainStatus_ContainStatusEnum_Overflow'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Overflow = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_Overflow', 0); - Module['_emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded'] = _emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded', 0); - Module['_emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded'] = _emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded = createExportWrapper('emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded', 0); - Module['_emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank'] = _emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank = createExportWrapper('emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank', 0); - Module['_emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank'] = _emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank = createExportWrapper('emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank', 0); - Module['_emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks'] = _emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks = createExportWrapper('emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks', 0); - Module['_emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank'] = _emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank = createExportWrapper('emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank', 0); - Module['_emscripten_enum_ContainMode_Default'] = _emscripten_enum_ContainMode_Default = createExportWrapper('emscripten_enum_ContainMode_Default', 0); - Module['_emscripten_enum_ContainMode_ComputeWithOptimalResource'] = _emscripten_enum_ContainMode_ComputeWithOptimalResource = createExportWrapper('emscripten_enum_ContainMode_ComputeWithOptimalResource', 0); - Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter = createExportWrapper('emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter', 0); - Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky = createExportWrapper('emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky', 0); - Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep = createExportWrapper('emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep', 0); - Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow = createExportWrapper('emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow', 0); - Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff = createExportWrapper('emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff', 0); - Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff = createExportWrapper('emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff', 0); - Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed = createExportWrapper('emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed', 0); - Module['_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss = createExportWrapper('emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss', 0); - Module['_emscripten_enum_LightningCharge_LightningChargeEnum_Negative'] = _emscripten_enum_LightningCharge_LightningChargeEnum_Negative = createExportWrapper('emscripten_enum_LightningCharge_LightningChargeEnum_Negative', 0); - Module['_emscripten_enum_LightningCharge_LightningChargeEnum_Positive'] = _emscripten_enum_LightningCharge_LightningChargeEnum_Positive = createExportWrapper('emscripten_enum_LightningCharge_LightningChargeEnum_Positive', 0); - Module['_emscripten_enum_LightningCharge_LightningChargeEnum_Unknown'] = _emscripten_enum_LightningCharge_LightningChargeEnum_Unknown = createExportWrapper('emscripten_enum_LightningCharge_LightningChargeEnum_Unknown', 0); - Module['_emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED'] = _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED = createExportWrapper('emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED', 0); - Module['_emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN'] = _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN = createExportWrapper('emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN', 0); - Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE', 0); - Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR', 0); - Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR', 0); - Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK', 0); - Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE', 0); - Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE', 0); - Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE', 0); - Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR', 0); - Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR', 0); - Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE', 0); - Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE', 0); - Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE', 0); - Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE', 0); - Module['_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE = createExportWrapper('emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE', 0); - Module['_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD'] = _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD = createExportWrapper('emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD', 0); - Module['_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM'] = _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM = createExportWrapper('emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM', 0); - Module['_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD'] = _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD = createExportWrapper('emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD', 0); - Module['_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP'] = _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP = createExportWrapper('emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP', 0); - Module['_emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead'] = _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead = createExportWrapper('emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead', 0); - Module['_emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live'] = _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live = createExportWrapper('emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live', 0); - Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates = createExportWrapper('emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates', 0); - Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses = createExportWrapper('emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses', 0); - Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses = createExportWrapper('emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses', 0); - Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles = createExportWrapper('emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles', 0); - Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses = createExportWrapper('emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses', 0); - Module['_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels = createExportWrapper('emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels', 0); - Module['_emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low'] = _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low = createExportWrapper('emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low', 0); - Module['_emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate'] = _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate = createExportWrapper('emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate', 0); - Module['_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet'] = _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet = createExportWrapper('emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet', 0); - Module['_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise'] = _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise = createExportWrapper('emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise', 0); - Module['_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush'] = _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush = createExportWrapper('emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush', 0); - Module['_emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad'] = _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad = createExportWrapper('emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad', 0); - Module['_emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType'] = _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType = createExportWrapper('emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType', 0); - Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass = createExportWrapper('emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass', 0); - Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate = createExportWrapper('emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate', 0); - Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass = createExportWrapper('emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass', 0); - Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass = createExportWrapper('emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass', 0); - Module['_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario = createExportWrapper('emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario', 0); - Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour = createExportWrapper('emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour', 0); - Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour = createExportWrapper('emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour', 0); - Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour = createExportWrapper('emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour', 0); - Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous = createExportWrapper('emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous', 0); - Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody = createExportWrapper('emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody', 0); - Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate = createExportWrapper('emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate', 0); - Module['_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate = createExportWrapper('emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate', 0); - Module['_emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint'] = _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint = createExportWrapper('emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint', 0); - Module['_emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter'] = _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter = createExportWrapper('emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter', 0); - Module['_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod'] = _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod = createExportWrapper('emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod', 0); - Module['_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic'] = _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic = createExportWrapper('emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic', 0); - Module['_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic'] = _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic = createExportWrapper('emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic', 0); - Module['_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional'] = _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional = createExportWrapper('emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional', 0); - Module['_emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered'] = _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered = createExportWrapper('emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered', 0); - Module['_emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered'] = _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered = createExportWrapper('emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered', 0); - Module['_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput'] = _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput = createExportWrapper('emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput', 0); - Module['_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio'] = _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio = createExportWrapper('emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio', 0); - Module['_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio'] = _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio = createExportWrapper('emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio', 0); - Module['_emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope'] = _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope = createExportWrapper('emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope', 0); - Module['_emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth'] = _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth = createExportWrapper('emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth', 0); - Module['_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame'] = _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame = createExportWrapper('emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame', 0); - Module['_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot'] = _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot = createExportWrapper('emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot', 0); - Module['_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter'] = _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter = createExportWrapper('emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter', 0); - Module['_emscripten_enum_WindUpslopeAlignmentMode_NotAligned'] = _emscripten_enum_WindUpslopeAlignmentMode_NotAligned = createExportWrapper('emscripten_enum_WindUpslopeAlignmentMode_NotAligned', 0); - Module['_emscripten_enum_WindUpslopeAlignmentMode_Aligned'] = _emscripten_enum_WindUpslopeAlignmentMode_Aligned = createExportWrapper('emscripten_enum_WindUpslopeAlignmentMode_Aligned', 0); - Module['_emscripten_enum_SurfaceRunInDirectionOf_MaxSpread'] = _emscripten_enum_SurfaceRunInDirectionOf_MaxSpread = createExportWrapper('emscripten_enum_SurfaceRunInDirectionOf_MaxSpread', 0); - Module['_emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest'] = _emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest = createExportWrapper('emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest', 0); - Module['_emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking'] = _emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking = createExportWrapper('emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking', 0); - Module['_emscripten_enum_FireType_FireTypeEnum_Surface'] = _emscripten_enum_FireType_FireTypeEnum_Surface = createExportWrapper('emscripten_enum_FireType_FireTypeEnum_Surface', 0); - Module['_emscripten_enum_FireType_FireTypeEnum_Torching'] = _emscripten_enum_FireType_FireTypeEnum_Torching = createExportWrapper('emscripten_enum_FireType_FireTypeEnum_Torching', 0); - Module['_emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire'] = _emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire = createExportWrapper('emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire', 0); - Module['_emscripten_enum_FireType_FireTypeEnum_Crowning'] = _emscripten_enum_FireType_FireTypeEnum_Crowning = createExportWrapper('emscripten_enum_FireType_FireTypeEnum_Crowning', 0); - Module['_emscripten_enum_BeetleDamage_not_set'] = _emscripten_enum_BeetleDamage_not_set = createExportWrapper('emscripten_enum_BeetleDamage_not_set', 0); - Module['_emscripten_enum_BeetleDamage_no'] = _emscripten_enum_BeetleDamage_no = createExportWrapper('emscripten_enum_BeetleDamage_no', 0); - Module['_emscripten_enum_BeetleDamage_yes'] = _emscripten_enum_BeetleDamage_yes = createExportWrapper('emscripten_enum_BeetleDamage_yes', 0); - Module['_emscripten_enum_CrownFireCalculationMethod_rothermel'] = _emscripten_enum_CrownFireCalculationMethod_rothermel = createExportWrapper('emscripten_enum_CrownFireCalculationMethod_rothermel', 0); - Module['_emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt'] = _emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt = createExportWrapper('emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt', 0); - Module['_emscripten_enum_CrownDamageEquationCode_not_set'] = _emscripten_enum_CrownDamageEquationCode_not_set = createExportWrapper('emscripten_enum_CrownDamageEquationCode_not_set', 0); - Module['_emscripten_enum_CrownDamageEquationCode_white_fir'] = _emscripten_enum_CrownDamageEquationCode_white_fir = createExportWrapper('emscripten_enum_CrownDamageEquationCode_white_fir', 0); - Module['_emscripten_enum_CrownDamageEquationCode_subalpine_fir'] = _emscripten_enum_CrownDamageEquationCode_subalpine_fir = createExportWrapper('emscripten_enum_CrownDamageEquationCode_subalpine_fir', 0); - Module['_emscripten_enum_CrownDamageEquationCode_incense_cedar'] = _emscripten_enum_CrownDamageEquationCode_incense_cedar = createExportWrapper('emscripten_enum_CrownDamageEquationCode_incense_cedar', 0); - Module['_emscripten_enum_CrownDamageEquationCode_western_larch'] = _emscripten_enum_CrownDamageEquationCode_western_larch = createExportWrapper('emscripten_enum_CrownDamageEquationCode_western_larch', 0); - Module['_emscripten_enum_CrownDamageEquationCode_whitebark_pine'] = _emscripten_enum_CrownDamageEquationCode_whitebark_pine = createExportWrapper('emscripten_enum_CrownDamageEquationCode_whitebark_pine', 0); - Module['_emscripten_enum_CrownDamageEquationCode_engelmann_spruce'] = _emscripten_enum_CrownDamageEquationCode_engelmann_spruce = createExportWrapper('emscripten_enum_CrownDamageEquationCode_engelmann_spruce', 0); - Module['_emscripten_enum_CrownDamageEquationCode_sugar_pine'] = _emscripten_enum_CrownDamageEquationCode_sugar_pine = createExportWrapper('emscripten_enum_CrownDamageEquationCode_sugar_pine', 0); - Module['_emscripten_enum_CrownDamageEquationCode_red_fir'] = _emscripten_enum_CrownDamageEquationCode_red_fir = createExportWrapper('emscripten_enum_CrownDamageEquationCode_red_fir', 0); - Module['_emscripten_enum_CrownDamageEquationCode_ponderosa_pine'] = _emscripten_enum_CrownDamageEquationCode_ponderosa_pine = createExportWrapper('emscripten_enum_CrownDamageEquationCode_ponderosa_pine', 0); - Module['_emscripten_enum_CrownDamageEquationCode_ponderosa_kill'] = _emscripten_enum_CrownDamageEquationCode_ponderosa_kill = createExportWrapper('emscripten_enum_CrownDamageEquationCode_ponderosa_kill', 0); - Module['_emscripten_enum_CrownDamageEquationCode_douglas_fir'] = _emscripten_enum_CrownDamageEquationCode_douglas_fir = createExportWrapper('emscripten_enum_CrownDamageEquationCode_douglas_fir', 0); - Module['_emscripten_enum_CrownDamageType_not_set'] = _emscripten_enum_CrownDamageType_not_set = createExportWrapper('emscripten_enum_CrownDamageType_not_set', 0); - Module['_emscripten_enum_CrownDamageType_crown_length'] = _emscripten_enum_CrownDamageType_crown_length = createExportWrapper('emscripten_enum_CrownDamageType_crown_length', 0); - Module['_emscripten_enum_CrownDamageType_crown_volume'] = _emscripten_enum_CrownDamageType_crown_volume = createExportWrapper('emscripten_enum_CrownDamageType_crown_volume', 0); - Module['_emscripten_enum_CrownDamageType_crown_kill'] = _emscripten_enum_CrownDamageType_crown_kill = createExportWrapper('emscripten_enum_CrownDamageType_crown_kill', 0); - Module['_emscripten_enum_EquationType_not_set'] = _emscripten_enum_EquationType_not_set = createExportWrapper('emscripten_enum_EquationType_not_set', 0); - Module['_emscripten_enum_EquationType_crown_scorch'] = _emscripten_enum_EquationType_crown_scorch = createExportWrapper('emscripten_enum_EquationType_crown_scorch', 0); - Module['_emscripten_enum_EquationType_bole_char'] = _emscripten_enum_EquationType_bole_char = createExportWrapper('emscripten_enum_EquationType_bole_char', 0); - Module['_emscripten_enum_EquationType_crown_damage'] = _emscripten_enum_EquationType_crown_damage = createExportWrapper('emscripten_enum_EquationType_crown_damage', 0); - Module['_emscripten_enum_FireSeverity_not_set'] = _emscripten_enum_FireSeverity_not_set = createExportWrapper('emscripten_enum_FireSeverity_not_set', 0); - Module['_emscripten_enum_FireSeverity_empty'] = _emscripten_enum_FireSeverity_empty = createExportWrapper('emscripten_enum_FireSeverity_empty', 0); - Module['_emscripten_enum_FireSeverity_low'] = _emscripten_enum_FireSeverity_low = createExportWrapper('emscripten_enum_FireSeverity_low', 0); - Module['_emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length'] = _emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length = createExportWrapper('emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length', 0); - Module['_emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height'] = _emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height = createExportWrapper('emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height', 0); - Module['_emscripten_enum_GACC_NotSet'] = _emscripten_enum_GACC_NotSet = createExportWrapper('emscripten_enum_GACC_NotSet', 0); - Module['_emscripten_enum_GACC_Alaska'] = _emscripten_enum_GACC_Alaska = createExportWrapper('emscripten_enum_GACC_Alaska', 0); - Module['_emscripten_enum_GACC_California'] = _emscripten_enum_GACC_California = createExportWrapper('emscripten_enum_GACC_California', 0); - Module['_emscripten_enum_GACC_EasternArea'] = _emscripten_enum_GACC_EasternArea = createExportWrapper('emscripten_enum_GACC_EasternArea', 0); - Module['_emscripten_enum_GACC_GreatBasin'] = _emscripten_enum_GACC_GreatBasin = createExportWrapper('emscripten_enum_GACC_GreatBasin', 0); - Module['_emscripten_enum_GACC_NorthernRockies'] = _emscripten_enum_GACC_NorthernRockies = createExportWrapper('emscripten_enum_GACC_NorthernRockies', 0); - Module['_emscripten_enum_GACC_Northwest'] = _emscripten_enum_GACC_Northwest = createExportWrapper('emscripten_enum_GACC_Northwest', 0); - Module['_emscripten_enum_GACC_RockeyMountain'] = _emscripten_enum_GACC_RockeyMountain = createExportWrapper('emscripten_enum_GACC_RockeyMountain', 0); - Module['_emscripten_enum_GACC_SouthernArea'] = _emscripten_enum_GACC_SouthernArea = createExportWrapper('emscripten_enum_GACC_SouthernArea', 0); - Module['_emscripten_enum_GACC_Southwest'] = _emscripten_enum_GACC_Southwest = createExportWrapper('emscripten_enum_GACC_Southwest', 0); - Module['_emscripten_enum_RequiredFieldNames_region'] = _emscripten_enum_RequiredFieldNames_region = createExportWrapper('emscripten_enum_RequiredFieldNames_region', 0); - Module['_emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch'] = _emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch = createExportWrapper('emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch', 0); - Module['_emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value'] = _emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value = createExportWrapper('emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value', 0); - Module['_emscripten_enum_RequiredFieldNames_equation_type'] = _emscripten_enum_RequiredFieldNames_equation_type = createExportWrapper('emscripten_enum_RequiredFieldNames_equation_type', 0); - Module['_emscripten_enum_RequiredFieldNames_dbh'] = _emscripten_enum_RequiredFieldNames_dbh = createExportWrapper('emscripten_enum_RequiredFieldNames_dbh', 0); - Module['_emscripten_enum_RequiredFieldNames_tree_height'] = _emscripten_enum_RequiredFieldNames_tree_height = createExportWrapper('emscripten_enum_RequiredFieldNames_tree_height', 0); - Module['_emscripten_enum_RequiredFieldNames_crown_ratio'] = _emscripten_enum_RequiredFieldNames_crown_ratio = createExportWrapper('emscripten_enum_RequiredFieldNames_crown_ratio', 0); - Module['_emscripten_enum_RequiredFieldNames_crown_damage'] = _emscripten_enum_RequiredFieldNames_crown_damage = createExportWrapper('emscripten_enum_RequiredFieldNames_crown_damage', 0); - Module['_emscripten_enum_RequiredFieldNames_cambium_kill_rating'] = _emscripten_enum_RequiredFieldNames_cambium_kill_rating = createExportWrapper('emscripten_enum_RequiredFieldNames_cambium_kill_rating', 0); - Module['_emscripten_enum_RequiredFieldNames_beetle_damage'] = _emscripten_enum_RequiredFieldNames_beetle_damage = createExportWrapper('emscripten_enum_RequiredFieldNames_beetle_damage', 0); - Module['_emscripten_enum_RequiredFieldNames_bole_char_height'] = _emscripten_enum_RequiredFieldNames_bole_char_height = createExportWrapper('emscripten_enum_RequiredFieldNames_bole_char_height', 0); - Module['_emscripten_enum_RequiredFieldNames_bark_thickness'] = _emscripten_enum_RequiredFieldNames_bark_thickness = createExportWrapper('emscripten_enum_RequiredFieldNames_bark_thickness', 0); - Module['_emscripten_enum_RequiredFieldNames_fire_severity'] = _emscripten_enum_RequiredFieldNames_fire_severity = createExportWrapper('emscripten_enum_RequiredFieldNames_fire_severity', 0); - Module['_emscripten_enum_RequiredFieldNames_num_inputs'] = _emscripten_enum_RequiredFieldNames_num_inputs = createExportWrapper('emscripten_enum_RequiredFieldNames_num_inputs', 0); - Module['_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH'] = _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH = createExportWrapper('emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH', 0); - Module['_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST'] = _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST = createExportWrapper('emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST', 0); - Module['_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH'] = _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH = createExportWrapper('emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH', 0); - Module['_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST'] = _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST = createExportWrapper('emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST', 0); - Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F = createExportWrapper('emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F', 0); - Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F = createExportWrapper('emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F', 0); - Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F = createExportWrapper('emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F', 0); - Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F = createExportWrapper('emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F', 0); - Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F = createExportWrapper('emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F', 0); - Module['_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F = createExportWrapper('emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F', 0); - Module['_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT'] = _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT = createExportWrapper('emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT', 0); - Module['_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT'] = _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT = createExportWrapper('emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT', 0); - Module['_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT'] = _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT = createExportWrapper('emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT', 0); - Module['_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY'] = _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY = createExportWrapper('emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY', 0); - Module['_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT'] = _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT = createExportWrapper('emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT', 0); - Module['_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN'] = _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN = createExportWrapper('emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT', 0); - Module['_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT = createExportWrapper('emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT', 0); - Module['_emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED'] = _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED = createExportWrapper('emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED', 0); - Module['_emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED'] = _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED = createExportWrapper('emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED', 0); - Module['_emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT'] = _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT = createExportWrapper('emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT', 0); - Module['_emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT'] = _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT = createExportWrapper('emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT', 0); - Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE = createExportWrapper('emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE', 0); - Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE = createExportWrapper('emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE', 0); - Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE = createExportWrapper('emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE', 0); - Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE = createExportWrapper('emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE', 0); - Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE = createExportWrapper('emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE', 0); - Module['_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET = createExportWrapper('emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION', 0); - Module['_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY = createExportWrapper('emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY', 0); - Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES = createExportWrapper('emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES', 0); - Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE = createExportWrapper('emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE', 0); - Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE = createExportWrapper('emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE', 0); - Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE = createExportWrapper('emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE', 0); - Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE = createExportWrapper('emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE', 0); - Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE = createExportWrapper('emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE', 0); - Module['_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES = createExportWrapper('emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES', 0); - Module['_emscripten_enum_BurningCondition_BurningConditionEnum_Low'] = _emscripten_enum_BurningCondition_BurningConditionEnum_Low = createExportWrapper('emscripten_enum_BurningCondition_BurningConditionEnum_Low', 0); - Module['_emscripten_enum_BurningCondition_BurningConditionEnum_Moderate'] = _emscripten_enum_BurningCondition_BurningConditionEnum_Moderate = createExportWrapper('emscripten_enum_BurningCondition_BurningConditionEnum_Moderate', 0); - Module['_emscripten_enum_BurningCondition_BurningConditionEnum_Extreme'] = _emscripten_enum_BurningCondition_BurningConditionEnum_Extreme = createExportWrapper('emscripten_enum_BurningCondition_BurningConditionEnum_Extreme', 0); - Module['_emscripten_enum_SlopeClass_SlopeClassEnum_Flat'] = _emscripten_enum_SlopeClass_SlopeClassEnum_Flat = createExportWrapper('emscripten_enum_SlopeClass_SlopeClassEnum_Flat', 0); - Module['_emscripten_enum_SlopeClass_SlopeClassEnum_Moderate'] = _emscripten_enum_SlopeClass_SlopeClassEnum_Moderate = createExportWrapper('emscripten_enum_SlopeClass_SlopeClassEnum_Moderate', 0); - Module['_emscripten_enum_SlopeClass_SlopeClassEnum_Steep'] = _emscripten_enum_SlopeClass_SlopeClassEnum_Steep = createExportWrapper('emscripten_enum_SlopeClass_SlopeClassEnum_Steep', 0); - Module['_emscripten_enum_SpeedClass_SpeedClassEnum_Light'] = _emscripten_enum_SpeedClass_SpeedClassEnum_Light = createExportWrapper('emscripten_enum_SpeedClass_SpeedClassEnum_Light', 0); - Module['_emscripten_enum_SpeedClass_SpeedClassEnum_Moderate'] = _emscripten_enum_SpeedClass_SpeedClassEnum_Moderate = createExportWrapper('emscripten_enum_SpeedClass_SpeedClassEnum_Moderate', 0); - Module['_emscripten_enum_SpeedClass_SpeedClassEnum_High'] = _emscripten_enum_SpeedClass_SpeedClassEnum_High = createExportWrapper('emscripten_enum_SpeedClass_SpeedClassEnum_High', 0); - Module['_emscripten_enum_SafetyCondition_SafetyConditionEnum_Low'] = _emscripten_enum_SafetyCondition_SafetyConditionEnum_Low = createExportWrapper('emscripten_enum_SafetyCondition_SafetyConditionEnum_Low', 0); - Module['_emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate'] = _emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate = createExportWrapper('emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate', 0); - Module['_emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme'] = _emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme = createExportWrapper('emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme', 0); - ___cxa_free_exception = createExportWrapper('__cxa_free_exception', 1); - _strerror = createExportWrapper('strerror', 1); - _emscripten_stack_get_end = wasmExports['emscripten_stack_get_end']; - _emscripten_stack_get_base = wasmExports['emscripten_stack_get_base']; - _setThrew = createExportWrapper('setThrew', 2); - __emscripten_tempret_set = createExportWrapper('_emscripten_tempret_set', 1); - _emscripten_stack_init = wasmExports['emscripten_stack_init']; - _emscripten_stack_get_free = wasmExports['emscripten_stack_get_free']; - __emscripten_stack_restore = wasmExports['_emscripten_stack_restore']; - __emscripten_stack_alloc = wasmExports['_emscripten_stack_alloc']; - _emscripten_stack_get_current = wasmExports['emscripten_stack_get_current']; - ___cxa_increment_exception_refcount = createExportWrapper('__cxa_increment_exception_refcount', 1); - ___cxa_decrement_exception_refcount = createExportWrapper('__cxa_decrement_exception_refcount', 1); - ___get_exception_message = createExportWrapper('__get_exception_message', 3); - ___cxa_can_catch = createExportWrapper('__cxa_can_catch', 3); - ___cxa_get_exception_ptr = createExportWrapper('__cxa_get_exception_ptr', 1); -} var wasmImports = { - /** @export */ - __assert_fail: ___assert_fail, - /** @export */ - __cxa_begin_catch: ___cxa_begin_catch, - /** @export */ - __cxa_find_matching_catch_2: ___cxa_find_matching_catch_2, - /** @export */ - __cxa_find_matching_catch_3: ___cxa_find_matching_catch_3, - /** @export */ - __cxa_throw: ___cxa_throw, - /** @export */ - __resumeException: ___resumeException, - /** @export */ - __syscall_fcntl64: ___syscall_fcntl64, - /** @export */ - __syscall_ioctl: ___syscall_ioctl, - /** @export */ - __syscall_openat: ___syscall_openat, - /** @export */ - _abort_js: __abort_js, - /** @export */ - emscripten_resize_heap: _emscripten_resize_heap, - /** @export */ - fd_close: _fd_close, - /** @export */ - fd_read: _fd_read, - /** @export */ - fd_seek: _fd_seek, - /** @export */ - fd_write: _fd_write, - /** @export */ - invoke_diii, - /** @export */ - invoke_diiidiiiii, - /** @export */ - invoke_ii, - /** @export */ - invoke_iidddddd, - /** @export */ - invoke_iidddiidd, - /** @export */ - invoke_iiddiiddiidid, - /** @export */ - invoke_iiddiidiidiiiii, - /** @export */ - invoke_iii, - /** @export */ - invoke_iiii, - /** @export */ - invoke_iiiii, - /** @export */ - invoke_iiiiidididdidddddidddii, - /** @export */ - invoke_iiiiii, - /** @export */ - invoke_v, - /** @export */ - invoke_vi, - /** @export */ - invoke_viddidiidd, - /** @export */ - invoke_vidii, - /** @export */ - invoke_vii, - /** @export */ - invoke_viididi, - /** @export */ - invoke_viii, - /** @export */ - invoke_viiiddddd, - /** @export */ - invoke_viiii, - /** @export */ - invoke_viiiiddddddddddddii, - /** @export */ - invoke_viiiii, - /** @export */ - invoke_viiiiiiiiiiiiiiiiii -}; -var wasmExports; -createWasm(); - + "__assert_fail": ___assert_fail, + "__cxa_begin_catch": ___cxa_begin_catch, + "__cxa_end_catch": ___cxa_end_catch, + "__cxa_find_matching_catch_2": ___cxa_find_matching_catch_2, + "__cxa_find_matching_catch_3": ___cxa_find_matching_catch_3, + "__cxa_rethrow": ___cxa_rethrow, + "__cxa_throw": ___cxa_throw, + "__resumeException": ___resumeException, + "__syscall_fcntl64": ___syscall_fcntl64, + "__syscall_ioctl": ___syscall_ioctl, + "__syscall_openat": ___syscall_openat, + "abort": _abort, + "emscripten_memcpy_big": _emscripten_memcpy_big, + "emscripten_resize_heap": _emscripten_resize_heap, + "fd_close": _fd_close, + "fd_read": _fd_read, + "fd_seek": _fd_seek, + "fd_write": _fd_write, + "invoke_diii": invoke_diii, + "invoke_diiidiiiii": invoke_diiidiiiii, + "invoke_ii": invoke_ii, + "invoke_iidddddd": invoke_iidddddd, + "invoke_iidddiidd": invoke_iidddiidd, + "invoke_iiddiiddiidid": invoke_iiddiiddiidid, + "invoke_iiddiidiidiiiii": invoke_iiddiidiidiiiii, + "invoke_iii": invoke_iii, + "invoke_iiii": invoke_iiii, + "invoke_iiiii": invoke_iiiii, + "invoke_iiiiidididdidddddidddii": invoke_iiiiidididdidddddidddii, + "invoke_iiiiii": invoke_iiiiii, + "invoke_v": invoke_v, + "invoke_vi": invoke_vi, + "invoke_viddidiidd": invoke_viddidiidd, + "invoke_vidii": invoke_vidii, + "invoke_vii": invoke_vii, + "invoke_viididi": invoke_viididi, + "invoke_viii": invoke_viii, + "invoke_viiiddddd": invoke_viiiddddd, + "invoke_viiii": invoke_viiii, + "invoke_viiiiddddddddddddii": invoke_viiiiddddddddddddii, + "invoke_viiiii": invoke_viiiii, + "invoke_viiiiiiiiiiiiiiiiii": invoke_viiiiiiiiiiiiiiiiii +}; +var asm = createWasm(); +/** @type {function(...*):?} */ +var ___wasm_call_ctors = createExportWrapper("__wasm_call_ctors"); +/** @type {function(...*):?} */ +var getTempRet0 = createExportWrapper("getTempRet0"); +/** @type {function(...*):?} */ +var _fflush = Module["_fflush"] = createExportWrapper("fflush"); +/** @type {function(...*):?} */ +var _emscripten_bind_VoidPtr___destroy___0 = Module["_emscripten_bind_VoidPtr___destroy___0"] = createExportWrapper("emscripten_bind_VoidPtr___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_DoublePtr___destroy___0 = Module["_emscripten_bind_DoublePtr___destroy___0"] = createExportWrapper("emscripten_bind_DoublePtr___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_BoolVector_BoolVector_0 = Module["_emscripten_bind_BoolVector_BoolVector_0"] = createExportWrapper("emscripten_bind_BoolVector_BoolVector_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_BoolVector_BoolVector_1 = Module["_emscripten_bind_BoolVector_BoolVector_1"] = createExportWrapper("emscripten_bind_BoolVector_BoolVector_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_BoolVector_resize_1 = Module["_emscripten_bind_BoolVector_resize_1"] = createExportWrapper("emscripten_bind_BoolVector_resize_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_BoolVector_get_1 = Module["_emscripten_bind_BoolVector_get_1"] = createExportWrapper("emscripten_bind_BoolVector_get_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_BoolVector_set_2 = Module["_emscripten_bind_BoolVector_set_2"] = createExportWrapper("emscripten_bind_BoolVector_set_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_BoolVector_size_0 = Module["_emscripten_bind_BoolVector_size_0"] = createExportWrapper("emscripten_bind_BoolVector_size_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_BoolVector___destroy___0 = Module["_emscripten_bind_BoolVector___destroy___0"] = createExportWrapper("emscripten_bind_BoolVector___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_CharVector_CharVector_0 = Module["_emscripten_bind_CharVector_CharVector_0"] = createExportWrapper("emscripten_bind_CharVector_CharVector_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_CharVector_CharVector_1 = Module["_emscripten_bind_CharVector_CharVector_1"] = createExportWrapper("emscripten_bind_CharVector_CharVector_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_CharVector_resize_1 = Module["_emscripten_bind_CharVector_resize_1"] = createExportWrapper("emscripten_bind_CharVector_resize_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_CharVector_get_1 = Module["_emscripten_bind_CharVector_get_1"] = createExportWrapper("emscripten_bind_CharVector_get_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_CharVector_set_2 = Module["_emscripten_bind_CharVector_set_2"] = createExportWrapper("emscripten_bind_CharVector_set_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_CharVector_size_0 = Module["_emscripten_bind_CharVector_size_0"] = createExportWrapper("emscripten_bind_CharVector_size_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_CharVector___destroy___0 = Module["_emscripten_bind_CharVector___destroy___0"] = createExportWrapper("emscripten_bind_CharVector___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_IntVector_IntVector_0 = Module["_emscripten_bind_IntVector_IntVector_0"] = createExportWrapper("emscripten_bind_IntVector_IntVector_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_IntVector_IntVector_1 = Module["_emscripten_bind_IntVector_IntVector_1"] = createExportWrapper("emscripten_bind_IntVector_IntVector_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_IntVector_resize_1 = Module["_emscripten_bind_IntVector_resize_1"] = createExportWrapper("emscripten_bind_IntVector_resize_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_IntVector_get_1 = Module["_emscripten_bind_IntVector_get_1"] = createExportWrapper("emscripten_bind_IntVector_get_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_IntVector_set_2 = Module["_emscripten_bind_IntVector_set_2"] = createExportWrapper("emscripten_bind_IntVector_set_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_IntVector_size_0 = Module["_emscripten_bind_IntVector_size_0"] = createExportWrapper("emscripten_bind_IntVector_size_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_IntVector___destroy___0 = Module["_emscripten_bind_IntVector___destroy___0"] = createExportWrapper("emscripten_bind_IntVector___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_DoubleVector_DoubleVector_0 = Module["_emscripten_bind_DoubleVector_DoubleVector_0"] = createExportWrapper("emscripten_bind_DoubleVector_DoubleVector_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_DoubleVector_DoubleVector_1 = Module["_emscripten_bind_DoubleVector_DoubleVector_1"] = createExportWrapper("emscripten_bind_DoubleVector_DoubleVector_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_DoubleVector_resize_1 = Module["_emscripten_bind_DoubleVector_resize_1"] = createExportWrapper("emscripten_bind_DoubleVector_resize_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_DoubleVector_get_1 = Module["_emscripten_bind_DoubleVector_get_1"] = createExportWrapper("emscripten_bind_DoubleVector_get_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_DoubleVector_set_2 = Module["_emscripten_bind_DoubleVector_set_2"] = createExportWrapper("emscripten_bind_DoubleVector_set_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_DoubleVector_size_0 = Module["_emscripten_bind_DoubleVector_size_0"] = createExportWrapper("emscripten_bind_DoubleVector_size_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_DoubleVector___destroy___0 = Module["_emscripten_bind_DoubleVector___destroy___0"] = createExportWrapper("emscripten_bind_DoubleVector___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0 = Module["_emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1 = Module["_emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeciesMasterTableRecordVector_resize_1 = Module["_emscripten_bind_SpeciesMasterTableRecordVector_resize_1"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecordVector_resize_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeciesMasterTableRecordVector_get_1 = Module["_emscripten_bind_SpeciesMasterTableRecordVector_get_1"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecordVector_get_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeciesMasterTableRecordVector_set_2 = Module["_emscripten_bind_SpeciesMasterTableRecordVector_set_2"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecordVector_set_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeciesMasterTableRecordVector_size_0 = Module["_emscripten_bind_SpeciesMasterTableRecordVector_size_0"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecordVector_size_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeciesMasterTableRecordVector___destroy___0 = Module["_emscripten_bind_SpeciesMasterTableRecordVector___destroy___0"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecordVector___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_AreaUnits_toBaseUnits_2 = Module["_emscripten_bind_AreaUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_AreaUnits_toBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_AreaUnits_fromBaseUnits_2 = Module["_emscripten_bind_AreaUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_AreaUnits_fromBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_AreaUnits___destroy___0 = Module["_emscripten_bind_AreaUnits___destroy___0"] = createExportWrapper("emscripten_bind_AreaUnits___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_BasalAreaUnits_toBaseUnits_2 = Module["_emscripten_bind_BasalAreaUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_BasalAreaUnits_toBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_BasalAreaUnits_fromBaseUnits_2 = Module["_emscripten_bind_BasalAreaUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_BasalAreaUnits_fromBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_BasalAreaUnits___destroy___0 = Module["_emscripten_bind_BasalAreaUnits___destroy___0"] = createExportWrapper("emscripten_bind_BasalAreaUnits___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_FractionUnits_toBaseUnits_2 = Module["_emscripten_bind_FractionUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_FractionUnits_toBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_FractionUnits_fromBaseUnits_2 = Module["_emscripten_bind_FractionUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_FractionUnits_fromBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_FractionUnits___destroy___0 = Module["_emscripten_bind_FractionUnits___destroy___0"] = createExportWrapper("emscripten_bind_FractionUnits___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_LengthUnits_toBaseUnits_2 = Module["_emscripten_bind_LengthUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_LengthUnits_toBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_LengthUnits_fromBaseUnits_2 = Module["_emscripten_bind_LengthUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_LengthUnits_fromBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_LengthUnits___destroy___0 = Module["_emscripten_bind_LengthUnits___destroy___0"] = createExportWrapper("emscripten_bind_LengthUnits___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_LoadingUnits_toBaseUnits_2 = Module["_emscripten_bind_LoadingUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_LoadingUnits_toBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_LoadingUnits_fromBaseUnits_2 = Module["_emscripten_bind_LoadingUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_LoadingUnits_fromBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_LoadingUnits___destroy___0 = Module["_emscripten_bind_LoadingUnits___destroy___0"] = createExportWrapper("emscripten_bind_LoadingUnits___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2 = Module["_emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2 = Module["_emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0 = Module["_emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0"] = createExportWrapper("emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeedUnits_toBaseUnits_2 = Module["_emscripten_bind_SpeedUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_SpeedUnits_toBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeedUnits_fromBaseUnits_2 = Module["_emscripten_bind_SpeedUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_SpeedUnits_fromBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeedUnits___destroy___0 = Module["_emscripten_bind_SpeedUnits___destroy___0"] = createExportWrapper("emscripten_bind_SpeedUnits___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_PressureUnits_toBaseUnits_2 = Module["_emscripten_bind_PressureUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_PressureUnits_toBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_PressureUnits_fromBaseUnits_2 = Module["_emscripten_bind_PressureUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_PressureUnits_fromBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_PressureUnits___destroy___0 = Module["_emscripten_bind_PressureUnits___destroy___0"] = createExportWrapper("emscripten_bind_PressureUnits___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SlopeUnits_toBaseUnits_2 = Module["_emscripten_bind_SlopeUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_SlopeUnits_toBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SlopeUnits_fromBaseUnits_2 = Module["_emscripten_bind_SlopeUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_SlopeUnits_fromBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SlopeUnits___destroy___0 = Module["_emscripten_bind_SlopeUnits___destroy___0"] = createExportWrapper("emscripten_bind_SlopeUnits___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_DensityUnits_toBaseUnits_2 = Module["_emscripten_bind_DensityUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_DensityUnits_toBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_DensityUnits_fromBaseUnits_2 = Module["_emscripten_bind_DensityUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_DensityUnits_fromBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_DensityUnits___destroy___0 = Module["_emscripten_bind_DensityUnits___destroy___0"] = createExportWrapper("emscripten_bind_DensityUnits___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2 = Module["_emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2 = Module["_emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_HeatOfCombustionUnits___destroy___0 = Module["_emscripten_bind_HeatOfCombustionUnits___destroy___0"] = createExportWrapper("emscripten_bind_HeatOfCombustionUnits___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_HeatSinkUnits_toBaseUnits_2 = Module["_emscripten_bind_HeatSinkUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_HeatSinkUnits_toBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_HeatSinkUnits_fromBaseUnits_2 = Module["_emscripten_bind_HeatSinkUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_HeatSinkUnits_fromBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_HeatSinkUnits___destroy___0 = Module["_emscripten_bind_HeatSinkUnits___destroy___0"] = createExportWrapper("emscripten_bind_HeatSinkUnits___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2 = Module["_emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2 = Module["_emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_HeatPerUnitAreaUnits___destroy___0 = Module["_emscripten_bind_HeatPerUnitAreaUnits___destroy___0"] = createExportWrapper("emscripten_bind_HeatPerUnitAreaUnits___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2 = Module["_emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2 = Module["_emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0 = Module["_emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0"] = createExportWrapper("emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_FirelineIntensityUnits_toBaseUnits_2 = Module["_emscripten_bind_FirelineIntensityUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_FirelineIntensityUnits_toBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2 = Module["_emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_FirelineIntensityUnits___destroy___0 = Module["_emscripten_bind_FirelineIntensityUnits___destroy___0"] = createExportWrapper("emscripten_bind_FirelineIntensityUnits___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_TemperatureUnits_toBaseUnits_2 = Module["_emscripten_bind_TemperatureUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_TemperatureUnits_toBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_TemperatureUnits_fromBaseUnits_2 = Module["_emscripten_bind_TemperatureUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_TemperatureUnits_fromBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_TemperatureUnits___destroy___0 = Module["_emscripten_bind_TemperatureUnits___destroy___0"] = createExportWrapper("emscripten_bind_TemperatureUnits___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_TimeUnits_toBaseUnits_2 = Module["_emscripten_bind_TimeUnits_toBaseUnits_2"] = createExportWrapper("emscripten_bind_TimeUnits_toBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_TimeUnits_fromBaseUnits_2 = Module["_emscripten_bind_TimeUnits_fromBaseUnits_2"] = createExportWrapper("emscripten_bind_TimeUnits_fromBaseUnits_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_TimeUnits___destroy___0 = Module["_emscripten_bind_TimeUnits___destroy___0"] = createExportWrapper("emscripten_bind_TimeUnits___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_FireSize_getBackingSpreadRate_1 = Module["_emscripten_bind_FireSize_getBackingSpreadRate_1"] = createExportWrapper("emscripten_bind_FireSize_getBackingSpreadRate_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_FireSize_getEccentricity_0 = Module["_emscripten_bind_FireSize_getEccentricity_0"] = createExportWrapper("emscripten_bind_FireSize_getEccentricity_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_FireSize_getEllipticalA_3 = Module["_emscripten_bind_FireSize_getEllipticalA_3"] = createExportWrapper("emscripten_bind_FireSize_getEllipticalA_3"); +/** @type {function(...*):?} */ +var _emscripten_bind_FireSize_getEllipticalB_3 = Module["_emscripten_bind_FireSize_getEllipticalB_3"] = createExportWrapper("emscripten_bind_FireSize_getEllipticalB_3"); +/** @type {function(...*):?} */ +var _emscripten_bind_FireSize_getEllipticalC_3 = Module["_emscripten_bind_FireSize_getEllipticalC_3"] = createExportWrapper("emscripten_bind_FireSize_getEllipticalC_3"); +/** @type {function(...*):?} */ +var _emscripten_bind_FireSize_getFireArea_4 = Module["_emscripten_bind_FireSize_getFireArea_4"] = createExportWrapper("emscripten_bind_FireSize_getFireArea_4"); +/** @type {function(...*):?} */ +var _emscripten_bind_FireSize_getFireLength_3 = Module["_emscripten_bind_FireSize_getFireLength_3"] = createExportWrapper("emscripten_bind_FireSize_getFireLength_3"); +/** @type {function(...*):?} */ +var _emscripten_bind_FireSize_getFireLengthToWidthRatio_0 = Module["_emscripten_bind_FireSize_getFireLengthToWidthRatio_0"] = createExportWrapper("emscripten_bind_FireSize_getFireLengthToWidthRatio_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_FireSize_getFirePerimeter_4 = Module["_emscripten_bind_FireSize_getFirePerimeter_4"] = createExportWrapper("emscripten_bind_FireSize_getFirePerimeter_4"); +/** @type {function(...*):?} */ +var _emscripten_bind_FireSize_getFlankingSpreadRate_1 = Module["_emscripten_bind_FireSize_getFlankingSpreadRate_1"] = createExportWrapper("emscripten_bind_FireSize_getFlankingSpreadRate_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_FireSize_getHeadingToBackingRatio_0 = Module["_emscripten_bind_FireSize_getHeadingToBackingRatio_0"] = createExportWrapper("emscripten_bind_FireSize_getHeadingToBackingRatio_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_FireSize_getMaxFireWidth_3 = Module["_emscripten_bind_FireSize_getMaxFireWidth_3"] = createExportWrapper("emscripten_bind_FireSize_getMaxFireWidth_3"); +/** @type {function(...*):?} */ +var _emscripten_bind_FireSize_calculateFireBasicDimensions_5 = Module["_emscripten_bind_FireSize_calculateFireBasicDimensions_5"] = createExportWrapper("emscripten_bind_FireSize_calculateFireBasicDimensions_5"); +/** @type {function(...*):?} */ +var _emscripten_bind_FireSize___destroy___0 = Module["_emscripten_bind_FireSize___destroy___0"] = createExportWrapper("emscripten_bind_FireSize___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_SIGContainAdapter_0 = Module["_emscripten_bind_SIGContainAdapter_SIGContainAdapter_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_SIGContainAdapter_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getContainmentStatus_0 = Module["_emscripten_bind_SIGContainAdapter_getContainmentStatus_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getContainmentStatus_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getFirePerimeterX_0 = Module["_emscripten_bind_SIGContainAdapter_getFirePerimeterX_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFirePerimeterX_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getFirePerimeterY_0 = Module["_emscripten_bind_SIGContainAdapter_getFirePerimeterY_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFirePerimeterY_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getAttackDistance_1 = Module["_emscripten_bind_SIGContainAdapter_getAttackDistance_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getAttackDistance_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1 = Module["_emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getFinalCost_0 = Module["_emscripten_bind_SIGContainAdapter_getFinalCost_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFinalCost_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1 = Module["_emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getFinalFireSize_1 = Module["_emscripten_bind_SIGContainAdapter_getFinalFireSize_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFinalFireSize_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1 = Module["_emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getFinalProductionRate_1 = Module["_emscripten_bind_SIGContainAdapter_getFinalProductionRate_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFinalProductionRate_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0 = Module["_emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getFireBackAtReport_0 = Module["_emscripten_bind_SIGContainAdapter_getFireBackAtReport_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFireBackAtReport_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0 = Module["_emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0 = Module["_emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1 = Module["_emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0 = Module["_emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1 = Module["_emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1 = Module["_emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getReportSize_1 = Module["_emscripten_bind_SIGContainAdapter_getReportSize_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getReportSize_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getReportRate_1 = Module["_emscripten_bind_SIGContainAdapter_getReportRate_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getReportRate_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1 = Module["_emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getTactic_0 = Module["_emscripten_bind_SIGContainAdapter_getTactic_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getTactic_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0 = Module["_emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1 = Module["_emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_removeResourceAt_1 = Module["_emscripten_bind_SIGContainAdapter_removeResourceAt_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_removeResourceAt_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1 = Module["_emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_addResource_9 = Module["_emscripten_bind_SIGContainAdapter_addResource_9"] = createExportWrapper("emscripten_bind_SIGContainAdapter_addResource_9"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_doContainRun_0 = Module["_emscripten_bind_SIGContainAdapter_doContainRun_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_doContainRun_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_removeAllResources_0 = Module["_emscripten_bind_SIGContainAdapter_removeAllResources_0"] = createExportWrapper("emscripten_bind_SIGContainAdapter_removeAllResources_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_setAttackDistance_2 = Module["_emscripten_bind_SIGContainAdapter_setAttackDistance_2"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setAttackDistance_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_setContainMode_1 = Module["_emscripten_bind_SIGContainAdapter_setContainMode_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setContainMode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_setFireStartTime_1 = Module["_emscripten_bind_SIGContainAdapter_setFireStartTime_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setFireStartTime_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_setLwRatio_1 = Module["_emscripten_bind_SIGContainAdapter_setLwRatio_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setLwRatio_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_setMaxFireSize_1 = Module["_emscripten_bind_SIGContainAdapter_setMaxFireSize_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setMaxFireSize_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_setMaxFireTime_1 = Module["_emscripten_bind_SIGContainAdapter_setMaxFireTime_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setMaxFireTime_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_setMaxSteps_1 = Module["_emscripten_bind_SIGContainAdapter_setMaxSteps_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setMaxSteps_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_setMinSteps_1 = Module["_emscripten_bind_SIGContainAdapter_setMinSteps_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setMinSteps_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_setReportRate_2 = Module["_emscripten_bind_SIGContainAdapter_setReportRate_2"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setReportRate_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_setReportSize_2 = Module["_emscripten_bind_SIGContainAdapter_setReportSize_2"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setReportSize_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2 = Module["_emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_setResourceDuration_2 = Module["_emscripten_bind_SIGContainAdapter_setResourceDuration_2"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setResourceDuration_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_setRetry_1 = Module["_emscripten_bind_SIGContainAdapter_setRetry_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setRetry_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter_setTactic_1 = Module["_emscripten_bind_SIGContainAdapter_setTactic_1"] = createExportWrapper("emscripten_bind_SIGContainAdapter_setTactic_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGContainAdapter___destroy___0 = Module["_emscripten_bind_SIGContainAdapter___destroy___0"] = createExportWrapper("emscripten_bind_SIGContainAdapter___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_SIGIgnite_0 = Module["_emscripten_bind_SIGIgnite_SIGIgnite_0"] = createExportWrapper("emscripten_bind_SIGIgnite_SIGIgnite_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_initializeMembers_0 = Module["_emscripten_bind_SIGIgnite_initializeMembers_0"] = createExportWrapper("emscripten_bind_SIGIgnite_initializeMembers_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_getFuelBedType_0 = Module["_emscripten_bind_SIGIgnite_getFuelBedType_0"] = createExportWrapper("emscripten_bind_SIGIgnite_getFuelBedType_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_getLightningChargeType_0 = Module["_emscripten_bind_SIGIgnite_getLightningChargeType_0"] = createExportWrapper("emscripten_bind_SIGIgnite_getLightningChargeType_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0 = Module["_emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0"] = createExportWrapper("emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1 = Module["_emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1"] = createExportWrapper("emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_setAirTemperature_2 = Module["_emscripten_bind_SIGIgnite_setAirTemperature_2"] = createExportWrapper("emscripten_bind_SIGIgnite_setAirTemperature_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_setDuffDepth_2 = Module["_emscripten_bind_SIGIgnite_setDuffDepth_2"] = createExportWrapper("emscripten_bind_SIGIgnite_setDuffDepth_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1 = Module["_emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1"] = createExportWrapper("emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_setLightningChargeType_1 = Module["_emscripten_bind_SIGIgnite_setLightningChargeType_1"] = createExportWrapper("emscripten_bind_SIGIgnite_setLightningChargeType_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_setMoistureHundredHour_2 = Module["_emscripten_bind_SIGIgnite_setMoistureHundredHour_2"] = createExportWrapper("emscripten_bind_SIGIgnite_setMoistureHundredHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_setMoistureOneHour_2 = Module["_emscripten_bind_SIGIgnite_setMoistureOneHour_2"] = createExportWrapper("emscripten_bind_SIGIgnite_setMoistureOneHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_setSunShade_2 = Module["_emscripten_bind_SIGIgnite_setSunShade_2"] = createExportWrapper("emscripten_bind_SIGIgnite_setSunShade_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_updateIgniteInputs_11 = Module["_emscripten_bind_SIGIgnite_updateIgniteInputs_11"] = createExportWrapper("emscripten_bind_SIGIgnite_updateIgniteInputs_11"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_getAirTemperature_1 = Module["_emscripten_bind_SIGIgnite_getAirTemperature_1"] = createExportWrapper("emscripten_bind_SIGIgnite_getAirTemperature_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_getDuffDepth_1 = Module["_emscripten_bind_SIGIgnite_getDuffDepth_1"] = createExportWrapper("emscripten_bind_SIGIgnite_getDuffDepth_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1 = Module["_emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1"] = createExportWrapper("emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_getFuelTemperature_1 = Module["_emscripten_bind_SIGIgnite_getFuelTemperature_1"] = createExportWrapper("emscripten_bind_SIGIgnite_getFuelTemperature_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_getMoistureHundredHour_1 = Module["_emscripten_bind_SIGIgnite_getMoistureHundredHour_1"] = createExportWrapper("emscripten_bind_SIGIgnite_getMoistureHundredHour_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_getMoistureOneHour_1 = Module["_emscripten_bind_SIGIgnite_getMoistureOneHour_1"] = createExportWrapper("emscripten_bind_SIGIgnite_getMoistureOneHour_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_getSunShade_1 = Module["_emscripten_bind_SIGIgnite_getSunShade_1"] = createExportWrapper("emscripten_bind_SIGIgnite_getSunShade_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite_isFuelDepthNeeded_0 = Module["_emscripten_bind_SIGIgnite_isFuelDepthNeeded_0"] = createExportWrapper("emscripten_bind_SIGIgnite_isFuelDepthNeeded_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGIgnite___destroy___0 = Module["_emscripten_bind_SIGIgnite___destroy___0"] = createExportWrapper("emscripten_bind_SIGIgnite___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0 = Module["_emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1 = Module["_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1 = Module["_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0 = Module["_emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1 = Module["_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMoistureScenarios___destroy___0 = Module["_emscripten_bind_SIGMoistureScenarios___destroy___0"] = createExportWrapper("emscripten_bind_SIGMoistureScenarios___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_SIGSpot_0 = Module["_emscripten_bind_SIGSpot_SIGSpot_0"] = createExportWrapper("emscripten_bind_SIGSpot_SIGSpot_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getDownwindCanopyMode_0 = Module["_emscripten_bind_SIGSpot_getDownwindCanopyMode_0"] = createExportWrapper("emscripten_bind_SIGSpot_getDownwindCanopyMode_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getLocation_0 = Module["_emscripten_bind_SIGSpot_getLocation_0"] = createExportWrapper("emscripten_bind_SIGSpot_getLocation_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getTreeSpecies_0 = Module["_emscripten_bind_SIGSpot_getTreeSpecies_0"] = createExportWrapper("emscripten_bind_SIGSpot_getTreeSpecies_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getBurningPileFlameHeight_1 = Module["_emscripten_bind_SIGSpot_getBurningPileFlameHeight_1"] = createExportWrapper("emscripten_bind_SIGSpot_getBurningPileFlameHeight_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1 = Module["_emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1"] = createExportWrapper("emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1 = Module["_emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1"] = createExportWrapper("emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1 = Module["_emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1"] = createExportWrapper("emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getDBH_1 = Module["_emscripten_bind_SIGSpot_getDBH_1"] = createExportWrapper("emscripten_bind_SIGSpot_getDBH_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getDownwindCoverHeight_1 = Module["_emscripten_bind_SIGSpot_getDownwindCoverHeight_1"] = createExportWrapper("emscripten_bind_SIGSpot_getDownwindCoverHeight_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1 = Module["_emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1"] = createExportWrapper("emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1 = Module["_emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1"] = createExportWrapper("emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0 = Module["_emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0"] = createExportWrapper("emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1 = Module["_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1 = Module["_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1 = Module["_emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1 = Module["_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1 = Module["_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1 = Module["_emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1 = Module["_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1 = Module["_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1 = Module["_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1 = Module["_emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1"] = createExportWrapper("emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getRidgeToValleyDistance_1 = Module["_emscripten_bind_SIGSpot_getRidgeToValleyDistance_1"] = createExportWrapper("emscripten_bind_SIGSpot_getRidgeToValleyDistance_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getRidgeToValleyElevation_1 = Module["_emscripten_bind_SIGSpot_getRidgeToValleyElevation_1"] = createExportWrapper("emscripten_bind_SIGSpot_getRidgeToValleyElevation_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getSurfaceFlameLength_1 = Module["_emscripten_bind_SIGSpot_getSurfaceFlameLength_1"] = createExportWrapper("emscripten_bind_SIGSpot_getSurfaceFlameLength_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getTreeHeight_1 = Module["_emscripten_bind_SIGSpot_getTreeHeight_1"] = createExportWrapper("emscripten_bind_SIGSpot_getTreeHeight_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1 = Module["_emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1"] = createExportWrapper("emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_getTorchingTrees_0 = Module["_emscripten_bind_SIGSpot_getTorchingTrees_0"] = createExportWrapper("emscripten_bind_SIGSpot_getTorchingTrees_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_calculateAll_0 = Module["_emscripten_bind_SIGSpot_calculateAll_0"] = createExportWrapper("emscripten_bind_SIGSpot_calculateAll_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0 = Module["_emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0"] = createExportWrapper("emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0 = Module["_emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0"] = createExportWrapper("emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0 = Module["_emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0"] = createExportWrapper("emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_initializeMembers_0 = Module["_emscripten_bind_SIGSpot_initializeMembers_0"] = createExportWrapper("emscripten_bind_SIGSpot_initializeMembers_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setActiveCrownFlameLength_2 = Module["_emscripten_bind_SIGSpot_setActiveCrownFlameLength_2"] = createExportWrapper("emscripten_bind_SIGSpot_setActiveCrownFlameLength_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setBurningPileFlameHeight_2 = Module["_emscripten_bind_SIGSpot_setBurningPileFlameHeight_2"] = createExportWrapper("emscripten_bind_SIGSpot_setBurningPileFlameHeight_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setDBH_2 = Module["_emscripten_bind_SIGSpot_setDBH_2"] = createExportWrapper("emscripten_bind_SIGSpot_setDBH_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setDownwindCanopyMode_1 = Module["_emscripten_bind_SIGSpot_setDownwindCanopyMode_1"] = createExportWrapper("emscripten_bind_SIGSpot_setDownwindCanopyMode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setDownwindCoverHeight_2 = Module["_emscripten_bind_SIGSpot_setDownwindCoverHeight_2"] = createExportWrapper("emscripten_bind_SIGSpot_setDownwindCoverHeight_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setFireType_1 = Module["_emscripten_bind_SIGSpot_setFireType_1"] = createExportWrapper("emscripten_bind_SIGSpot_setFireType_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setFlameLength_2 = Module["_emscripten_bind_SIGSpot_setFlameLength_2"] = createExportWrapper("emscripten_bind_SIGSpot_setFlameLength_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setFirelineIntensity_2 = Module["_emscripten_bind_SIGSpot_setFirelineIntensity_2"] = createExportWrapper("emscripten_bind_SIGSpot_setFirelineIntensity_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setLocation_1 = Module["_emscripten_bind_SIGSpot_setLocation_1"] = createExportWrapper("emscripten_bind_SIGSpot_setLocation_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setRidgeToValleyDistance_2 = Module["_emscripten_bind_SIGSpot_setRidgeToValleyDistance_2"] = createExportWrapper("emscripten_bind_SIGSpot_setRidgeToValleyDistance_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setRidgeToValleyElevation_2 = Module["_emscripten_bind_SIGSpot_setRidgeToValleyElevation_2"] = createExportWrapper("emscripten_bind_SIGSpot_setRidgeToValleyElevation_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setTorchingTrees_1 = Module["_emscripten_bind_SIGSpot_setTorchingTrees_1"] = createExportWrapper("emscripten_bind_SIGSpot_setTorchingTrees_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setTreeHeight_2 = Module["_emscripten_bind_SIGSpot_setTreeHeight_2"] = createExportWrapper("emscripten_bind_SIGSpot_setTreeHeight_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setTreeSpecies_1 = Module["_emscripten_bind_SIGSpot_setTreeSpecies_1"] = createExportWrapper("emscripten_bind_SIGSpot_setTreeSpecies_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2 = Module["_emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2"] = createExportWrapper("emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setWindSpeed_2 = Module["_emscripten_bind_SIGSpot_setWindSpeed_2"] = createExportWrapper("emscripten_bind_SIGSpot_setWindSpeed_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3 = Module["_emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3"] = createExportWrapper("emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_setWindHeightInputMode_1 = Module["_emscripten_bind_SIGSpot_setWindHeightInputMode_1"] = createExportWrapper("emscripten_bind_SIGSpot_setWindHeightInputMode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12 = Module["_emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12"] = createExportWrapper("emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12 = Module["_emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12"] = createExportWrapper("emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16 = Module["_emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16"] = createExportWrapper("emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSpot___destroy___0 = Module["_emscripten_bind_SIGSpot___destroy___0"] = createExportWrapper("emscripten_bind_SIGSpot___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_SIGFuelModels_0 = Module["_emscripten_bind_SIGFuelModels_SIGFuelModels_0"] = createExportWrapper("emscripten_bind_SIGFuelModels_SIGFuelModels_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_SIGFuelModels_1 = Module["_emscripten_bind_SIGFuelModels_SIGFuelModels_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_SIGFuelModels_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_equal_1 = Module["_emscripten_bind_SIGFuelModels_equal_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_equal_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_clearCustomFuelModel_1 = Module["_emscripten_bind_SIGFuelModels_clearCustomFuelModel_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_clearCustomFuelModel_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_getIsDynamic_1 = Module["_emscripten_bind_SIGFuelModels_getIsDynamic_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_getIsDynamic_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1 = Module["_emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_isFuelModelDefined_1 = Module["_emscripten_bind_SIGFuelModels_isFuelModelDefined_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_isFuelModelDefined_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_isFuelModelReserved_1 = Module["_emscripten_bind_SIGFuelModels_isFuelModelReserved_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_isFuelModelReserved_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_setCustomFuelModel_21 = Module["_emscripten_bind_SIGFuelModels_setCustomFuelModel_21"] = createExportWrapper("emscripten_bind_SIGFuelModels_setCustomFuelModel_21"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_getFuelCode_1 = Module["_emscripten_bind_SIGFuelModels_getFuelCode_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_getFuelCode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_getFuelName_1 = Module["_emscripten_bind_SIGFuelModels_getFuelName_1"] = createExportWrapper("emscripten_bind_SIGFuelModels_getFuelName_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2 = Module["_emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2 = Module["_emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2 = Module["_emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2 = Module["_emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2 = Module["_emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_getFuelbedDepth_2 = Module["_emscripten_bind_SIGFuelModels_getFuelbedDepth_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getFuelbedDepth_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2 = Module["_emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2 = Module["_emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2 = Module["_emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_getSavrLiveWoody_2 = Module["_emscripten_bind_SIGFuelModels_getSavrLiveWoody_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getSavrLiveWoody_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_getSavrOneHour_2 = Module["_emscripten_bind_SIGFuelModels_getSavrOneHour_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getSavrOneHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2 = Module["_emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2"] = createExportWrapper("emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFuelModels___destroy___0 = Module["_emscripten_bind_SIGFuelModels___destroy___0"] = createExportWrapper("emscripten_bind_SIGFuelModels___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_SIGSurface_1 = Module["_emscripten_bind_SIGSurface_SIGSurface_1"] = createExportWrapper("emscripten_bind_SIGSurface_SIGSurface_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getAspenFireSeverity_0 = Module["_emscripten_bind_SIGSurface_getAspenFireSeverity_0"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenFireSeverity_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralFuelType_0 = Module["_emscripten_bind_SIGSurface_getChaparralFuelType_0"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralFuelType_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureInputMode_0 = Module["_emscripten_bind_SIGSurface_getMoistureInputMode_0"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureInputMode_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0 = Module["_emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0"] = createExportWrapper("emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0 = Module["_emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0"] = createExportWrapper("emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getWindHeightInputMode_0 = Module["_emscripten_bind_SIGSurface_getWindHeightInputMode_0"] = createExportWrapper("emscripten_bind_SIGSurface_getWindHeightInputMode_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0 = Module["_emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0"] = createExportWrapper("emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0 = Module["_emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0"] = createExportWrapper("emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1 = Module["_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1"] = createExportWrapper("emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1 = Module["_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1"] = createExportWrapper("emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getIsUsingChaparral_0 = Module["_emscripten_bind_SIGSurface_getIsUsingChaparral_0"] = createExportWrapper("emscripten_bind_SIGSurface_getIsUsingChaparral_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0 = Module["_emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0"] = createExportWrapper("emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getIsUsingWesternAspen_0 = Module["_emscripten_bind_SIGSurface_getIsUsingWesternAspen_0"] = createExportWrapper("emscripten_bind_SIGSurface_getIsUsingWesternAspen_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_isAllFuelLoadZero_1 = Module["_emscripten_bind_SIGSurface_isAllFuelLoadZero_1"] = createExportWrapper("emscripten_bind_SIGSurface_isAllFuelLoadZero_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_isFuelDynamic_1 = Module["_emscripten_bind_SIGSurface_isFuelDynamic_1"] = createExportWrapper("emscripten_bind_SIGSurface_isFuelDynamic_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_isFuelModelDefined_1 = Module["_emscripten_bind_SIGSurface_isFuelModelDefined_1"] = createExportWrapper("emscripten_bind_SIGSurface_isFuelModelDefined_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_isFuelModelReserved_1 = Module["_emscripten_bind_SIGSurface_isFuelModelReserved_1"] = createExportWrapper("emscripten_bind_SIGSurface_isFuelModelReserved_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1 = Module["_emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1"] = createExportWrapper("emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_isUsingTwoFuelModels_0 = Module["_emscripten_bind_SIGSurface_isUsingTwoFuelModels_0"] = createExportWrapper("emscripten_bind_SIGSurface_isUsingTwoFuelModels_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1 = Module["_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1"] = createExportWrapper("emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1 = Module["_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1"] = createExportWrapper("emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_calculateFlameLength_3 = Module["_emscripten_bind_SIGSurface_calculateFlameLength_3"] = createExportWrapper("emscripten_bind_SIGSurface_calculateFlameLength_3"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getAgeOfRough_0 = Module["_emscripten_bind_SIGSurface_getAgeOfRough_0"] = createExportWrapper("emscripten_bind_SIGSurface_getAgeOfRough_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getAspect_0 = Module["_emscripten_bind_SIGSurface_getAspect_0"] = createExportWrapper("emscripten_bind_SIGSurface_getAspect_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getAspenCuringLevel_1 = Module["_emscripten_bind_SIGSurface_getAspenCuringLevel_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenCuringLevel_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getAspenDBH_1 = Module["_emscripten_bind_SIGSurface_getAspenDBH_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenDBH_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1 = Module["_emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1 = Module["_emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1 = Module["_emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1 = Module["_emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1 = Module["_emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1 = Module["_emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1 = Module["_emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1 = Module["_emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getBackingFirelineIntensity_1 = Module["_emscripten_bind_SIGSurface_getBackingFirelineIntensity_1"] = createExportWrapper("emscripten_bind_SIGSurface_getBackingFirelineIntensity_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getBackingFlameLength_1 = Module["_emscripten_bind_SIGSurface_getBackingFlameLength_1"] = createExportWrapper("emscripten_bind_SIGSurface_getBackingFlameLength_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getBackingSpreadDistance_1 = Module["_emscripten_bind_SIGSurface_getBackingSpreadDistance_1"] = createExportWrapper("emscripten_bind_SIGSurface_getBackingSpreadDistance_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getBackingSpreadRate_1 = Module["_emscripten_bind_SIGSurface_getBackingSpreadRate_1"] = createExportWrapper("emscripten_bind_SIGSurface_getBackingSpreadRate_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getBulkDensity_1 = Module["_emscripten_bind_SIGSurface_getBulkDensity_1"] = createExportWrapper("emscripten_bind_SIGSurface_getBulkDensity_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getCanopyCover_1 = Module["_emscripten_bind_SIGSurface_getCanopyCover_1"] = createExportWrapper("emscripten_bind_SIGSurface_getCanopyCover_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getCanopyHeight_1 = Module["_emscripten_bind_SIGSurface_getCanopyHeight_1"] = createExportWrapper("emscripten_bind_SIGSurface_getCanopyHeight_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralAge_1 = Module["_emscripten_bind_SIGSurface_getChaparralAge_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralAge_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0 = Module["_emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0 = Module["_emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1 = Module["_emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralDensity_3 = Module["_emscripten_bind_SIGSurface_getChaparralDensity_3"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralDensity_3"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1 = Module["_emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0 = Module["_emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3 = Module["_emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1 = Module["_emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1 = Module["_emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralMoisture_3 = Module["_emscripten_bind_SIGSurface_getChaparralMoisture_3"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralMoisture_3"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2 = Module["_emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2"] = createExportWrapper("emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1 = Module["_emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1"] = createExportWrapper("emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1 = Module["_emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1"] = createExportWrapper("emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getCharacteristicSAVR_1 = Module["_emscripten_bind_SIGSurface_getCharacteristicSAVR_1"] = createExportWrapper("emscripten_bind_SIGSurface_getCharacteristicSAVR_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getCrownRatio_1 = Module["_emscripten_bind_SIGSurface_getCrownRatio_1"] = createExportWrapper("emscripten_bind_SIGSurface_getCrownRatio_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0 = Module["_emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0"] = createExportWrapper("emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getDirectionOfInterest_0 = Module["_emscripten_bind_SIGSurface_getDirectionOfInterest_0"] = createExportWrapper("emscripten_bind_SIGSurface_getDirectionOfInterest_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getDirectionOfBacking_0 = Module["_emscripten_bind_SIGSurface_getDirectionOfBacking_0"] = createExportWrapper("emscripten_bind_SIGSurface_getDirectionOfBacking_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getDirectionOfFlanking_0 = Module["_emscripten_bind_SIGSurface_getDirectionOfFlanking_0"] = createExportWrapper("emscripten_bind_SIGSurface_getDirectionOfFlanking_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getElapsedTime_1 = Module["_emscripten_bind_SIGSurface_getElapsedTime_1"] = createExportWrapper("emscripten_bind_SIGSurface_getElapsedTime_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getEllipticalA_1 = Module["_emscripten_bind_SIGSurface_getEllipticalA_1"] = createExportWrapper("emscripten_bind_SIGSurface_getEllipticalA_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getEllipticalB_1 = Module["_emscripten_bind_SIGSurface_getEllipticalB_1"] = createExportWrapper("emscripten_bind_SIGSurface_getEllipticalB_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getEllipticalC_1 = Module["_emscripten_bind_SIGSurface_getEllipticalC_1"] = createExportWrapper("emscripten_bind_SIGSurface_getEllipticalC_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFireLength_1 = Module["_emscripten_bind_SIGSurface_getFireLength_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFireLength_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMaxFireWidth_1 = Module["_emscripten_bind_SIGSurface_getMaxFireWidth_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMaxFireWidth_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFireArea_1 = Module["_emscripten_bind_SIGSurface_getFireArea_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFireArea_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFireEccentricity_0 = Module["_emscripten_bind_SIGSurface_getFireEccentricity_0"] = createExportWrapper("emscripten_bind_SIGSurface_getFireEccentricity_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0 = Module["_emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0"] = createExportWrapper("emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFirePerimeter_1 = Module["_emscripten_bind_SIGSurface_getFirePerimeter_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFirePerimeter_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFirelineIntensity_1 = Module["_emscripten_bind_SIGSurface_getFirelineIntensity_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFirelineIntensity_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1 = Module["_emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFlameLength_1 = Module["_emscripten_bind_SIGSurface_getFlameLength_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFlameLength_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1 = Module["_emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1 = Module["_emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFlankingFlameLength_1 = Module["_emscripten_bind_SIGSurface_getFlankingFlameLength_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFlankingFlameLength_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFlankingSpreadRate_1 = Module["_emscripten_bind_SIGSurface_getFlankingSpreadRate_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFlankingSpreadRate_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFlankingSpreadDistance_1 = Module["_emscripten_bind_SIGSurface_getFlankingSpreadDistance_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFlankingSpreadDistance_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2 = Module["_emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2 = Module["_emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFuelLoadHundredHour_2 = Module["_emscripten_bind_SIGSurface_getFuelLoadHundredHour_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelLoadHundredHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2 = Module["_emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2 = Module["_emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFuelLoadOneHour_2 = Module["_emscripten_bind_SIGSurface_getFuelLoadOneHour_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelLoadOneHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFuelLoadTenHour_2 = Module["_emscripten_bind_SIGSurface_getFuelLoadTenHour_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelLoadTenHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2 = Module["_emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2 = Module["_emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2 = Module["_emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFuelSavrOneHour_2 = Module["_emscripten_bind_SIGSurface_getFuelSavrOneHour_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelSavrOneHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFuelbedDepth_2 = Module["_emscripten_bind_SIGSurface_getFuelbedDepth_2"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelbedDepth_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getHeadingSpreadRate_1 = Module["_emscripten_bind_SIGSurface_getHeadingSpreadRate_1"] = createExportWrapper("emscripten_bind_SIGSurface_getHeadingSpreadRate_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getHeadingToBackingRatio_0 = Module["_emscripten_bind_SIGSurface_getHeadingToBackingRatio_0"] = createExportWrapper("emscripten_bind_SIGSurface_getHeadingToBackingRatio_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getHeatPerUnitArea_1 = Module["_emscripten_bind_SIGSurface_getHeatPerUnitArea_1"] = createExportWrapper("emscripten_bind_SIGSurface_getHeatPerUnitArea_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getHeatSink_1 = Module["_emscripten_bind_SIGSurface_getHeatSink_1"] = createExportWrapper("emscripten_bind_SIGSurface_getHeatSink_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getHeatSource_1 = Module["_emscripten_bind_SIGSurface_getHeatSource_1"] = createExportWrapper("emscripten_bind_SIGSurface_getHeatSource_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getHeightOfUnderstory_1 = Module["_emscripten_bind_SIGSurface_getHeightOfUnderstory_1"] = createExportWrapper("emscripten_bind_SIGSurface_getHeightOfUnderstory_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1 = Module["_emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1"] = createExportWrapper("emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMidflameWindspeed_1 = Module["_emscripten_bind_SIGSurface_getMidflameWindspeed_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMidflameWindspeed_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1 = Module["_emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureHundredHour_1 = Module["_emscripten_bind_SIGSurface_getMoistureHundredHour_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureHundredHour_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1 = Module["_emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1 = Module["_emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureLiveWoody_1 = Module["_emscripten_bind_SIGSurface_getMoistureLiveWoody_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureLiveWoody_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureOneHour_1 = Module["_emscripten_bind_SIGSurface_getMoistureOneHour_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureOneHour_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureTenHour_1 = Module["_emscripten_bind_SIGSurface_getMoistureTenHour_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureTenHour_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getOverstoryBasalArea_1 = Module["_emscripten_bind_SIGSurface_getOverstoryBasalArea_1"] = createExportWrapper("emscripten_bind_SIGSurface_getOverstoryBasalArea_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getReactionIntensity_1 = Module["_emscripten_bind_SIGSurface_getReactionIntensity_1"] = createExportWrapper("emscripten_bind_SIGSurface_getReactionIntensity_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getResidenceTime_1 = Module["_emscripten_bind_SIGSurface_getResidenceTime_1"] = createExportWrapper("emscripten_bind_SIGSurface_getResidenceTime_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getSlope_1 = Module["_emscripten_bind_SIGSurface_getSlope_1"] = createExportWrapper("emscripten_bind_SIGSurface_getSlope_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getSlopeFactor_0 = Module["_emscripten_bind_SIGSurface_getSlopeFactor_0"] = createExportWrapper("emscripten_bind_SIGSurface_getSlopeFactor_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getSpreadDistance_1 = Module["_emscripten_bind_SIGSurface_getSpreadDistance_1"] = createExportWrapper("emscripten_bind_SIGSurface_getSpreadDistance_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1 = Module["_emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1"] = createExportWrapper("emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getSpreadRate_1 = Module["_emscripten_bind_SIGSurface_getSpreadRate_1"] = createExportWrapper("emscripten_bind_SIGSurface_getSpreadRate_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1 = Module["_emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1"] = createExportWrapper("emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1 = Module["_emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1"] = createExportWrapper("emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1 = Module["_emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1"] = createExportWrapper("emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getWindDirection_0 = Module["_emscripten_bind_SIGSurface_getWindDirection_0"] = createExportWrapper("emscripten_bind_SIGSurface_getWindDirection_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getWindSpeed_2 = Module["_emscripten_bind_SIGSurface_getWindSpeed_2"] = createExportWrapper("emscripten_bind_SIGSurface_getWindSpeed_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getAspenFuelModelNumber_0 = Module["_emscripten_bind_SIGSurface_getAspenFuelModelNumber_0"] = createExportWrapper("emscripten_bind_SIGSurface_getAspenFuelModelNumber_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFuelModelNumber_0 = Module["_emscripten_bind_SIGSurface_getFuelModelNumber_0"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelModelNumber_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0 = Module["_emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0"] = createExportWrapper("emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFuelCode_1 = Module["_emscripten_bind_SIGSurface_getFuelCode_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelCode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getFuelName_1 = Module["_emscripten_bind_SIGSurface_getFuelName_1"] = createExportWrapper("emscripten_bind_SIGSurface_getFuelName_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1 = Module["_emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1"] = createExportWrapper("emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_doSurfaceRun_0 = Module["_emscripten_bind_SIGSurface_doSurfaceRun_0"] = createExportWrapper("emscripten_bind_SIGSurface_doSurfaceRun_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2 = Module["_emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2"] = createExportWrapper("emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0 = Module["_emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0"] = createExportWrapper("emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_initializeMembers_0 = Module["_emscripten_bind_SIGSurface_initializeMembers_0"] = createExportWrapper("emscripten_bind_SIGSurface_initializeMembers_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setAgeOfRough_1 = Module["_emscripten_bind_SIGSurface_setAgeOfRough_1"] = createExportWrapper("emscripten_bind_SIGSurface_setAgeOfRough_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setAspect_1 = Module["_emscripten_bind_SIGSurface_setAspect_1"] = createExportWrapper("emscripten_bind_SIGSurface_setAspect_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setAspenCuringLevel_2 = Module["_emscripten_bind_SIGSurface_setAspenCuringLevel_2"] = createExportWrapper("emscripten_bind_SIGSurface_setAspenCuringLevel_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setAspenDBH_2 = Module["_emscripten_bind_SIGSurface_setAspenDBH_2"] = createExportWrapper("emscripten_bind_SIGSurface_setAspenDBH_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setAspenFireSeverity_1 = Module["_emscripten_bind_SIGSurface_setAspenFireSeverity_1"] = createExportWrapper("emscripten_bind_SIGSurface_setAspenFireSeverity_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setAspenFuelModelNumber_1 = Module["_emscripten_bind_SIGSurface_setAspenFuelModelNumber_1"] = createExportWrapper("emscripten_bind_SIGSurface_setAspenFuelModelNumber_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setCanopyCover_2 = Module["_emscripten_bind_SIGSurface_setCanopyCover_2"] = createExportWrapper("emscripten_bind_SIGSurface_setCanopyCover_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setCanopyHeight_2 = Module["_emscripten_bind_SIGSurface_setCanopyHeight_2"] = createExportWrapper("emscripten_bind_SIGSurface_setCanopyHeight_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2 = Module["_emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2"] = createExportWrapper("emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1 = Module["_emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1"] = createExportWrapper("emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1 = Module["_emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1"] = createExportWrapper("emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setChaparralFuelType_1 = Module["_emscripten_bind_SIGSurface_setChaparralFuelType_1"] = createExportWrapper("emscripten_bind_SIGSurface_setChaparralFuelType_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2 = Module["_emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2"] = createExportWrapper("emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setCrownRatio_2 = Module["_emscripten_bind_SIGSurface_setCrownRatio_2"] = createExportWrapper("emscripten_bind_SIGSurface_setCrownRatio_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setDirectionOfInterest_1 = Module["_emscripten_bind_SIGSurface_setDirectionOfInterest_1"] = createExportWrapper("emscripten_bind_SIGSurface_setDirectionOfInterest_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setElapsedTime_2 = Module["_emscripten_bind_SIGSurface_setElapsedTime_2"] = createExportWrapper("emscripten_bind_SIGSurface_setElapsedTime_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setFirstFuelModelNumber_1 = Module["_emscripten_bind_SIGSurface_setFirstFuelModelNumber_1"] = createExportWrapper("emscripten_bind_SIGSurface_setFirstFuelModelNumber_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setFuelModels_1 = Module["_emscripten_bind_SIGSurface_setFuelModels_1"] = createExportWrapper("emscripten_bind_SIGSurface_setFuelModels_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setHeightOfUnderstory_2 = Module["_emscripten_bind_SIGSurface_setHeightOfUnderstory_2"] = createExportWrapper("emscripten_bind_SIGSurface_setHeightOfUnderstory_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setIsUsingChaparral_1 = Module["_emscripten_bind_SIGSurface_setIsUsingChaparral_1"] = createExportWrapper("emscripten_bind_SIGSurface_setIsUsingChaparral_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1 = Module["_emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1"] = createExportWrapper("emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setIsUsingWesternAspen_1 = Module["_emscripten_bind_SIGSurface_setIsUsingWesternAspen_1"] = createExportWrapper("emscripten_bind_SIGSurface_setIsUsingWesternAspen_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setMoistureDeadAggregate_2 = Module["_emscripten_bind_SIGSurface_setMoistureDeadAggregate_2"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureDeadAggregate_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setMoistureHundredHour_2 = Module["_emscripten_bind_SIGSurface_setMoistureHundredHour_2"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureHundredHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setMoistureInputMode_1 = Module["_emscripten_bind_SIGSurface_setMoistureInputMode_1"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureInputMode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setMoistureLiveAggregate_2 = Module["_emscripten_bind_SIGSurface_setMoistureLiveAggregate_2"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureLiveAggregate_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2 = Module["_emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setMoistureLiveWoody_2 = Module["_emscripten_bind_SIGSurface_setMoistureLiveWoody_2"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureLiveWoody_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setMoistureOneHour_2 = Module["_emscripten_bind_SIGSurface_setMoistureOneHour_2"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureOneHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setMoistureScenarios_1 = Module["_emscripten_bind_SIGSurface_setMoistureScenarios_1"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureScenarios_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setMoistureTenHour_2 = Module["_emscripten_bind_SIGSurface_setMoistureTenHour_2"] = createExportWrapper("emscripten_bind_SIGSurface_setMoistureTenHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setOverstoryBasalArea_2 = Module["_emscripten_bind_SIGSurface_setOverstoryBasalArea_2"] = createExportWrapper("emscripten_bind_SIGSurface_setOverstoryBasalArea_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setPalmettoCoverage_2 = Module["_emscripten_bind_SIGSurface_setPalmettoCoverage_2"] = createExportWrapper("emscripten_bind_SIGSurface_setPalmettoCoverage_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setSecondFuelModelNumber_1 = Module["_emscripten_bind_SIGSurface_setSecondFuelModelNumber_1"] = createExportWrapper("emscripten_bind_SIGSurface_setSecondFuelModelNumber_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setSlope_2 = Module["_emscripten_bind_SIGSurface_setSlope_2"] = createExportWrapper("emscripten_bind_SIGSurface_setSlope_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1 = Module["_emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1"] = createExportWrapper("emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1 = Module["_emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1"] = createExportWrapper("emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2 = Module["_emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2"] = createExportWrapper("emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1 = Module["_emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1"] = createExportWrapper("emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1 = Module["_emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1"] = createExportWrapper("emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1 = Module["_emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1"] = createExportWrapper("emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1 = Module["_emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1"] = createExportWrapper("emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setWindDirection_1 = Module["_emscripten_bind_SIGSurface_setWindDirection_1"] = createExportWrapper("emscripten_bind_SIGSurface_setWindDirection_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setWindHeightInputMode_1 = Module["_emscripten_bind_SIGSurface_setWindHeightInputMode_1"] = createExportWrapper("emscripten_bind_SIGSurface_setWindHeightInputMode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setWindSpeed_2 = Module["_emscripten_bind_SIGSurface_setWindSpeed_2"] = createExportWrapper("emscripten_bind_SIGSurface_setWindSpeed_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_updateSurfaceInputs_21 = Module["_emscripten_bind_SIGSurface_updateSurfaceInputs_21"] = createExportWrapper("emscripten_bind_SIGSurface_updateSurfaceInputs_21"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25 = Module["_emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25"] = createExportWrapper("emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25 = Module["_emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25"] = createExportWrapper("emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26 = Module["_emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26"] = createExportWrapper("emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface_setFuelModelNumber_1 = Module["_emscripten_bind_SIGSurface_setFuelModelNumber_1"] = createExportWrapper("emscripten_bind_SIGSurface_setFuelModelNumber_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSurface___destroy___0 = Module["_emscripten_bind_SIGSurface___destroy___0"] = createExportWrapper("emscripten_bind_SIGSurface___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_PalmettoGallberry_0 = Module["_emscripten_bind_PalmettoGallberry_PalmettoGallberry_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_PalmettoGallberry_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_initializeMembers_0 = Module["_emscripten_bind_PalmettoGallberry_initializeMembers_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_initializeMembers_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2 = Module["_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2"] = createExportWrapper("emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2 = Module["_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2"] = createExportWrapper("emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2 = Module["_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2"] = createExportWrapper("emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1 = Module["_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1"] = createExportWrapper("emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2 = Module["_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2"] = createExportWrapper("emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2 = Module["_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2"] = createExportWrapper("emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3 = Module["_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3"] = createExportWrapper("emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2 = Module["_emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2"] = createExportWrapper("emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0 = Module["_emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0 = Module["_emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0 = Module["_emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0 = Module["_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0 = Module["_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0 = Module["_emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0 = Module["_emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0 = Module["_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0 = Module["_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0 = Module["_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0 = Module["_emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0"] = createExportWrapper("emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_PalmettoGallberry___destroy___0 = Module["_emscripten_bind_PalmettoGallberry___destroy___0"] = createExportWrapper("emscripten_bind_PalmettoGallberry___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_WesternAspen_WesternAspen_0 = Module["_emscripten_bind_WesternAspen_WesternAspen_0"] = createExportWrapper("emscripten_bind_WesternAspen_WesternAspen_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_WesternAspen_initializeMembers_0 = Module["_emscripten_bind_WesternAspen_initializeMembers_0"] = createExportWrapper("emscripten_bind_WesternAspen_initializeMembers_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_WesternAspen_calculateAspenMortality_3 = Module["_emscripten_bind_WesternAspen_calculateAspenMortality_3"] = createExportWrapper("emscripten_bind_WesternAspen_calculateAspenMortality_3"); +/** @type {function(...*):?} */ +var _emscripten_bind_WesternAspen_getAspenFuelBedDepth_1 = Module["_emscripten_bind_WesternAspen_getAspenFuelBedDepth_1"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenFuelBedDepth_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0 = Module["_emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0 = Module["_emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0 = Module["_emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0 = Module["_emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0 = Module["_emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0 = Module["_emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0 = Module["_emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_WesternAspen_getAspenMortality_0 = Module["_emscripten_bind_WesternAspen_getAspenMortality_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenMortality_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0 = Module["_emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0 = Module["_emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0 = Module["_emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0 = Module["_emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0"] = createExportWrapper("emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_WesternAspen___destroy___0 = Module["_emscripten_bind_WesternAspen___destroy___0"] = createExportWrapper("emscripten_bind_WesternAspen___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_SIGCrown_1 = Module["_emscripten_bind_SIGCrown_SIGCrown_1"] = createExportWrapper("emscripten_bind_SIGCrown_SIGCrown_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFireType_0 = Module["_emscripten_bind_SIGCrown_getFireType_0"] = createExportWrapper("emscripten_bind_SIGCrown_getFireType_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1 = Module["_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1"] = createExportWrapper("emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1 = Module["_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1"] = createExportWrapper("emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_isAllFuelLoadZero_1 = Module["_emscripten_bind_SIGCrown_isAllFuelLoadZero_1"] = createExportWrapper("emscripten_bind_SIGCrown_isAllFuelLoadZero_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_isFuelDynamic_1 = Module["_emscripten_bind_SIGCrown_isFuelDynamic_1"] = createExportWrapper("emscripten_bind_SIGCrown_isFuelDynamic_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_isFuelModelDefined_1 = Module["_emscripten_bind_SIGCrown_isFuelModelDefined_1"] = createExportWrapper("emscripten_bind_SIGCrown_isFuelModelDefined_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_isFuelModelReserved_1 = Module["_emscripten_bind_SIGCrown_isFuelModelReserved_1"] = createExportWrapper("emscripten_bind_SIGCrown_isFuelModelReserved_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1 = Module["_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1"] = createExportWrapper("emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1 = Module["_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1"] = createExportWrapper("emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getAspect_0 = Module["_emscripten_bind_SIGCrown_getAspect_0"] = createExportWrapper("emscripten_bind_SIGCrown_getAspect_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCanopyBaseHeight_1 = Module["_emscripten_bind_SIGCrown_getCanopyBaseHeight_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCanopyBaseHeight_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCanopyBulkDensity_1 = Module["_emscripten_bind_SIGCrown_getCanopyBulkDensity_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCanopyBulkDensity_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCanopyCover_1 = Module["_emscripten_bind_SIGCrown_getCanopyCover_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCanopyCover_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCanopyHeight_1 = Module["_emscripten_bind_SIGCrown_getCanopyHeight_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCanopyHeight_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1 = Module["_emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1 = Module["_emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1 = Module["_emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1 = Module["_emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCrownFireActiveRatio_0 = Module["_emscripten_bind_SIGCrown_getCrownFireActiveRatio_0"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFireActiveRatio_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCrownFireArea_1 = Module["_emscripten_bind_SIGCrown_getCrownFireArea_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFireArea_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCrownFirePerimeter_1 = Module["_emscripten_bind_SIGCrown_getCrownFirePerimeter_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFirePerimeter_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCrownTransitionRatio_0 = Module["_emscripten_bind_SIGCrown_getCrownTransitionRatio_0"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownTransitionRatio_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0 = Module["_emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1 = Module["_emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCrownFireSpreadRate_1 = Module["_emscripten_bind_SIGCrown_getCrownFireSpreadRate_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFireSpreadRate_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCrownFirelineIntensity_1 = Module["_emscripten_bind_SIGCrown_getCrownFirelineIntensity_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFirelineIntensity_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCrownFlameLength_1 = Module["_emscripten_bind_SIGCrown_getCrownFlameLength_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFlameLength_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCrownFractionBurned_0 = Module["_emscripten_bind_SIGCrown_getCrownFractionBurned_0"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownFractionBurned_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getCrownRatio_1 = Module["_emscripten_bind_SIGCrown_getCrownRatio_1"] = createExportWrapper("emscripten_bind_SIGCrown_getCrownRatio_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFinalFirelineIntesity_1 = Module["_emscripten_bind_SIGCrown_getFinalFirelineIntesity_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFinalFirelineIntesity_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1 = Module["_emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFinalSpreadRate_1 = Module["_emscripten_bind_SIGCrown_getFinalSpreadRate_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFinalSpreadRate_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFinalSpreadDistance_1 = Module["_emscripten_bind_SIGCrown_getFinalSpreadDistance_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFinalSpreadDistance_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFinalFireArea_1 = Module["_emscripten_bind_SIGCrown_getFinalFireArea_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFinalFireArea_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFinalFirePerimeter_1 = Module["_emscripten_bind_SIGCrown_getFinalFirePerimeter_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFinalFirePerimeter_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2 = Module["_emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2 = Module["_emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFuelLoadHundredHour_2 = Module["_emscripten_bind_SIGCrown_getFuelLoadHundredHour_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelLoadHundredHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2 = Module["_emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2 = Module["_emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFuelLoadOneHour_2 = Module["_emscripten_bind_SIGCrown_getFuelLoadOneHour_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelLoadOneHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFuelLoadTenHour_2 = Module["_emscripten_bind_SIGCrown_getFuelLoadTenHour_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelLoadTenHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2 = Module["_emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2 = Module["_emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2 = Module["_emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFuelSavrOneHour_2 = Module["_emscripten_bind_SIGCrown_getFuelSavrOneHour_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelSavrOneHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFuelbedDepth_2 = Module["_emscripten_bind_SIGCrown_getFuelbedDepth_2"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelbedDepth_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureFoliar_1 = Module["_emscripten_bind_SIGCrown_getMoistureFoliar_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureFoliar_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureHundredHour_1 = Module["_emscripten_bind_SIGCrown_getMoistureHundredHour_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureHundredHour_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1 = Module["_emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureLiveWoody_1 = Module["_emscripten_bind_SIGCrown_getMoistureLiveWoody_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureLiveWoody_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureOneHour_1 = Module["_emscripten_bind_SIGCrown_getMoistureOneHour_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureOneHour_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureTenHour_1 = Module["_emscripten_bind_SIGCrown_getMoistureTenHour_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureTenHour_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getSlope_1 = Module["_emscripten_bind_SIGCrown_getSlope_1"] = createExportWrapper("emscripten_bind_SIGCrown_getSlope_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1 = Module["_emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1"] = createExportWrapper("emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1 = Module["_emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1"] = createExportWrapper("emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getWindDirection_0 = Module["_emscripten_bind_SIGCrown_getWindDirection_0"] = createExportWrapper("emscripten_bind_SIGCrown_getWindDirection_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getWindSpeed_2 = Module["_emscripten_bind_SIGCrown_getWindSpeed_2"] = createExportWrapper("emscripten_bind_SIGCrown_getWindSpeed_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFuelModelNumber_0 = Module["_emscripten_bind_SIGCrown_getFuelModelNumber_0"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelModelNumber_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0 = Module["_emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0"] = createExportWrapper("emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFuelCode_1 = Module["_emscripten_bind_SIGCrown_getFuelCode_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelCode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFuelName_1 = Module["_emscripten_bind_SIGCrown_getFuelName_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFuelName_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1 = Module["_emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1"] = createExportWrapper("emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_doCrownRun_0 = Module["_emscripten_bind_SIGCrown_doCrownRun_0"] = createExportWrapper("emscripten_bind_SIGCrown_doCrownRun_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_doCrownRunRothermel_0 = Module["_emscripten_bind_SIGCrown_doCrownRunRothermel_0"] = createExportWrapper("emscripten_bind_SIGCrown_doCrownRunRothermel_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0 = Module["_emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0"] = createExportWrapper("emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_initializeMembers_0 = Module["_emscripten_bind_SIGCrown_initializeMembers_0"] = createExportWrapper("emscripten_bind_SIGCrown_initializeMembers_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setAspect_1 = Module["_emscripten_bind_SIGCrown_setAspect_1"] = createExportWrapper("emscripten_bind_SIGCrown_setAspect_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setCanopyBaseHeight_2 = Module["_emscripten_bind_SIGCrown_setCanopyBaseHeight_2"] = createExportWrapper("emscripten_bind_SIGCrown_setCanopyBaseHeight_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setCanopyBulkDensity_2 = Module["_emscripten_bind_SIGCrown_setCanopyBulkDensity_2"] = createExportWrapper("emscripten_bind_SIGCrown_setCanopyBulkDensity_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setCanopyCover_2 = Module["_emscripten_bind_SIGCrown_setCanopyCover_2"] = createExportWrapper("emscripten_bind_SIGCrown_setCanopyCover_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setCanopyHeight_2 = Module["_emscripten_bind_SIGCrown_setCanopyHeight_2"] = createExportWrapper("emscripten_bind_SIGCrown_setCanopyHeight_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setCrownRatio_2 = Module["_emscripten_bind_SIGCrown_setCrownRatio_2"] = createExportWrapper("emscripten_bind_SIGCrown_setCrownRatio_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setFuelModelNumber_1 = Module["_emscripten_bind_SIGCrown_setFuelModelNumber_1"] = createExportWrapper("emscripten_bind_SIGCrown_setFuelModelNumber_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1 = Module["_emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1"] = createExportWrapper("emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setElapsedTime_2 = Module["_emscripten_bind_SIGCrown_setElapsedTime_2"] = createExportWrapper("emscripten_bind_SIGCrown_setElapsedTime_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setFuelModels_1 = Module["_emscripten_bind_SIGCrown_setFuelModels_1"] = createExportWrapper("emscripten_bind_SIGCrown_setFuelModels_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setMoistureDeadAggregate_2 = Module["_emscripten_bind_SIGCrown_setMoistureDeadAggregate_2"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureDeadAggregate_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setMoistureFoliar_2 = Module["_emscripten_bind_SIGCrown_setMoistureFoliar_2"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureFoliar_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setMoistureHundredHour_2 = Module["_emscripten_bind_SIGCrown_setMoistureHundredHour_2"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureHundredHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setMoistureInputMode_1 = Module["_emscripten_bind_SIGCrown_setMoistureInputMode_1"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureInputMode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setMoistureLiveAggregate_2 = Module["_emscripten_bind_SIGCrown_setMoistureLiveAggregate_2"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureLiveAggregate_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2 = Module["_emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setMoistureLiveWoody_2 = Module["_emscripten_bind_SIGCrown_setMoistureLiveWoody_2"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureLiveWoody_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setMoistureOneHour_2 = Module["_emscripten_bind_SIGCrown_setMoistureOneHour_2"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureOneHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setMoistureScenarios_1 = Module["_emscripten_bind_SIGCrown_setMoistureScenarios_1"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureScenarios_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setMoistureTenHour_2 = Module["_emscripten_bind_SIGCrown_setMoistureTenHour_2"] = createExportWrapper("emscripten_bind_SIGCrown_setMoistureTenHour_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setSlope_2 = Module["_emscripten_bind_SIGCrown_setSlope_2"] = createExportWrapper("emscripten_bind_SIGCrown_setSlope_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1 = Module["_emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1"] = createExportWrapper("emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1 = Module["_emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1"] = createExportWrapper("emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1 = Module["_emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1"] = createExportWrapper("emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setWindDirection_1 = Module["_emscripten_bind_SIGCrown_setWindDirection_1"] = createExportWrapper("emscripten_bind_SIGCrown_setWindDirection_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setWindHeightInputMode_1 = Module["_emscripten_bind_SIGCrown_setWindHeightInputMode_1"] = createExportWrapper("emscripten_bind_SIGCrown_setWindHeightInputMode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_setWindSpeed_2 = Module["_emscripten_bind_SIGCrown_setWindSpeed_2"] = createExportWrapper("emscripten_bind_SIGCrown_setWindSpeed_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_updateCrownInputs_25 = Module["_emscripten_bind_SIGCrown_updateCrownInputs_25"] = createExportWrapper("emscripten_bind_SIGCrown_updateCrownInputs_25"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21 = Module["_emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21"] = createExportWrapper("emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown_getFinalFlameLength_1 = Module["_emscripten_bind_SIGCrown_getFinalFlameLength_1"] = createExportWrapper("emscripten_bind_SIGCrown_getFinalFlameLength_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGCrown___destroy___0 = Module["_emscripten_bind_SIGCrown___destroy___0"] = createExportWrapper("emscripten_bind_SIGCrown___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0 = Module["_emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1 = Module["_emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeciesMasterTableRecord___destroy___0 = Module["_emscripten_bind_SpeciesMasterTableRecord___destroy___0"] = createExportWrapper("emscripten_bind_SpeciesMasterTableRecord___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0 = Module["_emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0"] = createExportWrapper("emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeciesMasterTable_initializeMasterTable_0 = Module["_emscripten_bind_SpeciesMasterTable_initializeMasterTable_0"] = createExportWrapper("emscripten_bind_SpeciesMasterTable_initializeMasterTable_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1 = Module["_emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2 = Module["_emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2"] = createExportWrapper("emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeciesMasterTable_insertRecord_17 = Module["_emscripten_bind_SpeciesMasterTable_insertRecord_17"] = createExportWrapper("emscripten_bind_SpeciesMasterTable_insertRecord_17"); +/** @type {function(...*):?} */ +var _emscripten_bind_SpeciesMasterTable___destroy___0 = Module["_emscripten_bind_SpeciesMasterTable___destroy___0"] = createExportWrapper("emscripten_bind_SpeciesMasterTable___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_SIGMortality_1 = Module["_emscripten_bind_SIGMortality_SIGMortality_1"] = createExportWrapper("emscripten_bind_SIGMortality_SIGMortality_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_initializeMembers_0 = Module["_emscripten_bind_SIGMortality_initializeMembers_0"] = createExportWrapper("emscripten_bind_SIGMortality_initializeMembers_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2 = Module["_emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2"] = createExportWrapper("emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2 = Module["_emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2"] = createExportWrapper("emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2 = Module["_emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2"] = createExportWrapper("emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_calculateMortality_1 = Module["_emscripten_bind_SIGMortality_calculateMortality_1"] = createExportWrapper("emscripten_bind_SIGMortality_calculateMortality_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_calculateScorchHeight_7 = Module["_emscripten_bind_SIGMortality_calculateScorchHeight_7"] = createExportWrapper("emscripten_bind_SIGMortality_calculateScorchHeight_7"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_calculateMortalityAllDirections_1 = Module["_emscripten_bind_SIGMortality_calculateMortalityAllDirections_1"] = createExportWrapper("emscripten_bind_SIGMortality_calculateMortalityAllDirections_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getRequiredFieldVector_0 = Module["_emscripten_bind_SIGMortality_getRequiredFieldVector_0"] = createExportWrapper("emscripten_bind_SIGMortality_getRequiredFieldVector_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getBeetleDamage_0 = Module["_emscripten_bind_SIGMortality_getBeetleDamage_0"] = createExportWrapper("emscripten_bind_SIGMortality_getBeetleDamage_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getCrownDamageEquationCode_0 = Module["_emscripten_bind_SIGMortality_getCrownDamageEquationCode_0"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownDamageEquationCode_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1 = Module["_emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getCrownDamageType_0 = Module["_emscripten_bind_SIGMortality_getCrownDamageType_0"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownDamageType_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1 = Module["_emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1"] = createExportWrapper("emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1 = Module["_emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1"] = createExportWrapper("emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getSpeciesCode_0 = Module["_emscripten_bind_SIGMortality_getSpeciesCode_0"] = createExportWrapper("emscripten_bind_SIGMortality_getSpeciesCode_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1 = Module["_emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1"] = createExportWrapper("emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getEquationType_0 = Module["_emscripten_bind_SIGMortality_getEquationType_0"] = createExportWrapper("emscripten_bind_SIGMortality_getEquationType_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1 = Module["_emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1"] = createExportWrapper("emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getFireSeverity_0 = Module["_emscripten_bind_SIGMortality_getFireSeverity_0"] = createExportWrapper("emscripten_bind_SIGMortality_getFireSeverity_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0 = Module["_emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0"] = createExportWrapper("emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getGACCRegion_0 = Module["_emscripten_bind_SIGMortality_getGACCRegion_0"] = createExportWrapper("emscripten_bind_SIGMortality_getGACCRegion_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1 = Module["_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1"] = createExportWrapper("emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2 = Module["_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2"] = createExportWrapper("emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getBarkThickness_1 = Module["_emscripten_bind_SIGMortality_getBarkThickness_1"] = createExportWrapper("emscripten_bind_SIGMortality_getBarkThickness_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getBasalAreaKillled_0 = Module["_emscripten_bind_SIGMortality_getBasalAreaKillled_0"] = createExportWrapper("emscripten_bind_SIGMortality_getBasalAreaKillled_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getBasalAreaPostfire_0 = Module["_emscripten_bind_SIGMortality_getBasalAreaPostfire_0"] = createExportWrapper("emscripten_bind_SIGMortality_getBasalAreaPostfire_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getBasalAreaPrefire_0 = Module["_emscripten_bind_SIGMortality_getBasalAreaPrefire_0"] = createExportWrapper("emscripten_bind_SIGMortality_getBasalAreaPrefire_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getBoleCharHeight_1 = Module["_emscripten_bind_SIGMortality_getBoleCharHeight_1"] = createExportWrapper("emscripten_bind_SIGMortality_getBoleCharHeight_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getBoleCharHeightBacking_1 = Module["_emscripten_bind_SIGMortality_getBoleCharHeightBacking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getBoleCharHeightBacking_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1 = Module["_emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getCambiumKillRating_0 = Module["_emscripten_bind_SIGMortality_getCambiumKillRating_0"] = createExportWrapper("emscripten_bind_SIGMortality_getCambiumKillRating_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getCrownDamage_0 = Module["_emscripten_bind_SIGMortality_getCrownDamage_0"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownDamage_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getCrownRatio_1 = Module["_emscripten_bind_SIGMortality_getCrownRatio_1"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownRatio_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getCVSorCLS_0 = Module["_emscripten_bind_SIGMortality_getCVSorCLS_0"] = createExportWrapper("emscripten_bind_SIGMortality_getCVSorCLS_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getDBH_1 = Module["_emscripten_bind_SIGMortality_getDBH_1"] = createExportWrapper("emscripten_bind_SIGMortality_getDBH_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getFlameLength_1 = Module["_emscripten_bind_SIGMortality_getFlameLength_1"] = createExportWrapper("emscripten_bind_SIGMortality_getFlameLength_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1 = Module["_emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1"] = createExportWrapper("emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getKilledTrees_0 = Module["_emscripten_bind_SIGMortality_getKilledTrees_0"] = createExportWrapper("emscripten_bind_SIGMortality_getKilledTrees_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getProbabilityOfMortality_1 = Module["_emscripten_bind_SIGMortality_getProbabilityOfMortality_1"] = createExportWrapper("emscripten_bind_SIGMortality_getProbabilityOfMortality_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1 = Module["_emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1 = Module["_emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getScorchHeight_1 = Module["_emscripten_bind_SIGMortality_getScorchHeight_1"] = createExportWrapper("emscripten_bind_SIGMortality_getScorchHeight_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getScorchHeightBacking_1 = Module["_emscripten_bind_SIGMortality_getScorchHeightBacking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getScorchHeightBacking_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getScorchHeightFlanking_1 = Module["_emscripten_bind_SIGMortality_getScorchHeightFlanking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getScorchHeightFlanking_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getTotalPrefireTrees_0 = Module["_emscripten_bind_SIGMortality_getTotalPrefireTrees_0"] = createExportWrapper("emscripten_bind_SIGMortality_getTotalPrefireTrees_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1 = Module["_emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1"] = createExportWrapper("emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1 = Module["_emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1 = Module["_emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1 = Module["_emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1"] = createExportWrapper("emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1 = Module["_emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1 = Module["_emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1"] = createExportWrapper("emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1 = Module["_emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1"] = createExportWrapper("emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getTreeHeight_1 = Module["_emscripten_bind_SIGMortality_getTreeHeight_1"] = createExportWrapper("emscripten_bind_SIGMortality_getTreeHeight_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_postfireCanopyCover_0 = Module["_emscripten_bind_SIGMortality_postfireCanopyCover_0"] = createExportWrapper("emscripten_bind_SIGMortality_postfireCanopyCover_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_prefireCanopyCover_0 = Module["_emscripten_bind_SIGMortality_prefireCanopyCover_0"] = createExportWrapper("emscripten_bind_SIGMortality_prefireCanopyCover_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1 = Module["_emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1"] = createExportWrapper("emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1 = Module["_emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0 = Module["_emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0"] = createExportWrapper("emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1 = Module["_emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1"] = createExportWrapper("emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0 = Module["_emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0"] = createExportWrapper("emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2 = Module["_emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2"] = createExportWrapper("emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setAirTemperature_2 = Module["_emscripten_bind_SIGMortality_setAirTemperature_2"] = createExportWrapper("emscripten_bind_SIGMortality_setAirTemperature_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setBeetleDamage_1 = Module["_emscripten_bind_SIGMortality_setBeetleDamage_1"] = createExportWrapper("emscripten_bind_SIGMortality_setBeetleDamage_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setBoleCharHeight_2 = Module["_emscripten_bind_SIGMortality_setBoleCharHeight_2"] = createExportWrapper("emscripten_bind_SIGMortality_setBoleCharHeight_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setCambiumKillRating_1 = Module["_emscripten_bind_SIGMortality_setCambiumKillRating_1"] = createExportWrapper("emscripten_bind_SIGMortality_setCambiumKillRating_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setCrownDamage_1 = Module["_emscripten_bind_SIGMortality_setCrownDamage_1"] = createExportWrapper("emscripten_bind_SIGMortality_setCrownDamage_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setCrownRatio_2 = Module["_emscripten_bind_SIGMortality_setCrownRatio_2"] = createExportWrapper("emscripten_bind_SIGMortality_setCrownRatio_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setDBH_2 = Module["_emscripten_bind_SIGMortality_setDBH_2"] = createExportWrapper("emscripten_bind_SIGMortality_setDBH_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setEquationType_1 = Module["_emscripten_bind_SIGMortality_setEquationType_1"] = createExportWrapper("emscripten_bind_SIGMortality_setEquationType_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setFireSeverity_1 = Module["_emscripten_bind_SIGMortality_setFireSeverity_1"] = createExportWrapper("emscripten_bind_SIGMortality_setFireSeverity_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setFirelineIntensity_2 = Module["_emscripten_bind_SIGMortality_setFirelineIntensity_2"] = createExportWrapper("emscripten_bind_SIGMortality_setFirelineIntensity_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setFlameLength_2 = Module["_emscripten_bind_SIGMortality_setFlameLength_2"] = createExportWrapper("emscripten_bind_SIGMortality_setFlameLength_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1 = Module["_emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1"] = createExportWrapper("emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2 = Module["_emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2"] = createExportWrapper("emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setMidFlameWindSpeed_2 = Module["_emscripten_bind_SIGMortality_setMidFlameWindSpeed_2"] = createExportWrapper("emscripten_bind_SIGMortality_setMidFlameWindSpeed_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setGACCRegion_1 = Module["_emscripten_bind_SIGMortality_setGACCRegion_1"] = createExportWrapper("emscripten_bind_SIGMortality_setGACCRegion_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setScorchHeight_2 = Module["_emscripten_bind_SIGMortality_setScorchHeight_2"] = createExportWrapper("emscripten_bind_SIGMortality_setScorchHeight_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setSpeciesCode_1 = Module["_emscripten_bind_SIGMortality_setSpeciesCode_1"] = createExportWrapper("emscripten_bind_SIGMortality_setSpeciesCode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2 = Module["_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2"] = createExportWrapper("emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2 = Module["_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2"] = createExportWrapper("emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2 = Module["_emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2"] = createExportWrapper("emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2 = Module["_emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2"] = createExportWrapper("emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2 = Module["_emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2"] = createExportWrapper("emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2 = Module["_emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2"] = createExportWrapper("emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2 = Module["_emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2"] = createExportWrapper("emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2 = Module["_emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2"] = createExportWrapper("emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setTreeHeight_2 = Module["_emscripten_bind_SIGMortality_setTreeHeight_2"] = createExportWrapper("emscripten_bind_SIGMortality_setTreeHeight_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1 = Module["_emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1"] = createExportWrapper("emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setWindHeightInputMode_1 = Module["_emscripten_bind_SIGMortality_setWindHeightInputMode_1"] = createExportWrapper("emscripten_bind_SIGMortality_setWindHeightInputMode_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setWindSpeed_2 = Module["_emscripten_bind_SIGMortality_setWindSpeed_2"] = createExportWrapper("emscripten_bind_SIGMortality_setWindSpeed_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4 = Module["_emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4"] = createExportWrapper("emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGMortality___destroy___0 = Module["_emscripten_bind_SIGMortality___destroy___0"] = createExportWrapper("emscripten_bind_SIGMortality___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_WindSpeedUtility_WindSpeedUtility_0 = Module["_emscripten_bind_WindSpeedUtility_WindSpeedUtility_0"] = createExportWrapper("emscripten_bind_WindSpeedUtility_WindSpeedUtility_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2 = Module["_emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2"] = createExportWrapper("emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1 = Module["_emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1"] = createExportWrapper("emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_WindSpeedUtility___destroy___0 = Module["_emscripten_bind_WindSpeedUtility___destroy___0"] = createExportWrapper("emscripten_bind_WindSpeedUtility___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0 = Module["_emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0"] = createExportWrapper("emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_SIGSlopeTool_0 = Module["_emscripten_bind_SIGSlopeTool_SIGSlopeTool_0"] = createExportWrapper("emscripten_bind_SIGSlopeTool_SIGSlopeTool_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1 = Module["_emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1 = Module["_emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getHorizontalDistance_2 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistance_2"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistance_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1 = Module["_emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1 = Module["_emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1 = Module["_emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1 = Module["_emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1 = Module["_emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1 = Module["_emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1 = Module["_emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1 = Module["_emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1 = Module["_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1 = Module["_emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0 = Module["_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0 = Module["_emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0 = Module["_emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0 = Module["_emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1 = Module["_emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1 = Module["_emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0 = Module["_emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0"] = createExportWrapper("emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0 = Module["_emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0"] = createExportWrapper("emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2 = Module["_emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2"] = createExportWrapper("emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_setContourInterval_2 = Module["_emscripten_bind_SIGSlopeTool_setContourInterval_2"] = createExportWrapper("emscripten_bind_SIGSlopeTool_setContourInterval_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_setMapDistance_2 = Module["_emscripten_bind_SIGSlopeTool_setMapDistance_2"] = createExportWrapper("emscripten_bind_SIGSlopeTool_setMapDistance_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1 = Module["_emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1 = Module["_emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool_setNumberOfContours_1 = Module["_emscripten_bind_SIGSlopeTool_setNumberOfContours_1"] = createExportWrapper("emscripten_bind_SIGSlopeTool_setNumberOfContours_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SIGSlopeTool___destroy___0 = Module["_emscripten_bind_SIGSlopeTool___destroy___0"] = createExportWrapper("emscripten_bind_SIGSlopeTool___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0 = Module["_emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0"] = createExportWrapper("emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0 = Module["_emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0"] = createExportWrapper("emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2 = Module["_emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2"] = createExportWrapper("emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2 = Module["_emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2"] = createExportWrapper("emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1 = Module["_emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1"] = createExportWrapper("emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_VaporPressureDeficitCalculator___destroy___0 = Module["_emscripten_bind_VaporPressureDeficitCalculator___destroy___0"] = createExportWrapper("emscripten_bind_VaporPressureDeficitCalculator___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0 = Module["_emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_RelativeHumidityTool_calculate_0 = Module["_emscripten_bind_RelativeHumidityTool_calculate_0"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_calculate_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1 = Module["_emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_RelativeHumidityTool_getSiteElevation_1 = Module["_emscripten_bind_RelativeHumidityTool_getSiteElevation_1"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_getSiteElevation_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1 = Module["_emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1 = Module["_emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1 = Module["_emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1 = Module["_emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2 = Module["_emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_RelativeHumidityTool_setSiteElevation_2 = Module["_emscripten_bind_RelativeHumidityTool_setSiteElevation_2"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_setSiteElevation_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2 = Module["_emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2"] = createExportWrapper("emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_RelativeHumidityTool___destroy___0 = Module["_emscripten_bind_RelativeHumidityTool___destroy___0"] = createExportWrapper("emscripten_bind_RelativeHumidityTool___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0 = Module["_emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0"] = createExportWrapper("emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SafeSeparationDistanceCalculator_calculate_0 = Module["_emscripten_bind_SafeSeparationDistanceCalculator_calculate_0"] = createExportWrapper("emscripten_bind_SafeSeparationDistanceCalculator_calculate_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0 = Module["_emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0"] = createExportWrapper("emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0 = Module["_emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0"] = createExportWrapper("emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0 = Module["_emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0"] = createExportWrapper("emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1 = Module["_emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1"] = createExportWrapper("emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1 = Module["_emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1"] = createExportWrapper("emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1 = Module["_emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1"] = createExportWrapper("emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0 = Module["_emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0"] = createExportWrapper("emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0"); +/** @type {function(...*):?} */ +var _emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1 = Module["_emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1"] = createExportWrapper("emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1 = Module["_emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1"] = createExportWrapper("emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1 = Module["_emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1"] = createExportWrapper("emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1"); +/** @type {function(...*):?} */ +var _emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2 = Module["_emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2"] = createExportWrapper("emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2"); +/** @type {function(...*):?} */ +var _emscripten_bind_SafeSeparationDistanceCalculator___destroy___0 = Module["_emscripten_bind_SafeSeparationDistanceCalculator___destroy___0"] = createExportWrapper("emscripten_bind_SafeSeparationDistanceCalculator___destroy___0"); +/** @type {function(...*):?} */ +var _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet = Module["_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet"] = createExportWrapper("emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet"); +/** @type {function(...*):?} */ +var _emscripten_enum_AreaUnits_AreaUnitsEnum_Acres = Module["_emscripten_enum_AreaUnits_AreaUnitsEnum_Acres"] = createExportWrapper("emscripten_enum_AreaUnits_AreaUnitsEnum_Acres"); +/** @type {function(...*):?} */ +var _emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares = Module["_emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares"] = createExportWrapper("emscripten_enum_AreaUnits_AreaUnitsEnum_Hectares"); +/** @type {function(...*):?} */ +var _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters = Module["_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters"] = createExportWrapper("emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMeters"); +/** @type {function(...*):?} */ +var _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles = Module["_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles"] = createExportWrapper("emscripten_enum_AreaUnits_AreaUnitsEnum_SquareMiles"); +/** @type {function(...*):?} */ +var _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers = Module["_emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers"] = createExportWrapper("emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers"); +/** @type {function(...*):?} */ +var _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre = Module["_emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre"] = createExportWrapper("emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre"); +/** @type {function(...*):?} */ +var _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare = Module["_emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare"] = createExportWrapper("emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare"); +/** @type {function(...*):?} */ +var _emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction = Module["_emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction"] = createExportWrapper("emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction"); +/** @type {function(...*):?} */ +var _emscripten_enum_FractionUnits_FractionUnitsEnum_Percent = Module["_emscripten_enum_FractionUnits_FractionUnitsEnum_Percent"] = createExportWrapper("emscripten_enum_FractionUnits_FractionUnitsEnum_Percent"); +/** @type {function(...*):?} */ +var _emscripten_enum_LengthUnits_LengthUnitsEnum_Feet = Module["_emscripten_enum_LengthUnits_LengthUnitsEnum_Feet"] = createExportWrapper("emscripten_enum_LengthUnits_LengthUnitsEnum_Feet"); +/** @type {function(...*):?} */ +var _emscripten_enum_LengthUnits_LengthUnitsEnum_Inches = Module["_emscripten_enum_LengthUnits_LengthUnitsEnum_Inches"] = createExportWrapper("emscripten_enum_LengthUnits_LengthUnitsEnum_Inches"); +/** @type {function(...*):?} */ +var _emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters = Module["_emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters"] = createExportWrapper("emscripten_enum_LengthUnits_LengthUnitsEnum_Millimeters"); +/** @type {function(...*):?} */ +var _emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters = Module["_emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters"] = createExportWrapper("emscripten_enum_LengthUnits_LengthUnitsEnum_Centimeters"); +/** @type {function(...*):?} */ +var _emscripten_enum_LengthUnits_LengthUnitsEnum_Meters = Module["_emscripten_enum_LengthUnits_LengthUnitsEnum_Meters"] = createExportWrapper("emscripten_enum_LengthUnits_LengthUnitsEnum_Meters"); +/** @type {function(...*):?} */ +var _emscripten_enum_LengthUnits_LengthUnitsEnum_Chains = Module["_emscripten_enum_LengthUnits_LengthUnitsEnum_Chains"] = createExportWrapper("emscripten_enum_LengthUnits_LengthUnitsEnum_Chains"); +/** @type {function(...*):?} */ +var _emscripten_enum_LengthUnits_LengthUnitsEnum_Miles = Module["_emscripten_enum_LengthUnits_LengthUnitsEnum_Miles"] = createExportWrapper("emscripten_enum_LengthUnits_LengthUnitsEnum_Miles"); +/** @type {function(...*):?} */ +var _emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers = Module["_emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers"] = createExportWrapper("emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers"); +/** @type {function(...*):?} */ +var _emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot = Module["_emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot"] = createExportWrapper("emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot"); +/** @type {function(...*):?} */ +var _emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre = Module["_emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre"] = createExportWrapper("emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonsPerAcre"); +/** @type {function(...*):?} */ +var _emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare = Module["_emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare"] = createExportWrapper("emscripten_enum_LoadingUnits_LoadingUnitsEnum_TonnesPerHectare"); +/** @type {function(...*):?} */ +var _emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter = Module["_emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter"] = createExportWrapper("emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter"); +/** @type {function(...*):?} */ +var _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet = Module["_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet"] = createExportWrapper("emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet"); +/** @type {function(...*):?} */ +var _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters = Module["_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters"] = createExportWrapper("emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareMetersOverCubicMeters"); +/** @type {function(...*):?} */ +var _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches = Module["_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches"] = createExportWrapper("emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareInchesOverCubicInches"); +/** @type {function(...*):?} */ +var _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters = Module["_emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters"] = createExportWrapper("emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute = Module["_emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute"] = createExportWrapper("emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour = Module["_emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour"] = createExportWrapper("emscripten_enum_SpeedUnits_SpeedUnitsEnum_ChainsPerHour"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond = Module["_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond"] = createExportWrapper("emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerSecond"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute = Module["_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute"] = createExportWrapper("emscripten_enum_SpeedUnits_SpeedUnitsEnum_MetersPerMinute"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour = Module["_emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour"] = createExportWrapper("emscripten_enum_SpeedUnits_SpeedUnitsEnum_MilesPerHour"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour = Module["_emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour"] = createExportWrapper("emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour"); +/** @type {function(...*):?} */ +var _emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal"); +/** @type {function(...*):?} */ +var _emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_HectoPascal"); +/** @type {function(...*):?} */ +var _emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_KiloPascal"); +/** @type {function(...*):?} */ +var _emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_MegaPascal"); +/** @type {function(...*):?} */ +var _emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_GigaPascal"); +/** @type {function(...*):?} */ +var _emscripten_enum_PressureUnits_PressureUnitsEnum_Bar = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_Bar"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_Bar"); +/** @type {function(...*):?} */ +var _emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_Atmosphere"); +/** @type {function(...*):?} */ +var _emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_TechnicalAtmosphere"); +/** @type {function(...*):?} */ +var _emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch = Module["_emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch"] = createExportWrapper("emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch"); +/** @type {function(...*):?} */ +var _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees = Module["_emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees"] = createExportWrapper("emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees"); +/** @type {function(...*):?} */ +var _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent = Module["_emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent"] = createExportWrapper("emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent"); +/** @type {function(...*):?} */ +var _emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot = Module["_emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot"] = createExportWrapper("emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot"); +/** @type {function(...*):?} */ +var _emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter = Module["_emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter"] = createExportWrapper("emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter"); +/** @type {function(...*):?} */ +var _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound = Module["_emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound"] = createExportWrapper("emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound"); +/** @type {function(...*):?} */ +var _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram = Module["_emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram"] = createExportWrapper("emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram"); +/** @type {function(...*):?} */ +var _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot = Module["_emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot"] = createExportWrapper("emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot"); +/** @type {function(...*):?} */ +var _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter = Module["_emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter"] = createExportWrapper("emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter"); +/** @type {function(...*):?} */ +var _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot = Module["_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot"] = createExportWrapper("emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot"); +/** @type {function(...*):?} */ +var _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter = Module["_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter"] = createExportWrapper("emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilojoulesPerSquareMeter"); +/** @type {function(...*):?} */ +var _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter = Module["_emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter"] = createExportWrapper("emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter"); +/** @type {function(...*):?} */ +var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute = Module["_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute"] = createExportWrapper("emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute"); +/** @type {function(...*):?} */ +var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond = Module["_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond"] = createExportWrapper("emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerSecond"); +/** @type {function(...*):?} */ +var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond = Module["_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond"] = createExportWrapper("emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerSecond"); +/** @type {function(...*):?} */ +var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute = Module["_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute"] = createExportWrapper("emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilojoulesPerSquareMeterPerMinute"); +/** @type {function(...*):?} */ +var _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter = Module["_emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter"] = createExportWrapper("emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter"); +/** @type {function(...*):?} */ +var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond = Module["_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond"] = createExportWrapper("emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond"); +/** @type {function(...*):?} */ +var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute = Module["_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute"] = createExportWrapper("emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerMinute"); +/** @type {function(...*):?} */ +var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond = Module["_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond"] = createExportWrapper("emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerSecond"); +/** @type {function(...*):?} */ +var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute = Module["_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute"] = createExportWrapper("emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilojoulesPerMeterPerMinute"); +/** @type {function(...*):?} */ +var _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter = Module["_emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter"] = createExportWrapper("emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter"); +/** @type {function(...*):?} */ +var _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit = Module["_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit"] = createExportWrapper("emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit"); +/** @type {function(...*):?} */ +var _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius = Module["_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius"] = createExportWrapper("emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Celsius"); +/** @type {function(...*):?} */ +var _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin = Module["_emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin"] = createExportWrapper("emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin"); +/** @type {function(...*):?} */ +var _emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes = Module["_emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes"] = createExportWrapper("emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes"); +/** @type {function(...*):?} */ +var _emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds = Module["_emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds"] = createExportWrapper("emscripten_enum_TimeUnits_TimeUnitsEnum_Seconds"); +/** @type {function(...*):?} */ +var _emscripten_enum_TimeUnits_TimeUnitsEnum_Hours = Module["_emscripten_enum_TimeUnits_TimeUnitsEnum_Hours"] = createExportWrapper("emscripten_enum_TimeUnits_TimeUnitsEnum_Hours"); +/** @type {function(...*):?} */ +var _emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack = Module["_emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack"] = createExportWrapper("emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack"); +/** @type {function(...*):?} */ +var _emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack = Module["_emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack"] = createExportWrapper("emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack"); +/** @type {function(...*):?} */ +var _emscripten_enum_ContainStatus_ContainStatusEnum_Unreported = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_Unreported"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_Unreported"); +/** @type {function(...*):?} */ +var _emscripten_enum_ContainStatus_ContainStatusEnum_Reported = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_Reported"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_Reported"); +/** @type {function(...*):?} */ +var _emscripten_enum_ContainStatus_ContainStatusEnum_Attacked = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_Attacked"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_Attacked"); +/** @type {function(...*):?} */ +var _emscripten_enum_ContainStatus_ContainStatusEnum_Contained = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_Contained"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_Contained"); +/** @type {function(...*):?} */ +var _emscripten_enum_ContainStatus_ContainStatusEnum_Overrun = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_Overrun"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_Overrun"); +/** @type {function(...*):?} */ +var _emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_Exhausted"); +/** @type {function(...*):?} */ +var _emscripten_enum_ContainStatus_ContainStatusEnum_Overflow = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_Overflow"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_Overflow"); +/** @type {function(...*):?} */ +var _emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_SizeLimitExceeded"); +/** @type {function(...*):?} */ +var _emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded = Module["_emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded"] = createExportWrapper("emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded"); +/** @type {function(...*):?} */ +var _emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank = Module["_emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank"] = createExportWrapper("emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank"); +/** @type {function(...*):?} */ +var _emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank = Module["_emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank"] = createExportWrapper("emscripten_enum_ContainFlank_ContainFlankEnum_RightFlank"); +/** @type {function(...*):?} */ +var _emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks = Module["_emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks"] = createExportWrapper("emscripten_enum_ContainFlank_ContainFlankEnum_BothFlanks"); +/** @type {function(...*):?} */ +var _emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank = Module["_emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank"] = createExportWrapper("emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank"); +/** @type {function(...*):?} */ +var _emscripten_enum_ContainMode_Default = Module["_emscripten_enum_ContainMode_Default"] = createExportWrapper("emscripten_enum_ContainMode_Default"); +/** @type {function(...*):?} */ +var _emscripten_enum_ContainMode_ComputeWithOptimalResource = Module["_emscripten_enum_ContainMode_ComputeWithOptimalResource"] = createExportWrapper("emscripten_enum_ContainMode_ComputeWithOptimalResource"); +/** @type {function(...*):?} */ +var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter = Module["_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter"] = createExportWrapper("emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter"); +/** @type {function(...*):?} */ +var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky = Module["_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky"] = createExportWrapper("emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodRottenChunky"); +/** @type {function(...*):?} */ +var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep = Module["_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep"] = createExportWrapper("emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkyWoodPowderDeep"); +/** @type {function(...*):?} */ +var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow = Module["_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow"] = createExportWrapper("emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PunkWoodPowderShallow"); +/** @type {function(...*):?} */ +var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff = Module["_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff"] = createExportWrapper("emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_LodgepolePineDuff"); +/** @type {function(...*):?} */ +var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff = Module["_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff"] = createExportWrapper("emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_DouglasFirDuff"); +/** @type {function(...*):?} */ +var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed = Module["_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed"] = createExportWrapper("emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_HighAltitudeMixed"); +/** @type {function(...*):?} */ +var _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss = Module["_emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss"] = createExportWrapper("emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss"); +/** @type {function(...*):?} */ +var _emscripten_enum_LightningCharge_LightningChargeEnum_Negative = Module["_emscripten_enum_LightningCharge_LightningChargeEnum_Negative"] = createExportWrapper("emscripten_enum_LightningCharge_LightningChargeEnum_Negative"); +/** @type {function(...*):?} */ +var _emscripten_enum_LightningCharge_LightningChargeEnum_Positive = Module["_emscripten_enum_LightningCharge_LightningChargeEnum_Positive"] = createExportWrapper("emscripten_enum_LightningCharge_LightningChargeEnum_Positive"); +/** @type {function(...*):?} */ +var _emscripten_enum_LightningCharge_LightningChargeEnum_Unknown = Module["_emscripten_enum_LightningCharge_LightningChargeEnum_Unknown"] = createExportWrapper("emscripten_enum_LightningCharge_LightningChargeEnum_Unknown"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED = Module["_emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED"] = createExportWrapper("emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN = Module["_emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN"] = createExportWrapper("emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_DOUGLAS_FIR"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SUBALPINE_FIR"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_HEMLOCK"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_PONDEROSA_PINE"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LODGEPOLE_PINE"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_WESTERN_WHITE_PINE"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_GRAND_FIR"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_BALSAM_FIR"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SLASH_PINE"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LONGLEAF_PINE"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_POND_PINE"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_SHORTLEAF_PINE"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE = Module["_emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE"] = createExportWrapper("emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD = Module["_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD"] = createExportWrapper("emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM = Module["_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM"] = createExportWrapper("emscripten_enum_SpotFireLocation_SpotFireLocationEnum_VALLEY_BOTTOM"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD = Module["_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD"] = createExportWrapper("emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_LEEWARD"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP = Module["_emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP"] = createExportWrapper("emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP"); +/** @type {function(...*):?} */ +var _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead = Module["_emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead"] = createExportWrapper("emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead"); +/** @type {function(...*):?} */ +var _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live = Module["_emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live"] = createExportWrapper("emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live"); +/** @type {function(...*):?} */ +var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates = Module["_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates"] = createExportWrapper("emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates"); +/** @type {function(...*):?} */ +var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses = Module["_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses"] = createExportWrapper("emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLiveSizeClasses"); +/** @type {function(...*):?} */ +var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses = Module["_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses"] = createExportWrapper("emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxDeadSizeClasses"); +/** @type {function(...*):?} */ +var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles = Module["_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles"] = createExportWrapper("emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxParticles"); +/** @type {function(...*):?} */ +var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses = Module["_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses"] = createExportWrapper("emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxSavrSizeClasses"); +/** @type {function(...*):?} */ +var _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels = Module["_emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels"] = createExportWrapper("emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels"); +/** @type {function(...*):?} */ +var _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low = Module["_emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low"] = createExportWrapper("emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low"); +/** @type {function(...*):?} */ +var _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate = Module["_emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate"] = createExportWrapper("emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate"); +/** @type {function(...*):?} */ +var _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet = Module["_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet"] = createExportWrapper("emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet"); +/** @type {function(...*):?} */ +var _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise = Module["_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise"] = createExportWrapper("emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_Chamise"); +/** @type {function(...*):?} */ +var _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush = Module["_emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush"] = createExportWrapper("emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush"); +/** @type {function(...*):?} */ +var _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad = Module["_emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad"] = createExportWrapper("emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad"); +/** @type {function(...*):?} */ +var _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType = Module["_emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType"] = createExportWrapper("emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType"); +/** @type {function(...*):?} */ +var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass = Module["_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass"] = createExportWrapper("emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass"); +/** @type {function(...*):?} */ +var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate = Module["_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate"] = createExportWrapper("emscripten_enum_MoistureInputMode_MoistureInputModeEnum_AllAggregate"); +/** @type {function(...*):?} */ +var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass = Module["_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass"] = createExportWrapper("emscripten_enum_MoistureInputMode_MoistureInputModeEnum_DeadAggregateAndLiveSizeClass"); +/** @type {function(...*):?} */ +var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass = Module["_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass"] = createExportWrapper("emscripten_enum_MoistureInputMode_MoistureInputModeEnum_LiveAggregateAndDeadSizeClass"); +/** @type {function(...*):?} */ +var _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario = Module["_emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario"] = createExportWrapper("emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario"); +/** @type {function(...*):?} */ +var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour = Module["_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour"] = createExportWrapper("emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour"); +/** @type {function(...*):?} */ +var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour = Module["_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour"] = createExportWrapper("emscripten_enum_MoistureClassInput_MoistureClassInputEnum_TenHour"); +/** @type {function(...*):?} */ +var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour = Module["_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour"] = createExportWrapper("emscripten_enum_MoistureClassInput_MoistureClassInputEnum_HundredHour"); +/** @type {function(...*):?} */ +var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous = Module["_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous"] = createExportWrapper("emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveHerbaceous"); +/** @type {function(...*):?} */ +var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody = Module["_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody"] = createExportWrapper("emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveWoody"); +/** @type {function(...*):?} */ +var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate = Module["_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate"] = createExportWrapper("emscripten_enum_MoistureClassInput_MoistureClassInputEnum_DeadAggregate"); +/** @type {function(...*):?} */ +var _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate = Module["_emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate"] = createExportWrapper("emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate"); +/** @type {function(...*):?} */ +var _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint = Module["_emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint"] = createExportWrapper("emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint"); +/** @type {function(...*):?} */ +var _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter = Module["_emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter"] = createExportWrapper("emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter"); +/** @type {function(...*):?} */ +var _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod = Module["_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod"] = createExportWrapper("emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod"); +/** @type {function(...*):?} */ +var _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic = Module["_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic"] = createExportWrapper("emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Arithmetic"); +/** @type {function(...*):?} */ +var _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic = Module["_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic"] = createExportWrapper("emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_Harmonic"); +/** @type {function(...*):?} */ +var _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional = Module["_emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional"] = createExportWrapper("emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional"); +/** @type {function(...*):?} */ +var _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered = Module["_emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered"] = createExportWrapper("emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered"); +/** @type {function(...*):?} */ +var _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered = Module["_emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered"] = createExportWrapper("emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered"); +/** @type {function(...*):?} */ +var _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput = Module["_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput"] = createExportWrapper("emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput"); +/** @type {function(...*):?} */ +var _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio = Module["_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio"] = createExportWrapper("emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UseCrownRatio"); +/** @type {function(...*):?} */ +var _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio = Module["_emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio"] = createExportWrapper("emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio"); +/** @type {function(...*):?} */ +var _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope = Module["_emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope"] = createExportWrapper("emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope"); +/** @type {function(...*):?} */ +var _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth = Module["_emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth"] = createExportWrapper("emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth"); +/** @type {function(...*):?} */ +var _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame = Module["_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame"] = createExportWrapper("emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame"); +/** @type {function(...*):?} */ +var _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot = Module["_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot"] = createExportWrapper("emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TwentyFoot"); +/** @type {function(...*):?} */ +var _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter = Module["_emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter"] = createExportWrapper("emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter"); +/** @type {function(...*):?} */ +var _emscripten_enum_WindUpslopeAlignmentMode_NotAligned = Module["_emscripten_enum_WindUpslopeAlignmentMode_NotAligned"] = createExportWrapper("emscripten_enum_WindUpslopeAlignmentMode_NotAligned"); +/** @type {function(...*):?} */ +var _emscripten_enum_WindUpslopeAlignmentMode_Aligned = Module["_emscripten_enum_WindUpslopeAlignmentMode_Aligned"] = createExportWrapper("emscripten_enum_WindUpslopeAlignmentMode_Aligned"); +/** @type {function(...*):?} */ +var _emscripten_enum_SurfaceRunInDirectionOf_MaxSpread = Module["_emscripten_enum_SurfaceRunInDirectionOf_MaxSpread"] = createExportWrapper("emscripten_enum_SurfaceRunInDirectionOf_MaxSpread"); +/** @type {function(...*):?} */ +var _emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest = Module["_emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest"] = createExportWrapper("emscripten_enum_SurfaceRunInDirectionOf_DirectionOfInterest"); +/** @type {function(...*):?} */ +var _emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking = Module["_emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking"] = createExportWrapper("emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking"); +/** @type {function(...*):?} */ +var _emscripten_enum_FireType_FireTypeEnum_Surface = Module["_emscripten_enum_FireType_FireTypeEnum_Surface"] = createExportWrapper("emscripten_enum_FireType_FireTypeEnum_Surface"); +/** @type {function(...*):?} */ +var _emscripten_enum_FireType_FireTypeEnum_Torching = Module["_emscripten_enum_FireType_FireTypeEnum_Torching"] = createExportWrapper("emscripten_enum_FireType_FireTypeEnum_Torching"); +/** @type {function(...*):?} */ +var _emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire = Module["_emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire"] = createExportWrapper("emscripten_enum_FireType_FireTypeEnum_ConditionalCrownFire"); +/** @type {function(...*):?} */ +var _emscripten_enum_FireType_FireTypeEnum_Crowning = Module["_emscripten_enum_FireType_FireTypeEnum_Crowning"] = createExportWrapper("emscripten_enum_FireType_FireTypeEnum_Crowning"); +/** @type {function(...*):?} */ +var _emscripten_enum_BeetleDamage_not_set = Module["_emscripten_enum_BeetleDamage_not_set"] = createExportWrapper("emscripten_enum_BeetleDamage_not_set"); +/** @type {function(...*):?} */ +var _emscripten_enum_BeetleDamage_no = Module["_emscripten_enum_BeetleDamage_no"] = createExportWrapper("emscripten_enum_BeetleDamage_no"); +/** @type {function(...*):?} */ +var _emscripten_enum_BeetleDamage_yes = Module["_emscripten_enum_BeetleDamage_yes"] = createExportWrapper("emscripten_enum_BeetleDamage_yes"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownFireCalculationMethod_rothermel = Module["_emscripten_enum_CrownFireCalculationMethod_rothermel"] = createExportWrapper("emscripten_enum_CrownFireCalculationMethod_rothermel"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt = Module["_emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt"] = createExportWrapper("emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownDamageEquationCode_not_set = Module["_emscripten_enum_CrownDamageEquationCode_not_set"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_not_set"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownDamageEquationCode_white_fir = Module["_emscripten_enum_CrownDamageEquationCode_white_fir"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_white_fir"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownDamageEquationCode_subalpine_fir = Module["_emscripten_enum_CrownDamageEquationCode_subalpine_fir"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_subalpine_fir"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownDamageEquationCode_incense_cedar = Module["_emscripten_enum_CrownDamageEquationCode_incense_cedar"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_incense_cedar"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownDamageEquationCode_western_larch = Module["_emscripten_enum_CrownDamageEquationCode_western_larch"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_western_larch"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownDamageEquationCode_whitebark_pine = Module["_emscripten_enum_CrownDamageEquationCode_whitebark_pine"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_whitebark_pine"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownDamageEquationCode_engelmann_spruce = Module["_emscripten_enum_CrownDamageEquationCode_engelmann_spruce"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_engelmann_spruce"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownDamageEquationCode_sugar_pine = Module["_emscripten_enum_CrownDamageEquationCode_sugar_pine"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_sugar_pine"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownDamageEquationCode_red_fir = Module["_emscripten_enum_CrownDamageEquationCode_red_fir"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_red_fir"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownDamageEquationCode_ponderosa_pine = Module["_emscripten_enum_CrownDamageEquationCode_ponderosa_pine"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_ponderosa_pine"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownDamageEquationCode_ponderosa_kill = Module["_emscripten_enum_CrownDamageEquationCode_ponderosa_kill"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_ponderosa_kill"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownDamageEquationCode_douglas_fir = Module["_emscripten_enum_CrownDamageEquationCode_douglas_fir"] = createExportWrapper("emscripten_enum_CrownDamageEquationCode_douglas_fir"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownDamageType_not_set = Module["_emscripten_enum_CrownDamageType_not_set"] = createExportWrapper("emscripten_enum_CrownDamageType_not_set"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownDamageType_crown_length = Module["_emscripten_enum_CrownDamageType_crown_length"] = createExportWrapper("emscripten_enum_CrownDamageType_crown_length"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownDamageType_crown_volume = Module["_emscripten_enum_CrownDamageType_crown_volume"] = createExportWrapper("emscripten_enum_CrownDamageType_crown_volume"); +/** @type {function(...*):?} */ +var _emscripten_enum_CrownDamageType_crown_kill = Module["_emscripten_enum_CrownDamageType_crown_kill"] = createExportWrapper("emscripten_enum_CrownDamageType_crown_kill"); +/** @type {function(...*):?} */ +var _emscripten_enum_EquationType_not_set = Module["_emscripten_enum_EquationType_not_set"] = createExportWrapper("emscripten_enum_EquationType_not_set"); +/** @type {function(...*):?} */ +var _emscripten_enum_EquationType_crown_scorch = Module["_emscripten_enum_EquationType_crown_scorch"] = createExportWrapper("emscripten_enum_EquationType_crown_scorch"); +/** @type {function(...*):?} */ +var _emscripten_enum_EquationType_bole_char = Module["_emscripten_enum_EquationType_bole_char"] = createExportWrapper("emscripten_enum_EquationType_bole_char"); +/** @type {function(...*):?} */ +var _emscripten_enum_EquationType_crown_damage = Module["_emscripten_enum_EquationType_crown_damage"] = createExportWrapper("emscripten_enum_EquationType_crown_damage"); +/** @type {function(...*):?} */ +var _emscripten_enum_FireSeverity_not_set = Module["_emscripten_enum_FireSeverity_not_set"] = createExportWrapper("emscripten_enum_FireSeverity_not_set"); +/** @type {function(...*):?} */ +var _emscripten_enum_FireSeverity_empty = Module["_emscripten_enum_FireSeverity_empty"] = createExportWrapper("emscripten_enum_FireSeverity_empty"); +/** @type {function(...*):?} */ +var _emscripten_enum_FireSeverity_low = Module["_emscripten_enum_FireSeverity_low"] = createExportWrapper("emscripten_enum_FireSeverity_low"); +/** @type {function(...*):?} */ +var _emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length = Module["_emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length"] = createExportWrapper("emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length"); +/** @type {function(...*):?} */ +var _emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height = Module["_emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height"] = createExportWrapper("emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height"); +/** @type {function(...*):?} */ +var _emscripten_enum_GACC_NotSet = Module["_emscripten_enum_GACC_NotSet"] = createExportWrapper("emscripten_enum_GACC_NotSet"); +/** @type {function(...*):?} */ +var _emscripten_enum_GACC_Alaska = Module["_emscripten_enum_GACC_Alaska"] = createExportWrapper("emscripten_enum_GACC_Alaska"); +/** @type {function(...*):?} */ +var _emscripten_enum_GACC_California = Module["_emscripten_enum_GACC_California"] = createExportWrapper("emscripten_enum_GACC_California"); +/** @type {function(...*):?} */ +var _emscripten_enum_GACC_EasternArea = Module["_emscripten_enum_GACC_EasternArea"] = createExportWrapper("emscripten_enum_GACC_EasternArea"); +/** @type {function(...*):?} */ +var _emscripten_enum_GACC_GreatBasin = Module["_emscripten_enum_GACC_GreatBasin"] = createExportWrapper("emscripten_enum_GACC_GreatBasin"); +/** @type {function(...*):?} */ +var _emscripten_enum_GACC_NorthernRockies = Module["_emscripten_enum_GACC_NorthernRockies"] = createExportWrapper("emscripten_enum_GACC_NorthernRockies"); +/** @type {function(...*):?} */ +var _emscripten_enum_GACC_Northwest = Module["_emscripten_enum_GACC_Northwest"] = createExportWrapper("emscripten_enum_GACC_Northwest"); +/** @type {function(...*):?} */ +var _emscripten_enum_GACC_RockeyMountain = Module["_emscripten_enum_GACC_RockeyMountain"] = createExportWrapper("emscripten_enum_GACC_RockeyMountain"); +/** @type {function(...*):?} */ +var _emscripten_enum_GACC_SouthernArea = Module["_emscripten_enum_GACC_SouthernArea"] = createExportWrapper("emscripten_enum_GACC_SouthernArea"); +/** @type {function(...*):?} */ +var _emscripten_enum_GACC_Southwest = Module["_emscripten_enum_GACC_Southwest"] = createExportWrapper("emscripten_enum_GACC_Southwest"); +/** @type {function(...*):?} */ +var _emscripten_enum_RequiredFieldNames_region = Module["_emscripten_enum_RequiredFieldNames_region"] = createExportWrapper("emscripten_enum_RequiredFieldNames_region"); +/** @type {function(...*):?} */ +var _emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch = Module["_emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch"] = createExportWrapper("emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_switch"); +/** @type {function(...*):?} */ +var _emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value = Module["_emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value"] = createExportWrapper("emscripten_enum_RequiredFieldNames_flame_length_or_scorch_height_value"); +/** @type {function(...*):?} */ +var _emscripten_enum_RequiredFieldNames_equation_type = Module["_emscripten_enum_RequiredFieldNames_equation_type"] = createExportWrapper("emscripten_enum_RequiredFieldNames_equation_type"); +/** @type {function(...*):?} */ +var _emscripten_enum_RequiredFieldNames_dbh = Module["_emscripten_enum_RequiredFieldNames_dbh"] = createExportWrapper("emscripten_enum_RequiredFieldNames_dbh"); +/** @type {function(...*):?} */ +var _emscripten_enum_RequiredFieldNames_tree_height = Module["_emscripten_enum_RequiredFieldNames_tree_height"] = createExportWrapper("emscripten_enum_RequiredFieldNames_tree_height"); +/** @type {function(...*):?} */ +var _emscripten_enum_RequiredFieldNames_crown_ratio = Module["_emscripten_enum_RequiredFieldNames_crown_ratio"] = createExportWrapper("emscripten_enum_RequiredFieldNames_crown_ratio"); +/** @type {function(...*):?} */ +var _emscripten_enum_RequiredFieldNames_crown_damage = Module["_emscripten_enum_RequiredFieldNames_crown_damage"] = createExportWrapper("emscripten_enum_RequiredFieldNames_crown_damage"); +/** @type {function(...*):?} */ +var _emscripten_enum_RequiredFieldNames_cambium_kill_rating = Module["_emscripten_enum_RequiredFieldNames_cambium_kill_rating"] = createExportWrapper("emscripten_enum_RequiredFieldNames_cambium_kill_rating"); +/** @type {function(...*):?} */ +var _emscripten_enum_RequiredFieldNames_beetle_damage = Module["_emscripten_enum_RequiredFieldNames_beetle_damage"] = createExportWrapper("emscripten_enum_RequiredFieldNames_beetle_damage"); +/** @type {function(...*):?} */ +var _emscripten_enum_RequiredFieldNames_bole_char_height = Module["_emscripten_enum_RequiredFieldNames_bole_char_height"] = createExportWrapper("emscripten_enum_RequiredFieldNames_bole_char_height"); +/** @type {function(...*):?} */ +var _emscripten_enum_RequiredFieldNames_bark_thickness = Module["_emscripten_enum_RequiredFieldNames_bark_thickness"] = createExportWrapper("emscripten_enum_RequiredFieldNames_bark_thickness"); +/** @type {function(...*):?} */ +var _emscripten_enum_RequiredFieldNames_fire_severity = Module["_emscripten_enum_RequiredFieldNames_fire_severity"] = createExportWrapper("emscripten_enum_RequiredFieldNames_fire_severity"); +/** @type {function(...*):?} */ +var _emscripten_enum_RequiredFieldNames_num_inputs = Module["_emscripten_enum_RequiredFieldNames_num_inputs"] = createExportWrapper("emscripten_enum_RequiredFieldNames_num_inputs"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH = Module["_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH"] = createExportWrapper("emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST = Module["_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST"] = createExportWrapper("emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_EAST"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH = Module["_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH"] = createExportWrapper("emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_SOUTH"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST = Module["_emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST"] = createExportWrapper("emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F = Module["_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F"] = createExportWrapper("emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F = Module["_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F"] = createExportWrapper("emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_THRITY_TO_FOURTY_NINE_DEGREES_F"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F = Module["_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F"] = createExportWrapper("emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_FIFTY_TO_SIXTY_NINE_DEGREES_F"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F = Module["_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F"] = createExportWrapper("emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_SEVENTY_TO_EIGHTY_NINE_DEGREES_F"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F = Module["_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F"] = createExportWrapper("emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_NINETY_TO_ONE_HUNDRED_NINE_DEGREES_F"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F = Module["_emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F"] = createExportWrapper("emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT = Module["_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT"] = createExportWrapper("emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT = Module["_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT"] = createExportWrapper("emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_LEVEL_WITHIN_1000_FT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT = Module["_emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT"] = createExportWrapper("emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY = Module["_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY"] = createExportWrapper("emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT = Module["_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT"] = createExportWrapper("emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_FEB_MAR_APR_AUG_SEP_OCT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN = Module["_emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN"] = createExportWrapper("emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIVE_TO_NINE_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TEN_TO_FOURTEEN_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTEEN_TO_NINETEEN_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_TO_TWENTY_FOUR_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_TWENTY_FIVE_TO_TWENTY_NINE_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_TO_THIRTY_FOUR_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_THIRTY_FIVE_TO_THIRTY_NINE_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_TO_FORTY_FOUR_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FORTY_FIVE_TO_FORTY_NINE_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_TO_FIFTY_FOUR_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_FIFTY_FIVE_TO_FIFTY_NINE_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_TO_SIXTY_FOUR_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SIXTY_FIVE_TO_SIXTY_NINE_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_TO_SEVENTY_FOUR_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_SEVENTY_FIVE_TO_SEVENTY_NINE_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_TO_EIGHTY_FOUR_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_EIGHTY_FIVE_TO_EIGHTY_NINE_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_TO_NINETY_FOUR_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_NINETY_FIVE_TO_NINETY_NINE_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT = Module["_emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED = Module["_emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED"] = createExportWrapper("emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED = Module["_emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED"] = createExportWrapper("emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT = Module["_emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT = Module["_emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT"] = createExportWrapper("emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE = Module["_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE"] = createExportWrapper("emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE = Module["_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE"] = createExportWrapper("emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TEN_HUNDRED_HOURS_TO_ELEVEN__HUNDRED_FIFTY_NINE"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE = Module["_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE"] = createExportWrapper("emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_TWELVE_HUNDRED_HOURS_TO_THIRTEEN_HUNDRED_FIFTY_NINE"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE = Module["_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE"] = createExportWrapper("emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_FOURTEEN_HUNDRED_HOURS_TO_FIFTEEN_HUNDRED_FIFTY_NINE"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE = Module["_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE"] = createExportWrapper("emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_SIXTEEN_HUNDRED_HOURS_TO_SIXTEEN_HUNDRED_FIFTY_NINE"); +/** @type {function(...*):?} */ +var _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET = Module["_emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET"] = createExportWrapper("emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THREE_THOUSAND_NINEHUNDRED_SIXTY"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SEVEN_THOUSAND_NINEHUNDRED_TWENTY"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TEN_THOUSAND"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTEEN_THOUSAND_EIGHT_HUNDRED_FORTY"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_ONE_THOUSAND_ONE_HUNDRED_TWENTY"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWENTY_FOUR_THOUSAND"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_THRITY_ONE_THOUSAND_SIX_HUNDRED_EIGHTY"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIFTY_THOUSAND"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_TWO_THOUSAND_FIVE_HUNDRED"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_SIXTY_THREE_THOUSAND_THREE_HUNDRED_SIXTY"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_THOUSAND"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_HUNDRED_TWENTY_SIX_THOUSAND_SEVEN_HUNDRED_TWENTY"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THOUSAND"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_TWO_HUNDRED_FIFTY_THREE_THOUSAND_FOUR_HUNDRED_FORTY"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_FIVE_HUNDRED_SIX_THOUSAND_EIGHT_HUNDRED_EIGHTY"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION"); +/** @type {function(...*):?} */ +var _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY = Module["_emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY"] = createExportWrapper("emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY"); +/** @type {function(...*):?} */ +var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES = Module["_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES"] = createExportWrapper("emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES"); +/** @type {function(...*):?} */ +var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE = Module["_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE"] = createExportWrapper("emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FIFTEEN_DEGREES_FROM_UPSLOPE"); +/** @type {function(...*):?} */ +var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE = Module["_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE"] = createExportWrapper("emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_THIRTY_DEGREES_FROM_UPSLOPE"); +/** @type {function(...*):?} */ +var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE = Module["_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE"] = createExportWrapper("emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_FORTY_FIVE_DEGREES_FROM_UPSLOPE"); +/** @type {function(...*):?} */ +var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE = Module["_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE"] = createExportWrapper("emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SIXTY_DEGREES_FROM_UPSLOPE"); +/** @type {function(...*):?} */ +var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE = Module["_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE"] = createExportWrapper("emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_SEVENTY_FIVE_DEGREES_FROM_UPSLOPE"); +/** @type {function(...*):?} */ +var _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES = Module["_emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES"] = createExportWrapper("emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES"); +/** @type {function(...*):?} */ +var _emscripten_enum_BurningCondition_BurningConditionEnum_Low = Module["_emscripten_enum_BurningCondition_BurningConditionEnum_Low"] = createExportWrapper("emscripten_enum_BurningCondition_BurningConditionEnum_Low"); +/** @type {function(...*):?} */ +var _emscripten_enum_BurningCondition_BurningConditionEnum_Moderate = Module["_emscripten_enum_BurningCondition_BurningConditionEnum_Moderate"] = createExportWrapper("emscripten_enum_BurningCondition_BurningConditionEnum_Moderate"); +/** @type {function(...*):?} */ +var _emscripten_enum_BurningCondition_BurningConditionEnum_Extreme = Module["_emscripten_enum_BurningCondition_BurningConditionEnum_Extreme"] = createExportWrapper("emscripten_enum_BurningCondition_BurningConditionEnum_Extreme"); +/** @type {function(...*):?} */ +var _emscripten_enum_SlopeClass_SlopeClassEnum_Flat = Module["_emscripten_enum_SlopeClass_SlopeClassEnum_Flat"] = createExportWrapper("emscripten_enum_SlopeClass_SlopeClassEnum_Flat"); +/** @type {function(...*):?} */ +var _emscripten_enum_SlopeClass_SlopeClassEnum_Moderate = Module["_emscripten_enum_SlopeClass_SlopeClassEnum_Moderate"] = createExportWrapper("emscripten_enum_SlopeClass_SlopeClassEnum_Moderate"); +/** @type {function(...*):?} */ +var _emscripten_enum_SlopeClass_SlopeClassEnum_Steep = Module["_emscripten_enum_SlopeClass_SlopeClassEnum_Steep"] = createExportWrapper("emscripten_enum_SlopeClass_SlopeClassEnum_Steep"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpeedClass_SpeedClassEnum_Light = Module["_emscripten_enum_SpeedClass_SpeedClassEnum_Light"] = createExportWrapper("emscripten_enum_SpeedClass_SpeedClassEnum_Light"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpeedClass_SpeedClassEnum_Moderate = Module["_emscripten_enum_SpeedClass_SpeedClassEnum_Moderate"] = createExportWrapper("emscripten_enum_SpeedClass_SpeedClassEnum_Moderate"); +/** @type {function(...*):?} */ +var _emscripten_enum_SpeedClass_SpeedClassEnum_High = Module["_emscripten_enum_SpeedClass_SpeedClassEnum_High"] = createExportWrapper("emscripten_enum_SpeedClass_SpeedClassEnum_High"); +/** @type {function(...*):?} */ +var _emscripten_enum_SafetyCondition_SafetyConditionEnum_Low = Module["_emscripten_enum_SafetyCondition_SafetyConditionEnum_Low"] = createExportWrapper("emscripten_enum_SafetyCondition_SafetyConditionEnum_Low"); +/** @type {function(...*):?} */ +var _emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate = Module["_emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate"] = createExportWrapper("emscripten_enum_SafetyCondition_SafetyConditionEnum_Moderate"); +/** @type {function(...*):?} */ +var _emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme = Module["_emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme"] = createExportWrapper("emscripten_enum_SafetyCondition_SafetyConditionEnum_Extreme"); +/** @type {function(...*):?} */ +var ___cxa_free_exception = createExportWrapper("__cxa_free_exception"); +/** @type {function(...*):?} */ +var ___errno_location = createExportWrapper("__errno_location"); +/** @type {function(...*):?} */ +var _malloc = Module["_malloc"] = createExportWrapper("malloc"); +/** @type {function(...*):?} */ +var _free = Module["_free"] = createExportWrapper("free"); +/** @type {function(...*):?} */ +var _setThrew = createExportWrapper("setThrew"); +/** @type {function(...*):?} */ +var setTempRet0 = createExportWrapper("setTempRet0"); +/** @type {function(...*):?} */ +var _emscripten_stack_init = function() { + return (_emscripten_stack_init = Module["asm"]["emscripten_stack_init"]).apply(null, arguments); +}; + +/** @type {function(...*):?} */ +var _emscripten_stack_get_free = function() { + return (_emscripten_stack_get_free = Module["asm"]["emscripten_stack_get_free"]).apply(null, arguments); +}; + +/** @type {function(...*):?} */ +var _emscripten_stack_get_base = function() { + return (_emscripten_stack_get_base = Module["asm"]["emscripten_stack_get_base"]).apply(null, arguments); +}; + +/** @type {function(...*):?} */ +var _emscripten_stack_get_end = function() { + return (_emscripten_stack_get_end = Module["asm"]["emscripten_stack_get_end"]).apply(null, arguments); +}; + +/** @type {function(...*):?} */ +var stackSave = createExportWrapper("stackSave"); +/** @type {function(...*):?} */ +var stackRestore = createExportWrapper("stackRestore"); +/** @type {function(...*):?} */ +var stackAlloc = createExportWrapper("stackAlloc"); +/** @type {function(...*):?} */ +var _emscripten_stack_get_current = function() { + return (_emscripten_stack_get_current = Module["asm"]["emscripten_stack_get_current"]).apply(null, arguments); +}; + +/** @type {function(...*):?} */ +var ___get_exception_message = Module["___get_exception_message"] = createExportWrapper("__get_exception_message"); +/** @type {function(...*):?} */ +var ___cxa_can_catch = createExportWrapper("__cxa_can_catch"); +/** @type {function(...*):?} */ +var ___cxa_is_pointer_type = createExportWrapper("__cxa_is_pointer_type"); +/** @type {function(...*):?} */ +var dynCall_jiji = Module["dynCall_jiji"] = createExportWrapper("dynCall_jiji"); +var ___start_em_js = Module['___start_em_js'] = 119496; +var ___stop_em_js = Module['___stop_em_js'] = 119594; function invoke_vii(index,a1,a2) { var sp = stackSave(); try { @@ -7391,6 +7024,17 @@ function invoke_vi(index,a1) { } } +function invoke_iiii(index,a1,a2,a3) { + var sp = stackSave(); + try { + return getWasmTableEntry(index)(a1,a2,a3); + } catch(e) { + stackRestore(sp); + if (!(e instanceof EmscriptenEH)) throw e; + _setThrew(1, 0); + } +} + function invoke_iii(index,a1,a2) { var sp = stackSave(); try { @@ -7457,10 +7101,10 @@ function invoke_diii(index,a1,a2,a3) { } } -function invoke_iiiii(index,a1,a2,a3,a4) { +function invoke_viiii(index,a1,a2,a3,a4) { var sp = stackSave(); try { - return getWasmTableEntry(index)(a1,a2,a3,a4); + getWasmTableEntry(index)(a1,a2,a3,a4); } catch(e) { stackRestore(sp); if (!(e instanceof EmscriptenEH)) throw e; @@ -7468,10 +7112,10 @@ function invoke_iiiii(index,a1,a2,a3,a4) { } } -function invoke_iiiiii(index,a1,a2,a3,a4,a5) { +function invoke_iiiii(index,a1,a2,a3,a4) { var sp = stackSave(); try { - return getWasmTableEntry(index)(a1,a2,a3,a4,a5); + return getWasmTableEntry(index)(a1,a2,a3,a4); } catch(e) { stackRestore(sp); if (!(e instanceof EmscriptenEH)) throw e; @@ -7479,10 +7123,10 @@ function invoke_iiiiii(index,a1,a2,a3,a4,a5) { } } -function invoke_viiii(index,a1,a2,a3,a4) { +function invoke_iiiiii(index,a1,a2,a3,a4,a5) { var sp = stackSave(); try { - getWasmTableEntry(index)(a1,a2,a3,a4); + return getWasmTableEntry(index)(a1,a2,a3,a4,a5); } catch(e) { stackRestore(sp); if (!(e instanceof EmscriptenEH)) throw e; @@ -7501,17 +7145,6 @@ function invoke_viiiii(index,a1,a2,a3,a4,a5) { } } -function invoke_iiii(index,a1,a2,a3) { - var sp = stackSave(); - try { - return getWasmTableEntry(index)(a1,a2,a3); - } catch(e) { - stackRestore(sp); - if (!(e instanceof EmscriptenEH)) throw e; - _setThrew(1, 0); - } -} - function invoke_viiiddddd(index,a1,a2,a3,a4,a5,a6,a7,a8) { var sp = stackSave(); try { @@ -7622,23 +7255,290 @@ function invoke_viiiiiiiiiiiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12 } } -function invoke_v(index) { - var sp = stackSave(); - try { - getWasmTableEntry(index)(); - } catch(e) { - stackRestore(sp); - if (!(e instanceof EmscriptenEH)) throw e; - _setThrew(1, 0); - } -} +function invoke_v(index) { + var sp = stackSave(); + try { + getWasmTableEntry(index)(); + } catch(e) { + stackRestore(sp); + if (!(e instanceof EmscriptenEH)) throw e; + _setThrew(1, 0); + } +} + + +// include: postamble.js +// === Auto-generated postamble setup entry stuff === + +Module["UTF8ToString"] = UTF8ToString; +Module["ccall"] = ccall; +Module["cwrap"] = cwrap; +Module["addFunction"] = addFunction; +Module["allocateUTF8"] = allocateUTF8; +var missingLibrarySymbols = [ + 'stringToNewUTF8', + 'exitJS', + 'inetPton4', + 'inetNtop4', + 'inetPton6', + 'inetNtop6', + 'readSockaddr', + 'writeSockaddr', + 'getHostByName', + 'traverseStack', + 'convertPCtoSourceLocation', + 'readEmAsmArgs', + 'jstoi_q', + 'jstoi_s', + 'getExecutableName', + 'listenOnce', + 'autoResumeAudioContext', + 'dynCallLegacy', + 'getDynCaller', + 'dynCall', + 'handleException', + 'runtimeKeepalivePush', + 'runtimeKeepalivePop', + 'callUserCallback', + 'maybeExit', + 'safeSetTimeout', + 'asmjsMangle', + 'HandleAllocator', + 'getNativeTypeSize', + 'STACK_SIZE', + 'STACK_ALIGN', + 'POINTER_SIZE', + 'ASSERTIONS', + 'writeI53ToI64', + 'writeI53ToI64Clamped', + 'writeI53ToI64Signaling', + 'writeI53ToU64Clamped', + 'writeI53ToU64Signaling', + 'readI53FromI64', + 'readI53FromU64', + 'convertI32PairToI53', + 'convertU32PairToI53', + 'removeFunction', + 'reallyNegative', + 'unSign', + 'strLen', + 'reSign', + 'formatString', + 'intArrayToString', + 'AsciiToString', + 'stringToAscii', + 'UTF16ToString', + 'stringToUTF16', + 'lengthBytesUTF16', + 'UTF32ToString', + 'stringToUTF32', + 'lengthBytesUTF32', + 'allocateUTF8OnStack', + 'writeStringToMemory', + 'writeAsciiToMemory', + 'getSocketFromFD', + 'getSocketAddress', + 'registerKeyEventCallback', + 'maybeCStringToJsString', + 'findEventTarget', + 'findCanvasEventTarget', + 'getBoundingClientRect', + 'fillMouseEventData', + 'registerMouseEventCallback', + 'registerWheelEventCallback', + 'registerUiEventCallback', + 'registerFocusEventCallback', + 'fillDeviceOrientationEventData', + 'registerDeviceOrientationEventCallback', + 'fillDeviceMotionEventData', + 'registerDeviceMotionEventCallback', + 'screenOrientation', + 'fillOrientationChangeEventData', + 'registerOrientationChangeEventCallback', + 'fillFullscreenChangeEventData', + 'registerFullscreenChangeEventCallback', + 'JSEvents_requestFullscreen', + 'JSEvents_resizeCanvasForFullscreen', + 'registerRestoreOldStyle', + 'hideEverythingExceptGivenElement', + 'restoreHiddenElements', + 'setLetterbox', + 'softFullscreenResizeWebGLRenderTarget', + 'doRequestFullscreen', + 'fillPointerlockChangeEventData', + 'registerPointerlockChangeEventCallback', + 'registerPointerlockErrorEventCallback', + 'requestPointerLock', + 'fillVisibilityChangeEventData', + 'registerVisibilityChangeEventCallback', + 'registerTouchEventCallback', + 'fillGamepadEventData', + 'registerGamepadEventCallback', + 'registerBeforeUnloadEventCallback', + 'fillBatteryEventData', + 'battery', + 'registerBatteryEventCallback', + 'setCanvasElementSize', + 'getCanvasElementSize', + 'jsStackTrace', + 'stackTrace', + 'getEnvStrings', + 'checkWasiClock', + 'createDyncallWrapper', + 'setImmediateWrapped', + 'clearImmediateWrapped', + 'polyfillSetImmediate', + 'getPromise', + 'makePromise', + 'makePromiseCallback', + 'setMainLoop', + '_setNetworkCallback', + 'heapObjectForWebGLType', + 'heapAccessShiftForWebGLHeap', + 'emscriptenWebGLGet', + 'computeUnpackAlignedImageSize', + 'emscriptenWebGLGetTexPixelData', + 'emscriptenWebGLGetUniform', + 'webglGetUniformLocation', + 'webglPrepareUniformLocationsBeforeFirstUse', + 'webglGetLeftBracePos', + 'emscriptenWebGLGetVertexAttrib', + 'writeGLArray', + 'SDL_unicode', + 'SDL_ttfContext', + 'SDL_audio', + 'GLFW_Window', + 'runAndAbortIfError', + 'ALLOC_NORMAL', + 'ALLOC_STACK', + 'allocate', +]; +missingLibrarySymbols.forEach(missingLibrarySymbol) + +var unexportedSymbols = [ + 'run', + 'UTF8ArrayToString', + 'stringToUTF8Array', + 'stringToUTF8', + 'lengthBytesUTF8', + 'addOnPreRun', + 'addOnInit', + 'addOnPreMain', + 'addOnExit', + 'addOnPostRun', + 'addRunDependency', + 'removeRunDependency', + 'FS_createFolder', + 'FS_createPath', + 'FS_createDataFile', + 'FS_createPreloadedFile', + 'FS_createLazyFile', + 'FS_createLink', + 'FS_createDevice', + 'FS_unlink', + 'out', + 'err', + 'callMain', + 'abort', + 'keepRuntimeAlive', + 'wasmMemory', + 'stackAlloc', + 'stackSave', + 'stackRestore', + 'getTempRet0', + 'setTempRet0', + 'writeStackCookie', + 'checkStackCookie', + 'ptrToString', + 'zeroMemory', + 'getHeapMax', + 'emscripten_realloc_buffer', + 'ENV', + 'ERRNO_CODES', + 'ERRNO_MESSAGES', + 'setErrNo', + 'DNS', + 'Protocols', + 'Sockets', + 'getRandomDevice', + 'timers', + 'warnOnce', + 'UNWIND_CACHE', + 'readEmAsmArgsArray', + 'asyncLoad', + 'alignMemory', + 'mmapAlloc', + 'convertI32PairToI53Checked', + 'getCFunc', + 'uleb128Encode', + 'sigToWasmTypes', + 'generateFuncType', + 'convertJsFunctionToWasm', + 'freeTableIndexes', + 'functionsInTableMap', + 'getEmptyTableSlot', + 'updateTableMap', + 'getFunctionAddress', + 'setValue', + 'getValue', + 'PATH', + 'PATH_FS', + 'intArrayFromString', + 'UTF16Decoder', + 'writeArrayToMemory', + 'SYSCALLS', + 'JSEvents', + 'specialHTMLTargets', + 'currentFullscreenStrategy', + 'restoreOldWindowedStyle', + 'demangle', + 'demangleAll', + 'ExitStatus', + 'doReadv', + 'doWritev', + 'dlopenMissingError', + 'promiseMap', + 'uncaughtExceptionCount', + 'exceptionLast', + 'exceptionCaught', + 'ExceptionInfo', + 'exception_addRef', + 'exception_decRef', + 'getExceptionMessageCommon', + 'incrementExceptionRefcount', + 'decrementExceptionRefcount', + 'getExceptionMessage', + 'Browser', + 'wget', + 'FS', + 'MEMFS', + 'TTY', + 'PIPEFS', + 'SOCKFS', + 'tempFixedLengthArray', + 'miniTempWebGLFloatBuffers', + 'GL', + 'AL', + 'SDL', + 'SDL_gfx', + 'GLUT', + 'EGL', + 'GLFW', + 'GLEW', + 'IDBStore', +]; +unexportedSymbols.forEach(unexportedRuntimeSymbol); -// include: postamble.js -// === Auto-generated postamble setup entry stuff === var calledRun; +dependenciesFulfilled = function runCaller() { + // If run has never been called, and we should call run (INVOKE_RUN is true, and Module.noInitialRun is not false) + if (!calledRun) run(); + if (!calledRun) dependenciesFulfilled = runCaller; // try this again later, after new deps are fulfilled +}; + function stackCheckInit() { // This is normally called automatically during __wasm_call_ctors but need to // get these values before even running any of the ctors so we call it redundantly @@ -7651,24 +7551,22 @@ function stackCheckInit() { function run() { if (runDependencies > 0) { - dependenciesFulfilled = run; return; } - stackCheckInit(); + stackCheckInit(); preRun(); // a preRun added a dependency, run will be called later if (runDependencies > 0) { - dependenciesFulfilled = run; return; } function doRun() { // run may have just been called through dependencies being fulfilled just in this very frame, // or while the async setStatus time below was happening - assert(!calledRun); + if (calledRun) return; calledRun = true; Module['calledRun'] = true; @@ -7676,8 +7574,7 @@ function run() { initRuntime(); - Module['onRuntimeInitialized']?.(); - consumedModuleProp('onRuntimeInitialized'); + if (Module['onRuntimeInitialized']) Module['onRuntimeInitialized'](); assert(!Module['_main'], 'compiled without a main, but one is present. if you added it from JS, use Module["onRuntimeInitialized"]'); @@ -7686,8 +7583,10 @@ function run() { if (Module['setStatus']) { Module['setStatus']('Running...'); - setTimeout(() => { - setTimeout(() => Module['setStatus'](''), 1); + setTimeout(function() { + setTimeout(function() { + Module['setStatus'](''); + }, 1); doRun(); }, 1); } else @@ -7718,13 +7617,13 @@ function checkUnflushedContent() { try { // it doesn't matter if it fails _fflush(0); // also flush in the JS FS layer - ['stdout', 'stderr'].forEach((name) => { + ['stdout', 'stderr'].forEach(function(name) { var info = FS.analyzePath('/dev/' + name); if (!info) return; var stream = info.object; var rdev = stream.rdev; var tty = TTY.ttys[rdev]; - if (tty?.output?.length) { + if (tty && tty.output && tty.output.length) { has = true; } }); @@ -7732,26 +7631,22 @@ function checkUnflushedContent() { out = oldOut; err = oldErr; if (has) { - warnOnce('stdio streams had content in them that was not flushed. you should set EXIT_RUNTIME to 1 (see the Emscripten FAQ), or make sure to emit a newline when you printf etc.'); + warnOnce('stdio streams had content in them that was not flushed. you should set EXIT_RUNTIME to 1 (see the FAQ), or make sure to emit a newline when you printf etc.'); } } -function preInit() { - if (Module['preInit']) { - if (typeof Module['preInit'] == 'function') Module['preInit'] = [Module['preInit']]; - while (Module['preInit'].length > 0) { - Module['preInit'].shift()(); - } +if (Module['preInit']) { + if (typeof Module['preInit'] == 'function') Module['preInit'] = [Module['preInit']]; + while (Module['preInit'].length > 0) { + Module['preInit'].pop()(); } - consumedModuleProp('preInit'); } -preInit(); run(); -// end include: postamble.js -// include: /Users/rsheperd/code/sig/behave-app/behave-lib/include/js/glue.js +// end include: postamble.js +// include: /home/kcheung/work/code/behave-polylith/behave-lib/include/js/glue.js // Bindings utilities @@ -7828,15 +7723,15 @@ var ensureCache = { temps: [], // extra allocations needed: 0, // the total size we need next time - prepare() { + prepare: function() { if (ensureCache.needed) { // clear the temps for (var i = 0; i < ensureCache.temps.length; i++) { - Module['_webidl_free'](ensureCache.temps[i]); + Module['_free'](ensureCache.temps[i]); } ensureCache.temps.length = 0; // prepare to allocate a bigger buffer - Module['_webidl_free'](ensureCache.buffer); + Module['_free'](ensureCache.buffer); ensureCache.buffer = 0; ensureCache.size += ensureCache.needed; // clean up @@ -7844,22 +7739,22 @@ var ensureCache = { } if (!ensureCache.buffer) { // happens first time, or when we need to grow ensureCache.size += 128; // heuristic, avoid many small grow events - ensureCache.buffer = Module['_webidl_malloc'](ensureCache.size); + ensureCache.buffer = Module['_malloc'](ensureCache.size); assert(ensureCache.buffer); } ensureCache.pos = 0; }, - alloc(array, view) { + alloc: function(array, view) { assert(ensureCache.buffer); var bytes = view.BYTES_PER_ELEMENT; var len = array.length * bytes; - len = alignMemory(len, 8); // keep things aligned to 8 byte boundaries + len = (len + 7) & -8; // keep things aligned to 8 byte boundaries var ret; if (ensureCache.pos + len >= ensureCache.size) { // we failed to allocate in the buffer, ensureCache time around :( assert(len > 0); // null terminator, at least ensureCache.needed += len; - ret = Module['_webidl_malloc'](len); + ret = Module['_malloc'](len); ensureCache.temps.push(ret); } else { // we can allocate in the buffer @@ -7868,8 +7763,14 @@ var ensureCache = { } return ret; }, - copy(array, view, offset) { - offset /= view.BYTES_PER_ELEMENT; + copy: function(array, view, offset) { + offset >>>= 0; + var bytes = view.BYTES_PER_ELEMENT; + switch (bytes) { + case 2: offset >>>= 1; break; + case 4: offset >>>= 2; break; + case 8: offset >>>= 3; break; + } for (var i = 0; i < array.length; i++) { view[offset + i] = array[i]; } @@ -7886,7 +7787,6 @@ function ensureString(value) { } return value; } - /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureInt8(value) { if (typeof value === 'object') { @@ -7896,7 +7796,6 @@ function ensureInt8(value) { } return value; } - /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureInt16(value) { if (typeof value === 'object') { @@ -7906,7 +7805,6 @@ function ensureInt16(value) { } return value; } - /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureInt32(value) { if (typeof value === 'object') { @@ -7916,7 +7814,6 @@ function ensureInt32(value) { } return value; } - /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureFloat32(value) { if (typeof value === 'object') { @@ -7926,7 +7823,6 @@ function ensureFloat32(value) { } return value; } - /** @suppress {duplicate} (TODO: avoid emitting this multiple times, it is redundant) */ function ensureFloat64(value) { if (typeof value === 'object') { @@ -7937,906 +7833,771 @@ function ensureFloat64(value) { return value; } -// Interface: VoidPtr - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function VoidPtr() { throw "cannot construct a VoidPtr, no constructor in IDL" } +// VoidPtr +/** @suppress {undefinedVars, duplicate} @this{Object} */function VoidPtr() { throw "cannot construct a VoidPtr, no constructor in IDL" } VoidPtr.prototype = Object.create(WrapperObject.prototype); VoidPtr.prototype.constructor = VoidPtr; VoidPtr.prototype.__class__ = VoidPtr; VoidPtr.__cache__ = {}; Module['VoidPtr'] = VoidPtr; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -VoidPtr.prototype['__destroy__'] = VoidPtr.prototype.__destroy__ = function() { + VoidPtr.prototype['__destroy__'] = VoidPtr.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_VoidPtr___destroy___0(self); }; - -// Interface: DoublePtr - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function DoublePtr() { throw "cannot construct a DoublePtr, no constructor in IDL" } +// DoublePtr +/** @suppress {undefinedVars, duplicate} @this{Object} */function DoublePtr() { throw "cannot construct a DoublePtr, no constructor in IDL" } DoublePtr.prototype = Object.create(WrapperObject.prototype); DoublePtr.prototype.constructor = DoublePtr; DoublePtr.prototype.__class__ = DoublePtr; DoublePtr.__cache__ = {}; Module['DoublePtr'] = DoublePtr; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DoublePtr.prototype['__destroy__'] = DoublePtr.prototype.__destroy__ = function() { + DoublePtr.prototype['__destroy__'] = DoublePtr.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_DoublePtr___destroy___0(self); }; - -// Interface: BoolVector - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function BoolVector(size) { +// BoolVector +/** @suppress {undefinedVars, duplicate} @this{Object} */function BoolVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_BoolVector_BoolVector_0(); getCache(BoolVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_BoolVector_BoolVector_1(size); getCache(BoolVector)[this.ptr] = this; -}; - +};; BoolVector.prototype = Object.create(WrapperObject.prototype); BoolVector.prototype.constructor = BoolVector; BoolVector.prototype.__class__ = BoolVector; BoolVector.__cache__ = {}; Module['BoolVector'] = BoolVector; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -BoolVector.prototype['resize'] = BoolVector.prototype.resize = function(size) { + +BoolVector.prototype['resize'] = BoolVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_BoolVector_resize_1(self, size); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -BoolVector.prototype['get'] = BoolVector.prototype.get = function(i) { +BoolVector.prototype['get'] = BoolVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return !!(_emscripten_bind_BoolVector_get_1(self, i)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -BoolVector.prototype['set'] = BoolVector.prototype.set = function(i, val) { +BoolVector.prototype['set'] = BoolVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_BoolVector_set_2(self, i, val); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -BoolVector.prototype['size'] = BoolVector.prototype.size = function() { +BoolVector.prototype['size'] = BoolVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_BoolVector_size_0(self); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -BoolVector.prototype['__destroy__'] = BoolVector.prototype.__destroy__ = function() { + BoolVector.prototype['__destroy__'] = BoolVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_BoolVector___destroy___0(self); }; - -// Interface: CharVector - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function CharVector(size) { +// CharVector +/** @suppress {undefinedVars, duplicate} @this{Object} */function CharVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_CharVector_CharVector_0(); getCache(CharVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_CharVector_CharVector_1(size); getCache(CharVector)[this.ptr] = this; -}; - +};; CharVector.prototype = Object.create(WrapperObject.prototype); CharVector.prototype.constructor = CharVector; CharVector.prototype.__class__ = CharVector; CharVector.__cache__ = {}; Module['CharVector'] = CharVector; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -CharVector.prototype['resize'] = CharVector.prototype.resize = function(size) { + +CharVector.prototype['resize'] = CharVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_CharVector_resize_1(self, size); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -CharVector.prototype['get'] = CharVector.prototype.get = function(i) { +CharVector.prototype['get'] = CharVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return _emscripten_bind_CharVector_get_1(self, i); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -CharVector.prototype['set'] = CharVector.prototype.set = function(i, val) { +CharVector.prototype['set'] = CharVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_CharVector_set_2(self, i, val); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -CharVector.prototype['size'] = CharVector.prototype.size = function() { +CharVector.prototype['size'] = CharVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_CharVector_size_0(self); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -CharVector.prototype['__destroy__'] = CharVector.prototype.__destroy__ = function() { + CharVector.prototype['__destroy__'] = CharVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_CharVector___destroy___0(self); }; - -// Interface: IntVector - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function IntVector(size) { +// IntVector +/** @suppress {undefinedVars, duplicate} @this{Object} */function IntVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_IntVector_IntVector_0(); getCache(IntVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_IntVector_IntVector_1(size); getCache(IntVector)[this.ptr] = this; -}; - +};; IntVector.prototype = Object.create(WrapperObject.prototype); IntVector.prototype.constructor = IntVector; IntVector.prototype.__class__ = IntVector; IntVector.__cache__ = {}; Module['IntVector'] = IntVector; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -IntVector.prototype['resize'] = IntVector.prototype.resize = function(size) { + +IntVector.prototype['resize'] = IntVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_IntVector_resize_1(self, size); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -IntVector.prototype['get'] = IntVector.prototype.get = function(i) { +IntVector.prototype['get'] = IntVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return _emscripten_bind_IntVector_get_1(self, i); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -IntVector.prototype['set'] = IntVector.prototype.set = function(i, val) { +IntVector.prototype['set'] = IntVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_IntVector_set_2(self, i, val); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -IntVector.prototype['size'] = IntVector.prototype.size = function() { +IntVector.prototype['size'] = IntVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_IntVector_size_0(self); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -IntVector.prototype['__destroy__'] = IntVector.prototype.__destroy__ = function() { + IntVector.prototype['__destroy__'] = IntVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_IntVector___destroy___0(self); }; - -// Interface: DoubleVector - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function DoubleVector(size) { +// DoubleVector +/** @suppress {undefinedVars, duplicate} @this{Object} */function DoubleVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_DoubleVector_DoubleVector_0(); getCache(DoubleVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_DoubleVector_DoubleVector_1(size); getCache(DoubleVector)[this.ptr] = this; -}; - +};; DoubleVector.prototype = Object.create(WrapperObject.prototype); DoubleVector.prototype.constructor = DoubleVector; DoubleVector.prototype.__class__ = DoubleVector; DoubleVector.__cache__ = {}; Module['DoubleVector'] = DoubleVector; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DoubleVector.prototype['resize'] = DoubleVector.prototype.resize = function(size) { + +DoubleVector.prototype['resize'] = DoubleVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_DoubleVector_resize_1(self, size); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DoubleVector.prototype['get'] = DoubleVector.prototype.get = function(i) { +DoubleVector.prototype['get'] = DoubleVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return _emscripten_bind_DoubleVector_get_1(self, i); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DoubleVector.prototype['set'] = DoubleVector.prototype.set = function(i, val) { +DoubleVector.prototype['set'] = DoubleVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_DoubleVector_set_2(self, i, val); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DoubleVector.prototype['size'] = DoubleVector.prototype.size = function() { +DoubleVector.prototype['size'] = DoubleVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_DoubleVector_size_0(self); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DoubleVector.prototype['__destroy__'] = DoubleVector.prototype.__destroy__ = function() { + DoubleVector.prototype['__destroy__'] = DoubleVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_DoubleVector___destroy___0(self); }; - -// Interface: SpeciesMasterTableRecordVector - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SpeciesMasterTableRecordVector(size) { +// SpeciesMasterTableRecordVector +/** @suppress {undefinedVars, duplicate} @this{Object} */function SpeciesMasterTableRecordVector(size) { if (size && typeof size === 'object') size = size.ptr; if (size === undefined) { this.ptr = _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_0(); getCache(SpeciesMasterTableRecordVector)[this.ptr] = this;return } this.ptr = _emscripten_bind_SpeciesMasterTableRecordVector_SpeciesMasterTableRecordVector_1(size); getCache(SpeciesMasterTableRecordVector)[this.ptr] = this; -}; - +};; SpeciesMasterTableRecordVector.prototype = Object.create(WrapperObject.prototype); SpeciesMasterTableRecordVector.prototype.constructor = SpeciesMasterTableRecordVector; SpeciesMasterTableRecordVector.prototype.__class__ = SpeciesMasterTableRecordVector; SpeciesMasterTableRecordVector.__cache__ = {}; Module['SpeciesMasterTableRecordVector'] = SpeciesMasterTableRecordVector; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTableRecordVector.prototype['resize'] = SpeciesMasterTableRecordVector.prototype.resize = function(size) { + +SpeciesMasterTableRecordVector.prototype['resize'] = SpeciesMasterTableRecordVector.prototype.resize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(size) { var self = this.ptr; if (size && typeof size === 'object') size = size.ptr; _emscripten_bind_SpeciesMasterTableRecordVector_resize_1(self, size); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTableRecordVector.prototype['get'] = SpeciesMasterTableRecordVector.prototype.get = function(i) { +SpeciesMasterTableRecordVector.prototype['get'] = SpeciesMasterTableRecordVector.prototype.get = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; return wrapPointer(_emscripten_bind_SpeciesMasterTableRecordVector_get_1(self, i), SpeciesMasterTableRecord); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTableRecordVector.prototype['set'] = SpeciesMasterTableRecordVector.prototype.set = function(i, val) { +SpeciesMasterTableRecordVector.prototype['set'] = SpeciesMasterTableRecordVector.prototype.set = /** @suppress {undefinedVars, duplicate} @this{Object} */function(i, val) { var self = this.ptr; if (i && typeof i === 'object') i = i.ptr; if (val && typeof val === 'object') val = val.ptr; _emscripten_bind_SpeciesMasterTableRecordVector_set_2(self, i, val); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTableRecordVector.prototype['size'] = SpeciesMasterTableRecordVector.prototype.size = function() { +SpeciesMasterTableRecordVector.prototype['size'] = SpeciesMasterTableRecordVector.prototype.size = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SpeciesMasterTableRecordVector_size_0(self); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTableRecordVector.prototype['__destroy__'] = SpeciesMasterTableRecordVector.prototype.__destroy__ = function() { + SpeciesMasterTableRecordVector.prototype['__destroy__'] = SpeciesMasterTableRecordVector.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SpeciesMasterTableRecordVector___destroy___0(self); }; - -// Interface: AreaUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function AreaUnits() { throw "cannot construct a AreaUnits, no constructor in IDL" } +// AreaUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function AreaUnits() { throw "cannot construct a AreaUnits, no constructor in IDL" } AreaUnits.prototype = Object.create(WrapperObject.prototype); AreaUnits.prototype.constructor = AreaUnits; AreaUnits.prototype.__class__ = AreaUnits; AreaUnits.__cache__ = {}; Module['AreaUnits'] = AreaUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -AreaUnits.prototype['toBaseUnits'] = AreaUnits.prototype.toBaseUnits = function(value, units) { - if (value && typeof value === 'object') value = value.ptr; - if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_AreaUnits_toBaseUnits_2(value, units); -}; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -AreaUnits.prototype['fromBaseUnits'] = AreaUnits.prototype.fromBaseUnits = function(value, units) { +AreaUnits.prototype['toBaseUnits'] = AreaUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_AreaUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_AreaUnits_toBaseUnits_2(self, value, units); +};; +AreaUnits.prototype['fromBaseUnits'] = AreaUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; + if (value && typeof value === 'object') value = value.ptr; + if (units && typeof units === 'object') units = units.ptr; + return _emscripten_bind_AreaUnits_fromBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -AreaUnits.prototype['__destroy__'] = AreaUnits.prototype.__destroy__ = function() { + AreaUnits.prototype['__destroy__'] = AreaUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_AreaUnits___destroy___0(self); }; - -// Interface: BasalAreaUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function BasalAreaUnits() { throw "cannot construct a BasalAreaUnits, no constructor in IDL" } +// BasalAreaUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function BasalAreaUnits() { throw "cannot construct a BasalAreaUnits, no constructor in IDL" } BasalAreaUnits.prototype = Object.create(WrapperObject.prototype); BasalAreaUnits.prototype.constructor = BasalAreaUnits; BasalAreaUnits.prototype.__class__ = BasalAreaUnits; BasalAreaUnits.__cache__ = {}; Module['BasalAreaUnits'] = BasalAreaUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -BasalAreaUnits.prototype['toBaseUnits'] = BasalAreaUnits.prototype.toBaseUnits = function(value, units) { + +BasalAreaUnits.prototype['toBaseUnits'] = BasalAreaUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_BasalAreaUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_BasalAreaUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -BasalAreaUnits.prototype['fromBaseUnits'] = BasalAreaUnits.prototype.fromBaseUnits = function(value, units) { +BasalAreaUnits.prototype['fromBaseUnits'] = BasalAreaUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_BasalAreaUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_BasalAreaUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -BasalAreaUnits.prototype['__destroy__'] = BasalAreaUnits.prototype.__destroy__ = function() { + BasalAreaUnits.prototype['__destroy__'] = BasalAreaUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_BasalAreaUnits___destroy___0(self); }; - -// Interface: FractionUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function FractionUnits() { throw "cannot construct a FractionUnits, no constructor in IDL" } +// FractionUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function FractionUnits() { throw "cannot construct a FractionUnits, no constructor in IDL" } FractionUnits.prototype = Object.create(WrapperObject.prototype); FractionUnits.prototype.constructor = FractionUnits; FractionUnits.prototype.__class__ = FractionUnits; FractionUnits.__cache__ = {}; Module['FractionUnits'] = FractionUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FractionUnits.prototype['toBaseUnits'] = FractionUnits.prototype.toBaseUnits = function(value, units) { + +FractionUnits.prototype['toBaseUnits'] = FractionUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_FractionUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_FractionUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FractionUnits.prototype['fromBaseUnits'] = FractionUnits.prototype.fromBaseUnits = function(value, units) { +FractionUnits.prototype['fromBaseUnits'] = FractionUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_FractionUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_FractionUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FractionUnits.prototype['__destroy__'] = FractionUnits.prototype.__destroy__ = function() { + FractionUnits.prototype['__destroy__'] = FractionUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_FractionUnits___destroy___0(self); }; - -// Interface: LengthUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function LengthUnits() { throw "cannot construct a LengthUnits, no constructor in IDL" } +// LengthUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function LengthUnits() { throw "cannot construct a LengthUnits, no constructor in IDL" } LengthUnits.prototype = Object.create(WrapperObject.prototype); LengthUnits.prototype.constructor = LengthUnits; LengthUnits.prototype.__class__ = LengthUnits; LengthUnits.__cache__ = {}; Module['LengthUnits'] = LengthUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -LengthUnits.prototype['toBaseUnits'] = LengthUnits.prototype.toBaseUnits = function(value, units) { + +LengthUnits.prototype['toBaseUnits'] = LengthUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_LengthUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_LengthUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -LengthUnits.prototype['fromBaseUnits'] = LengthUnits.prototype.fromBaseUnits = function(value, units) { +LengthUnits.prototype['fromBaseUnits'] = LengthUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_LengthUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_LengthUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -LengthUnits.prototype['__destroy__'] = LengthUnits.prototype.__destroy__ = function() { + LengthUnits.prototype['__destroy__'] = LengthUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_LengthUnits___destroy___0(self); }; - -// Interface: LoadingUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function LoadingUnits() { throw "cannot construct a LoadingUnits, no constructor in IDL" } +// LoadingUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function LoadingUnits() { throw "cannot construct a LoadingUnits, no constructor in IDL" } LoadingUnits.prototype = Object.create(WrapperObject.prototype); LoadingUnits.prototype.constructor = LoadingUnits; LoadingUnits.prototype.__class__ = LoadingUnits; LoadingUnits.__cache__ = {}; Module['LoadingUnits'] = LoadingUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -LoadingUnits.prototype['toBaseUnits'] = LoadingUnits.prototype.toBaseUnits = function(value, units) { + +LoadingUnits.prototype['toBaseUnits'] = LoadingUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_LoadingUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_LoadingUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -LoadingUnits.prototype['fromBaseUnits'] = LoadingUnits.prototype.fromBaseUnits = function(value, units) { +LoadingUnits.prototype['fromBaseUnits'] = LoadingUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_LoadingUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_LoadingUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -LoadingUnits.prototype['__destroy__'] = LoadingUnits.prototype.__destroy__ = function() { + LoadingUnits.prototype['__destroy__'] = LoadingUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_LoadingUnits___destroy___0(self); }; - -// Interface: SurfaceAreaToVolumeUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SurfaceAreaToVolumeUnits() { throw "cannot construct a SurfaceAreaToVolumeUnits, no constructor in IDL" } +// SurfaceAreaToVolumeUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function SurfaceAreaToVolumeUnits() { throw "cannot construct a SurfaceAreaToVolumeUnits, no constructor in IDL" } SurfaceAreaToVolumeUnits.prototype = Object.create(WrapperObject.prototype); SurfaceAreaToVolumeUnits.prototype.constructor = SurfaceAreaToVolumeUnits; SurfaceAreaToVolumeUnits.prototype.__class__ = SurfaceAreaToVolumeUnits; SurfaceAreaToVolumeUnits.__cache__ = {}; Module['SurfaceAreaToVolumeUnits'] = SurfaceAreaToVolumeUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SurfaceAreaToVolumeUnits.prototype['toBaseUnits'] = SurfaceAreaToVolumeUnits.prototype.toBaseUnits = function(value, units) { + +SurfaceAreaToVolumeUnits.prototype['toBaseUnits'] = SurfaceAreaToVolumeUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_SurfaceAreaToVolumeUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SurfaceAreaToVolumeUnits.prototype['fromBaseUnits'] = SurfaceAreaToVolumeUnits.prototype.fromBaseUnits = function(value, units) { +SurfaceAreaToVolumeUnits.prototype['fromBaseUnits'] = SurfaceAreaToVolumeUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_SurfaceAreaToVolumeUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SurfaceAreaToVolumeUnits.prototype['__destroy__'] = SurfaceAreaToVolumeUnits.prototype.__destroy__ = function() { + SurfaceAreaToVolumeUnits.prototype['__destroy__'] = SurfaceAreaToVolumeUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SurfaceAreaToVolumeUnits___destroy___0(self); }; - -// Interface: SpeedUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SpeedUnits() { throw "cannot construct a SpeedUnits, no constructor in IDL" } +// SpeedUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function SpeedUnits() { throw "cannot construct a SpeedUnits, no constructor in IDL" } SpeedUnits.prototype = Object.create(WrapperObject.prototype); SpeedUnits.prototype.constructor = SpeedUnits; SpeedUnits.prototype.__class__ = SpeedUnits; SpeedUnits.__cache__ = {}; Module['SpeedUnits'] = SpeedUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeedUnits.prototype['toBaseUnits'] = SpeedUnits.prototype.toBaseUnits = function(value, units) { + +SpeedUnits.prototype['toBaseUnits'] = SpeedUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SpeedUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_SpeedUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeedUnits.prototype['fromBaseUnits'] = SpeedUnits.prototype.fromBaseUnits = function(value, units) { +SpeedUnits.prototype['fromBaseUnits'] = SpeedUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SpeedUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_SpeedUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeedUnits.prototype['__destroy__'] = SpeedUnits.prototype.__destroy__ = function() { + SpeedUnits.prototype['__destroy__'] = SpeedUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SpeedUnits___destroy___0(self); }; - -// Interface: PressureUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function PressureUnits() { throw "cannot construct a PressureUnits, no constructor in IDL" } +// PressureUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function PressureUnits() { throw "cannot construct a PressureUnits, no constructor in IDL" } PressureUnits.prototype = Object.create(WrapperObject.prototype); PressureUnits.prototype.constructor = PressureUnits; PressureUnits.prototype.__class__ = PressureUnits; PressureUnits.__cache__ = {}; Module['PressureUnits'] = PressureUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PressureUnits.prototype['toBaseUnits'] = PressureUnits.prototype.toBaseUnits = function(value, units) { + +PressureUnits.prototype['toBaseUnits'] = PressureUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_PressureUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_PressureUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PressureUnits.prototype['fromBaseUnits'] = PressureUnits.prototype.fromBaseUnits = function(value, units) { +PressureUnits.prototype['fromBaseUnits'] = PressureUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_PressureUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_PressureUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PressureUnits.prototype['__destroy__'] = PressureUnits.prototype.__destroy__ = function() { + PressureUnits.prototype['__destroy__'] = PressureUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_PressureUnits___destroy___0(self); }; - -// Interface: SlopeUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SlopeUnits() { throw "cannot construct a SlopeUnits, no constructor in IDL" } +// SlopeUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function SlopeUnits() { throw "cannot construct a SlopeUnits, no constructor in IDL" } SlopeUnits.prototype = Object.create(WrapperObject.prototype); SlopeUnits.prototype.constructor = SlopeUnits; SlopeUnits.prototype.__class__ = SlopeUnits; SlopeUnits.__cache__ = {}; Module['SlopeUnits'] = SlopeUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SlopeUnits.prototype['toBaseUnits'] = SlopeUnits.prototype.toBaseUnits = function(value, units) { + +SlopeUnits.prototype['toBaseUnits'] = SlopeUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SlopeUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_SlopeUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SlopeUnits.prototype['fromBaseUnits'] = SlopeUnits.prototype.fromBaseUnits = function(value, units) { +SlopeUnits.prototype['fromBaseUnits'] = SlopeUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_SlopeUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_SlopeUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SlopeUnits.prototype['__destroy__'] = SlopeUnits.prototype.__destroy__ = function() { + SlopeUnits.prototype['__destroy__'] = SlopeUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SlopeUnits___destroy___0(self); }; - -// Interface: DensityUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function DensityUnits() { throw "cannot construct a DensityUnits, no constructor in IDL" } +// DensityUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function DensityUnits() { throw "cannot construct a DensityUnits, no constructor in IDL" } DensityUnits.prototype = Object.create(WrapperObject.prototype); DensityUnits.prototype.constructor = DensityUnits; DensityUnits.prototype.__class__ = DensityUnits; DensityUnits.__cache__ = {}; Module['DensityUnits'] = DensityUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DensityUnits.prototype['toBaseUnits'] = DensityUnits.prototype.toBaseUnits = function(value, units) { + +DensityUnits.prototype['toBaseUnits'] = DensityUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_DensityUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_DensityUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DensityUnits.prototype['fromBaseUnits'] = DensityUnits.prototype.fromBaseUnits = function(value, units) { +DensityUnits.prototype['fromBaseUnits'] = DensityUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_DensityUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_DensityUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -DensityUnits.prototype['__destroy__'] = DensityUnits.prototype.__destroy__ = function() { + DensityUnits.prototype['__destroy__'] = DensityUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_DensityUnits___destroy___0(self); }; - -// Interface: HeatOfCombustionUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function HeatOfCombustionUnits() { throw "cannot construct a HeatOfCombustionUnits, no constructor in IDL" } +// HeatOfCombustionUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function HeatOfCombustionUnits() { throw "cannot construct a HeatOfCombustionUnits, no constructor in IDL" } HeatOfCombustionUnits.prototype = Object.create(WrapperObject.prototype); HeatOfCombustionUnits.prototype.constructor = HeatOfCombustionUnits; HeatOfCombustionUnits.prototype.__class__ = HeatOfCombustionUnits; HeatOfCombustionUnits.__cache__ = {}; Module['HeatOfCombustionUnits'] = HeatOfCombustionUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatOfCombustionUnits.prototype['toBaseUnits'] = HeatOfCombustionUnits.prototype.toBaseUnits = function(value, units) { + +HeatOfCombustionUnits.prototype['toBaseUnits'] = HeatOfCombustionUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_HeatOfCombustionUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatOfCombustionUnits.prototype['fromBaseUnits'] = HeatOfCombustionUnits.prototype.fromBaseUnits = function(value, units) { +HeatOfCombustionUnits.prototype['fromBaseUnits'] = HeatOfCombustionUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_HeatOfCombustionUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatOfCombustionUnits.prototype['__destroy__'] = HeatOfCombustionUnits.prototype.__destroy__ = function() { + HeatOfCombustionUnits.prototype['__destroy__'] = HeatOfCombustionUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_HeatOfCombustionUnits___destroy___0(self); }; - -// Interface: HeatSinkUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function HeatSinkUnits() { throw "cannot construct a HeatSinkUnits, no constructor in IDL" } +// HeatSinkUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function HeatSinkUnits() { throw "cannot construct a HeatSinkUnits, no constructor in IDL" } HeatSinkUnits.prototype = Object.create(WrapperObject.prototype); HeatSinkUnits.prototype.constructor = HeatSinkUnits; HeatSinkUnits.prototype.__class__ = HeatSinkUnits; HeatSinkUnits.__cache__ = {}; Module['HeatSinkUnits'] = HeatSinkUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatSinkUnits.prototype['toBaseUnits'] = HeatSinkUnits.prototype.toBaseUnits = function(value, units) { + +HeatSinkUnits.prototype['toBaseUnits'] = HeatSinkUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatSinkUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_HeatSinkUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatSinkUnits.prototype['fromBaseUnits'] = HeatSinkUnits.prototype.fromBaseUnits = function(value, units) { +HeatSinkUnits.prototype['fromBaseUnits'] = HeatSinkUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatSinkUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_HeatSinkUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatSinkUnits.prototype['__destroy__'] = HeatSinkUnits.prototype.__destroy__ = function() { + HeatSinkUnits.prototype['__destroy__'] = HeatSinkUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_HeatSinkUnits___destroy___0(self); }; - -// Interface: HeatPerUnitAreaUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function HeatPerUnitAreaUnits() { throw "cannot construct a HeatPerUnitAreaUnits, no constructor in IDL" } +// HeatPerUnitAreaUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function HeatPerUnitAreaUnits() { throw "cannot construct a HeatPerUnitAreaUnits, no constructor in IDL" } HeatPerUnitAreaUnits.prototype = Object.create(WrapperObject.prototype); HeatPerUnitAreaUnits.prototype.constructor = HeatPerUnitAreaUnits; HeatPerUnitAreaUnits.prototype.__class__ = HeatPerUnitAreaUnits; HeatPerUnitAreaUnits.__cache__ = {}; Module['HeatPerUnitAreaUnits'] = HeatPerUnitAreaUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatPerUnitAreaUnits.prototype['toBaseUnits'] = HeatPerUnitAreaUnits.prototype.toBaseUnits = function(value, units) { + +HeatPerUnitAreaUnits.prototype['toBaseUnits'] = HeatPerUnitAreaUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_HeatPerUnitAreaUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatPerUnitAreaUnits.prototype['fromBaseUnits'] = HeatPerUnitAreaUnits.prototype.fromBaseUnits = function(value, units) { +HeatPerUnitAreaUnits.prototype['fromBaseUnits'] = HeatPerUnitAreaUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_HeatPerUnitAreaUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatPerUnitAreaUnits.prototype['__destroy__'] = HeatPerUnitAreaUnits.prototype.__destroy__ = function() { + HeatPerUnitAreaUnits.prototype['__destroy__'] = HeatPerUnitAreaUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_HeatPerUnitAreaUnits___destroy___0(self); }; - -// Interface: HeatSourceAndReactionIntensityUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function HeatSourceAndReactionIntensityUnits() { throw "cannot construct a HeatSourceAndReactionIntensityUnits, no constructor in IDL" } +// HeatSourceAndReactionIntensityUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function HeatSourceAndReactionIntensityUnits() { throw "cannot construct a HeatSourceAndReactionIntensityUnits, no constructor in IDL" } HeatSourceAndReactionIntensityUnits.prototype = Object.create(WrapperObject.prototype); HeatSourceAndReactionIntensityUnits.prototype.constructor = HeatSourceAndReactionIntensityUnits; HeatSourceAndReactionIntensityUnits.prototype.__class__ = HeatSourceAndReactionIntensityUnits; HeatSourceAndReactionIntensityUnits.__cache__ = {}; Module['HeatSourceAndReactionIntensityUnits'] = HeatSourceAndReactionIntensityUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatSourceAndReactionIntensityUnits.prototype['toBaseUnits'] = HeatSourceAndReactionIntensityUnits.prototype.toBaseUnits = function(value, units) { + +HeatSourceAndReactionIntensityUnits.prototype['toBaseUnits'] = HeatSourceAndReactionIntensityUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_HeatSourceAndReactionIntensityUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatSourceAndReactionIntensityUnits.prototype['fromBaseUnits'] = HeatSourceAndReactionIntensityUnits.prototype.fromBaseUnits = function(value, units) { +HeatSourceAndReactionIntensityUnits.prototype['fromBaseUnits'] = HeatSourceAndReactionIntensityUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_HeatSourceAndReactionIntensityUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -HeatSourceAndReactionIntensityUnits.prototype['__destroy__'] = HeatSourceAndReactionIntensityUnits.prototype.__destroy__ = function() { + HeatSourceAndReactionIntensityUnits.prototype['__destroy__'] = HeatSourceAndReactionIntensityUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_HeatSourceAndReactionIntensityUnits___destroy___0(self); }; - -// Interface: FirelineIntensityUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function FirelineIntensityUnits() { throw "cannot construct a FirelineIntensityUnits, no constructor in IDL" } +// FirelineIntensityUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function FirelineIntensityUnits() { throw "cannot construct a FirelineIntensityUnits, no constructor in IDL" } FirelineIntensityUnits.prototype = Object.create(WrapperObject.prototype); FirelineIntensityUnits.prototype.constructor = FirelineIntensityUnits; FirelineIntensityUnits.prototype.__class__ = FirelineIntensityUnits; FirelineIntensityUnits.__cache__ = {}; Module['FirelineIntensityUnits'] = FirelineIntensityUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FirelineIntensityUnits.prototype['toBaseUnits'] = FirelineIntensityUnits.prototype.toBaseUnits = function(value, units) { + +FirelineIntensityUnits.prototype['toBaseUnits'] = FirelineIntensityUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_FirelineIntensityUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_FirelineIntensityUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FirelineIntensityUnits.prototype['fromBaseUnits'] = FirelineIntensityUnits.prototype.fromBaseUnits = function(value, units) { +FirelineIntensityUnits.prototype['fromBaseUnits'] = FirelineIntensityUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_FirelineIntensityUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FirelineIntensityUnits.prototype['__destroy__'] = FirelineIntensityUnits.prototype.__destroy__ = function() { + FirelineIntensityUnits.prototype['__destroy__'] = FirelineIntensityUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_FirelineIntensityUnits___destroy___0(self); }; - -// Interface: TemperatureUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function TemperatureUnits() { throw "cannot construct a TemperatureUnits, no constructor in IDL" } +// TemperatureUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function TemperatureUnits() { throw "cannot construct a TemperatureUnits, no constructor in IDL" } TemperatureUnits.prototype = Object.create(WrapperObject.prototype); TemperatureUnits.prototype.constructor = TemperatureUnits; TemperatureUnits.prototype.__class__ = TemperatureUnits; TemperatureUnits.__cache__ = {}; Module['TemperatureUnits'] = TemperatureUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -TemperatureUnits.prototype['toBaseUnits'] = TemperatureUnits.prototype.toBaseUnits = function(value, units) { + +TemperatureUnits.prototype['toBaseUnits'] = TemperatureUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_TemperatureUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_TemperatureUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -TemperatureUnits.prototype['fromBaseUnits'] = TemperatureUnits.prototype.fromBaseUnits = function(value, units) { +TemperatureUnits.prototype['fromBaseUnits'] = TemperatureUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_TemperatureUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_TemperatureUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -TemperatureUnits.prototype['__destroy__'] = TemperatureUnits.prototype.__destroy__ = function() { + TemperatureUnits.prototype['__destroy__'] = TemperatureUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_TemperatureUnits___destroy___0(self); }; - -// Interface: TimeUnits - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function TimeUnits() { throw "cannot construct a TimeUnits, no constructor in IDL" } +// TimeUnits +/** @suppress {undefinedVars, duplicate} @this{Object} */function TimeUnits() { throw "cannot construct a TimeUnits, no constructor in IDL" } TimeUnits.prototype = Object.create(WrapperObject.prototype); TimeUnits.prototype.constructor = TimeUnits; TimeUnits.prototype.__class__ = TimeUnits; TimeUnits.__cache__ = {}; Module['TimeUnits'] = TimeUnits; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -TimeUnits.prototype['toBaseUnits'] = TimeUnits.prototype.toBaseUnits = function(value, units) { + +TimeUnits.prototype['toBaseUnits'] = TimeUnits.prototype.toBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_TimeUnits_toBaseUnits_2(value, units); -}; + return _emscripten_bind_TimeUnits_toBaseUnits_2(self, value, units); +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -TimeUnits.prototype['fromBaseUnits'] = TimeUnits.prototype.fromBaseUnits = function(value, units) { +TimeUnits.prototype['fromBaseUnits'] = TimeUnits.prototype.fromBaseUnits = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, units) { + var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (units && typeof units === 'object') units = units.ptr; - return _emscripten_bind_TimeUnits_fromBaseUnits_2(value, units); -}; + return _emscripten_bind_TimeUnits_fromBaseUnits_2(self, value, units); +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -TimeUnits.prototype['__destroy__'] = TimeUnits.prototype.__destroy__ = function() { + TimeUnits.prototype['__destroy__'] = TimeUnits.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_TimeUnits___destroy___0(self); }; - -// Interface: FireSize - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function FireSize() { throw "cannot construct a FireSize, no constructor in IDL" } +// FireSize +/** @suppress {undefinedVars, duplicate} @this{Object} */function FireSize() { throw "cannot construct a FireSize, no constructor in IDL" } FireSize.prototype = Object.create(WrapperObject.prototype); FireSize.prototype.constructor = FireSize; FireSize.prototype.__class__ = FireSize; FireSize.__cache__ = {}; Module['FireSize'] = FireSize; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getBackingSpreadRate'] = FireSize.prototype.getBackingSpreadRate = function(spreadRateUnits) { + +FireSize.prototype['getBackingSpreadRate'] = FireSize.prototype.getBackingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_FireSize_getBackingSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getEccentricity'] = FireSize.prototype.getEccentricity = function() { +FireSize.prototype['getEccentricity'] = FireSize.prototype.getEccentricity = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_FireSize_getEccentricity_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getEllipticalA'] = FireSize.prototype.getEllipticalA = function(lengthUnits, elapsedTime, timeUnits) { +FireSize.prototype['getEllipticalA'] = FireSize.prototype.getEllipticalA = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getEllipticalA_3(self, lengthUnits, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getEllipticalB'] = FireSize.prototype.getEllipticalB = function(lengthUnits, elapsedTime, timeUnits) { +FireSize.prototype['getEllipticalB'] = FireSize.prototype.getEllipticalB = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getEllipticalB_3(self, lengthUnits, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getEllipticalC'] = FireSize.prototype.getEllipticalC = function(lengthUnits, elapsedTime, timeUnits) { +FireSize.prototype['getEllipticalC'] = FireSize.prototype.getEllipticalC = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getEllipticalC_3(self, lengthUnits, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getFireArea'] = FireSize.prototype.getFireArea = function(isCrown, areaUnits, elapsedTime, timeUnits) { +FireSize.prototype['getFireArea'] = FireSize.prototype.getFireArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isCrown, areaUnits, elapsedTime, timeUnits) { var self = this.ptr; if (isCrown && typeof isCrown === 'object') isCrown = isCrown.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getFireArea_4(self, isCrown, areaUnits, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getFireLength'] = FireSize.prototype.getFireLength = function(lengthUnits, elapsedTime, timeUnits) { +FireSize.prototype['getFireLength'] = FireSize.prototype.getFireLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getFireLength_3(self, lengthUnits, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getFireLengthToWidthRatio'] = FireSize.prototype.getFireLengthToWidthRatio = function() { +FireSize.prototype['getFireLengthToWidthRatio'] = FireSize.prototype.getFireLengthToWidthRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_FireSize_getFireLengthToWidthRatio_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getFirePerimeter'] = FireSize.prototype.getFirePerimeter = function(isCrown, lengthUnits, elapsedTime, timeUnits) { +FireSize.prototype['getFirePerimeter'] = FireSize.prototype.getFirePerimeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isCrown, lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (isCrown && typeof isCrown === 'object') isCrown = isCrown.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getFirePerimeter_4(self, isCrown, lengthUnits, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getFlankingSpreadRate'] = FireSize.prototype.getFlankingSpreadRate = function(spreadRateUnits) { +FireSize.prototype['getFlankingSpreadRate'] = FireSize.prototype.getFlankingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_FireSize_getFlankingSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getHeadingToBackingRatio'] = FireSize.prototype.getHeadingToBackingRatio = function() { +FireSize.prototype['getHeadingToBackingRatio'] = FireSize.prototype.getHeadingToBackingRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_FireSize_getHeadingToBackingRatio_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['getMaxFireWidth'] = FireSize.prototype.getMaxFireWidth = function(lengthUnits, elapsedTime, timeUnits) { +FireSize.prototype['getMaxFireWidth'] = FireSize.prototype.getMaxFireWidth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits, elapsedTime, timeUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_FireSize_getMaxFireWidth_3(self, lengthUnits, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['calculateFireBasicDimensions'] = FireSize.prototype.calculateFireBasicDimensions = function(isCrown, effectiveWindSpeed, windSpeedRateUnits, forwardSpreadRate, spreadRateUnits) { +FireSize.prototype['calculateFireBasicDimensions'] = FireSize.prototype.calculateFireBasicDimensions = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isCrown, effectiveWindSpeed, windSpeedRateUnits, forwardSpreadRate, spreadRateUnits) { var self = this.ptr; if (isCrown && typeof isCrown === 'object') isCrown = isCrown.ptr; if (effectiveWindSpeed && typeof effectiveWindSpeed === 'object') effectiveWindSpeed = effectiveWindSpeed.ptr; @@ -8844,205 +8605,173 @@ FireSize.prototype['calculateFireBasicDimensions'] = FireSize.prototype.calculat if (forwardSpreadRate && typeof forwardSpreadRate === 'object') forwardSpreadRate = forwardSpreadRate.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; _emscripten_bind_FireSize_calculateFireBasicDimensions_5(self, isCrown, effectiveWindSpeed, windSpeedRateUnits, forwardSpreadRate, spreadRateUnits); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -FireSize.prototype['__destroy__'] = FireSize.prototype.__destroy__ = function() { + FireSize.prototype['__destroy__'] = FireSize.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_FireSize___destroy___0(self); }; - -// Interface: SIGContainAdapter - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGContainAdapter() { +// SIGContainAdapter +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGContainAdapter() { this.ptr = _emscripten_bind_SIGContainAdapter_SIGContainAdapter_0(); getCache(SIGContainAdapter)[this.ptr] = this; -}; - +};; SIGContainAdapter.prototype = Object.create(WrapperObject.prototype); SIGContainAdapter.prototype.constructor = SIGContainAdapter; SIGContainAdapter.prototype.__class__ = SIGContainAdapter; SIGContainAdapter.__cache__ = {}; Module['SIGContainAdapter'] = SIGContainAdapter; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getContainmentStatus'] = SIGContainAdapter.prototype.getContainmentStatus = function() { + +SIGContainAdapter.prototype['getContainmentStatus'] = SIGContainAdapter.prototype.getContainmentStatus = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getContainmentStatus_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFirePerimeterX'] = SIGContainAdapter.prototype.getFirePerimeterX = function() { +SIGContainAdapter.prototype['getFirePerimeterX'] = SIGContainAdapter.prototype.getFirePerimeterX = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return wrapPointer(_emscripten_bind_SIGContainAdapter_getFirePerimeterX_0(self), DoubleVector); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFirePerimeterY'] = SIGContainAdapter.prototype.getFirePerimeterY = function() { +SIGContainAdapter.prototype['getFirePerimeterY'] = SIGContainAdapter.prototype.getFirePerimeterY = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return wrapPointer(_emscripten_bind_SIGContainAdapter_getFirePerimeterY_0(self), DoubleVector); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getAttackDistance'] = SIGContainAdapter.prototype.getAttackDistance = function(lengthUnits) { +SIGContainAdapter.prototype['getAttackDistance'] = SIGContainAdapter.prototype.getAttackDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGContainAdapter_getAttackDistance_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFinalContainmentArea'] = SIGContainAdapter.prototype.getFinalContainmentArea = function(areaUnits) { +SIGContainAdapter.prototype['getFinalContainmentArea'] = SIGContainAdapter.prototype.getFinalContainmentArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalContainmentArea_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFinalCost'] = SIGContainAdapter.prototype.getFinalCost = function() { +SIGContainAdapter.prototype['getFinalCost'] = SIGContainAdapter.prototype.getFinalCost = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFinalCost_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFinalFireLineLength'] = SIGContainAdapter.prototype.getFinalFireLineLength = function(lengthUnits) { +SIGContainAdapter.prototype['getFinalFireLineLength'] = SIGContainAdapter.prototype.getFinalFireLineLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalFireLineLength_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFinalFireSize'] = SIGContainAdapter.prototype.getFinalFireSize = function(areaUnits) { +SIGContainAdapter.prototype['getFinalFireSize'] = SIGContainAdapter.prototype.getFinalFireSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalFireSize_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFinalTimeSinceReport'] = SIGContainAdapter.prototype.getFinalTimeSinceReport = function(timeUnits) { +SIGContainAdapter.prototype['getFinalTimeSinceReport'] = SIGContainAdapter.prototype.getFinalTimeSinceReport = /** @suppress {undefinedVars, duplicate} @this{Object} */function(timeUnits) { var self = this.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalTimeSinceReport_1(self, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFinalProductionRate'] = SIGContainAdapter.prototype.getFinalProductionRate = function(speedUnits) { +SIGContainAdapter.prototype['getFinalProductionRate'] = SIGContainAdapter.prototype.getFinalProductionRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speedUnits) { var self = this.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFinalProductionRate_1(self, speedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFireBackAtAttack'] = SIGContainAdapter.prototype.getFireBackAtAttack = function() { +SIGContainAdapter.prototype['getFireBackAtAttack'] = SIGContainAdapter.prototype.getFireBackAtAttack = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFireBackAtAttack_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFireBackAtReport'] = SIGContainAdapter.prototype.getFireBackAtReport = function() { +SIGContainAdapter.prototype['getFireBackAtReport'] = SIGContainAdapter.prototype.getFireBackAtReport = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFireBackAtReport_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFireHeadAtAttack'] = SIGContainAdapter.prototype.getFireHeadAtAttack = function() { +SIGContainAdapter.prototype['getFireHeadAtAttack'] = SIGContainAdapter.prototype.getFireHeadAtAttack = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFireHeadAtAttack_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFireHeadAtReport'] = SIGContainAdapter.prototype.getFireHeadAtReport = function() { +SIGContainAdapter.prototype['getFireHeadAtReport'] = SIGContainAdapter.prototype.getFireHeadAtReport = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFireHeadAtReport_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFireSizeAtInitialAttack'] = SIGContainAdapter.prototype.getFireSizeAtInitialAttack = function(areaUnits) { +SIGContainAdapter.prototype['getFireSizeAtInitialAttack'] = SIGContainAdapter.prototype.getFireSizeAtInitialAttack = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGContainAdapter_getFireSizeAtInitialAttack_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getLengthToWidthRatio'] = SIGContainAdapter.prototype.getLengthToWidthRatio = function() { +SIGContainAdapter.prototype['getLengthToWidthRatio'] = SIGContainAdapter.prototype.getLengthToWidthRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getLengthToWidthRatio_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getPerimeterAtContainment'] = SIGContainAdapter.prototype.getPerimeterAtContainment = function(lengthUnits) { +SIGContainAdapter.prototype['getPerimeterAtContainment'] = SIGContainAdapter.prototype.getPerimeterAtContainment = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGContainAdapter_getPerimeterAtContainment_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getPerimeterAtInitialAttack'] = SIGContainAdapter.prototype.getPerimeterAtInitialAttack = function(lengthUnits) { +SIGContainAdapter.prototype['getPerimeterAtInitialAttack'] = SIGContainAdapter.prototype.getPerimeterAtInitialAttack = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGContainAdapter_getPerimeterAtInitialAttack_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getReportSize'] = SIGContainAdapter.prototype.getReportSize = function(areaUnits) { +SIGContainAdapter.prototype['getReportSize'] = SIGContainAdapter.prototype.getReportSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGContainAdapter_getReportSize_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getReportRate'] = SIGContainAdapter.prototype.getReportRate = function(speedUnits) { +SIGContainAdapter.prototype['getReportRate'] = SIGContainAdapter.prototype.getReportRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speedUnits) { var self = this.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; return _emscripten_bind_SIGContainAdapter_getReportRate_1(self, speedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getAutoComputedResourceProductionRate'] = SIGContainAdapter.prototype.getAutoComputedResourceProductionRate = function(speedUnits) { +SIGContainAdapter.prototype['getAutoComputedResourceProductionRate'] = SIGContainAdapter.prototype.getAutoComputedResourceProductionRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speedUnits) { var self = this.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; return _emscripten_bind_SIGContainAdapter_getAutoComputedResourceProductionRate_1(self, speedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getTactic'] = SIGContainAdapter.prototype.getTactic = function() { +SIGContainAdapter.prototype['getTactic'] = SIGContainAdapter.prototype.getTactic = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getTactic_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['getFirePerimeterPointCount'] = SIGContainAdapter.prototype.getFirePerimeterPointCount = function() { +SIGContainAdapter.prototype['getFirePerimeterPointCount'] = SIGContainAdapter.prototype.getFirePerimeterPointCount = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGContainAdapter_getFirePerimeterPointCount_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['removeAllResourcesWithThisDesc'] = SIGContainAdapter.prototype.removeAllResourcesWithThisDesc = function(desc) { +SIGContainAdapter.prototype['removeAllResourcesWithThisDesc'] = SIGContainAdapter.prototype.removeAllResourcesWithThisDesc = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desc) { var self = this.ptr; ensureCache.prepare(); if (desc && typeof desc === 'object') desc = desc.ptr; else desc = ensureString(desc); return _emscripten_bind_SIGContainAdapter_removeAllResourcesWithThisDesc_1(self, desc); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['removeResourceAt'] = SIGContainAdapter.prototype.removeResourceAt = function(index) { +SIGContainAdapter.prototype['removeResourceAt'] = SIGContainAdapter.prototype.removeResourceAt = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGContainAdapter_removeResourceAt_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['removeResourceWithThisDesc'] = SIGContainAdapter.prototype.removeResourceWithThisDesc = function(desc) { +SIGContainAdapter.prototype['removeResourceWithThisDesc'] = SIGContainAdapter.prototype.removeResourceWithThisDesc = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desc) { var self = this.ptr; ensureCache.prepare(); if (desc && typeof desc === 'object') desc = desc.ptr; else desc = ensureString(desc); return _emscripten_bind_SIGContainAdapter_removeResourceWithThisDesc_1(self, desc); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['addResource'] = SIGContainAdapter.prototype.addResource = function(arrival, arrivalTimeUnit, duration, durationTimeUnit, productionRate, productionRateUnits, description, baseCost, hourCost) { +SIGContainAdapter.prototype['addResource'] = SIGContainAdapter.prototype.addResource = /** @suppress {undefinedVars, duplicate} @this{Object} */function(arrival, arrivalTimeUnit, duration, durationTimeUnit, productionRate, productionRateUnits, description, baseCost, hourCost) { var self = this.ptr; ensureCache.prepare(); if (arrival && typeof arrival === 'object') arrival = arrival.ptr; @@ -9056,230 +8785,196 @@ SIGContainAdapter.prototype['addResource'] = SIGContainAdapter.prototype.addReso if (baseCost && typeof baseCost === 'object') baseCost = baseCost.ptr; if (hourCost && typeof hourCost === 'object') hourCost = hourCost.ptr; _emscripten_bind_SIGContainAdapter_addResource_9(self, arrival, arrivalTimeUnit, duration, durationTimeUnit, productionRate, productionRateUnits, description, baseCost, hourCost); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['doContainRun'] = SIGContainAdapter.prototype.doContainRun = function() { +SIGContainAdapter.prototype['doContainRun'] = SIGContainAdapter.prototype.doContainRun = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGContainAdapter_doContainRun_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['removeAllResources'] = SIGContainAdapter.prototype.removeAllResources = function() { +SIGContainAdapter.prototype['removeAllResources'] = SIGContainAdapter.prototype.removeAllResources = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGContainAdapter_removeAllResources_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setAttackDistance'] = SIGContainAdapter.prototype.setAttackDistance = function(attackDistance, lengthUnits) { +SIGContainAdapter.prototype['setAttackDistance'] = SIGContainAdapter.prototype.setAttackDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(attackDistance, lengthUnits) { var self = this.ptr; if (attackDistance && typeof attackDistance === 'object') attackDistance = attackDistance.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGContainAdapter_setAttackDistance_2(self, attackDistance, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setContainMode'] = SIGContainAdapter.prototype.setContainMode = function(containmode) { +SIGContainAdapter.prototype['setContainMode'] = SIGContainAdapter.prototype.setContainMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(containmode) { var self = this.ptr; if (containmode && typeof containmode === 'object') containmode = containmode.ptr; _emscripten_bind_SIGContainAdapter_setContainMode_1(self, containmode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setFireStartTime'] = SIGContainAdapter.prototype.setFireStartTime = function(fireStartTime) { +SIGContainAdapter.prototype['setFireStartTime'] = SIGContainAdapter.prototype.setFireStartTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fireStartTime) { var self = this.ptr; if (fireStartTime && typeof fireStartTime === 'object') fireStartTime = fireStartTime.ptr; _emscripten_bind_SIGContainAdapter_setFireStartTime_1(self, fireStartTime); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setLwRatio'] = SIGContainAdapter.prototype.setLwRatio = function(lwRatio) { +SIGContainAdapter.prototype['setLwRatio'] = SIGContainAdapter.prototype.setLwRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lwRatio) { var self = this.ptr; if (lwRatio && typeof lwRatio === 'object') lwRatio = lwRatio.ptr; _emscripten_bind_SIGContainAdapter_setLwRatio_1(self, lwRatio); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setMaxFireSize'] = SIGContainAdapter.prototype.setMaxFireSize = function(maxFireSize) { +SIGContainAdapter.prototype['setMaxFireSize'] = SIGContainAdapter.prototype.setMaxFireSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(maxFireSize) { var self = this.ptr; if (maxFireSize && typeof maxFireSize === 'object') maxFireSize = maxFireSize.ptr; _emscripten_bind_SIGContainAdapter_setMaxFireSize_1(self, maxFireSize); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setMaxFireTime'] = SIGContainAdapter.prototype.setMaxFireTime = function(maxFireTime) { +SIGContainAdapter.prototype['setMaxFireTime'] = SIGContainAdapter.prototype.setMaxFireTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(maxFireTime) { var self = this.ptr; if (maxFireTime && typeof maxFireTime === 'object') maxFireTime = maxFireTime.ptr; _emscripten_bind_SIGContainAdapter_setMaxFireTime_1(self, maxFireTime); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setMaxSteps'] = SIGContainAdapter.prototype.setMaxSteps = function(maxSteps) { +SIGContainAdapter.prototype['setMaxSteps'] = SIGContainAdapter.prototype.setMaxSteps = /** @suppress {undefinedVars, duplicate} @this{Object} */function(maxSteps) { var self = this.ptr; if (maxSteps && typeof maxSteps === 'object') maxSteps = maxSteps.ptr; _emscripten_bind_SIGContainAdapter_setMaxSteps_1(self, maxSteps); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setMinSteps'] = SIGContainAdapter.prototype.setMinSteps = function(minSteps) { +SIGContainAdapter.prototype['setMinSteps'] = SIGContainAdapter.prototype.setMinSteps = /** @suppress {undefinedVars, duplicate} @this{Object} */function(minSteps) { var self = this.ptr; if (minSteps && typeof minSteps === 'object') minSteps = minSteps.ptr; _emscripten_bind_SIGContainAdapter_setMinSteps_1(self, minSteps); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setReportRate'] = SIGContainAdapter.prototype.setReportRate = function(reportRate, speedUnits) { +SIGContainAdapter.prototype['setReportRate'] = SIGContainAdapter.prototype.setReportRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(reportRate, speedUnits) { var self = this.ptr; if (reportRate && typeof reportRate === 'object') reportRate = reportRate.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; _emscripten_bind_SIGContainAdapter_setReportRate_2(self, reportRate, speedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setReportSize'] = SIGContainAdapter.prototype.setReportSize = function(reportSize, areaUnits) { +SIGContainAdapter.prototype['setReportSize'] = SIGContainAdapter.prototype.setReportSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(reportSize, areaUnits) { var self = this.ptr; if (reportSize && typeof reportSize === 'object') reportSize = reportSize.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; _emscripten_bind_SIGContainAdapter_setReportSize_2(self, reportSize, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setResourceArrivalTime'] = SIGContainAdapter.prototype.setResourceArrivalTime = function(arrivalTime, timeUnits) { +SIGContainAdapter.prototype['setResourceArrivalTime'] = SIGContainAdapter.prototype.setResourceArrivalTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(arrivalTime, timeUnits) { var self = this.ptr; if (arrivalTime && typeof arrivalTime === 'object') arrivalTime = arrivalTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; _emscripten_bind_SIGContainAdapter_setResourceArrivalTime_2(self, arrivalTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setResourceDuration'] = SIGContainAdapter.prototype.setResourceDuration = function(duration, timeUnits) { +SIGContainAdapter.prototype['setResourceDuration'] = SIGContainAdapter.prototype.setResourceDuration = /** @suppress {undefinedVars, duplicate} @this{Object} */function(duration, timeUnits) { var self = this.ptr; if (duration && typeof duration === 'object') duration = duration.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; _emscripten_bind_SIGContainAdapter_setResourceDuration_2(self, duration, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setRetry'] = SIGContainAdapter.prototype.setRetry = function(retry) { +SIGContainAdapter.prototype['setRetry'] = SIGContainAdapter.prototype.setRetry = /** @suppress {undefinedVars, duplicate} @this{Object} */function(retry) { var self = this.ptr; if (retry && typeof retry === 'object') retry = retry.ptr; _emscripten_bind_SIGContainAdapter_setRetry_1(self, retry); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['setTactic'] = SIGContainAdapter.prototype.setTactic = function(tactic) { +SIGContainAdapter.prototype['setTactic'] = SIGContainAdapter.prototype.setTactic = /** @suppress {undefinedVars, duplicate} @this{Object} */function(tactic) { var self = this.ptr; if (tactic && typeof tactic === 'object') tactic = tactic.ptr; _emscripten_bind_SIGContainAdapter_setTactic_1(self, tactic); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGContainAdapter.prototype['__destroy__'] = SIGContainAdapter.prototype.__destroy__ = function() { + SIGContainAdapter.prototype['__destroy__'] = SIGContainAdapter.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGContainAdapter___destroy___0(self); }; - -// Interface: SIGIgnite - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGIgnite() { +// SIGIgnite +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGIgnite() { this.ptr = _emscripten_bind_SIGIgnite_SIGIgnite_0(); getCache(SIGIgnite)[this.ptr] = this; -}; - +};; SIGIgnite.prototype = Object.create(WrapperObject.prototype); SIGIgnite.prototype.constructor = SIGIgnite; SIGIgnite.prototype.__class__ = SIGIgnite; SIGIgnite.__cache__ = {}; Module['SIGIgnite'] = SIGIgnite; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['initializeMembers'] = SIGIgnite.prototype.initializeMembers = function() { + +SIGIgnite.prototype['initializeMembers'] = SIGIgnite.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGIgnite_initializeMembers_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getFuelBedType'] = SIGIgnite.prototype.getFuelBedType = function() { +SIGIgnite.prototype['getFuelBedType'] = SIGIgnite.prototype.getFuelBedType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGIgnite_getFuelBedType_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getLightningChargeType'] = SIGIgnite.prototype.getLightningChargeType = function() { +SIGIgnite.prototype['getLightningChargeType'] = SIGIgnite.prototype.getLightningChargeType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGIgnite_getLightningChargeType_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['calculateFirebrandIgnitionProbability'] = SIGIgnite.prototype.calculateFirebrandIgnitionProbability = function() { +SIGIgnite.prototype['calculateFirebrandIgnitionProbability'] = SIGIgnite.prototype.calculateFirebrandIgnitionProbability = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGIgnite_calculateFirebrandIgnitionProbability_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['calculateLightningIgnitionProbability'] = SIGIgnite.prototype.calculateLightningIgnitionProbability = function(desiredUnits) { +SIGIgnite.prototype['calculateLightningIgnitionProbability'] = SIGIgnite.prototype.calculateLightningIgnitionProbability = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_calculateLightningIgnitionProbability_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['setAirTemperature'] = SIGIgnite.prototype.setAirTemperature = function(airTemperature, temperatureUnites) { +SIGIgnite.prototype['setAirTemperature'] = SIGIgnite.prototype.setAirTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(airTemperature, temperatureUnites) { var self = this.ptr; if (airTemperature && typeof airTemperature === 'object') airTemperature = airTemperature.ptr; if (temperatureUnites && typeof temperatureUnites === 'object') temperatureUnites = temperatureUnites.ptr; _emscripten_bind_SIGIgnite_setAirTemperature_2(self, airTemperature, temperatureUnites); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['setDuffDepth'] = SIGIgnite.prototype.setDuffDepth = function(duffDepth, lengthUnits) { +SIGIgnite.prototype['setDuffDepth'] = SIGIgnite.prototype.setDuffDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(duffDepth, lengthUnits) { var self = this.ptr; if (duffDepth && typeof duffDepth === 'object') duffDepth = duffDepth.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGIgnite_setDuffDepth_2(self, duffDepth, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['setIgnitionFuelBedType'] = SIGIgnite.prototype.setIgnitionFuelBedType = function(fuelBedType_) { +SIGIgnite.prototype['setIgnitionFuelBedType'] = SIGIgnite.prototype.setIgnitionFuelBedType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelBedType_) { var self = this.ptr; if (fuelBedType_ && typeof fuelBedType_ === 'object') fuelBedType_ = fuelBedType_.ptr; _emscripten_bind_SIGIgnite_setIgnitionFuelBedType_1(self, fuelBedType_); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['setLightningChargeType'] = SIGIgnite.prototype.setLightningChargeType = function(lightningChargeType) { +SIGIgnite.prototype['setLightningChargeType'] = SIGIgnite.prototype.setLightningChargeType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lightningChargeType) { var self = this.ptr; if (lightningChargeType && typeof lightningChargeType === 'object') lightningChargeType = lightningChargeType.ptr; _emscripten_bind_SIGIgnite_setLightningChargeType_1(self, lightningChargeType); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['setMoistureHundredHour'] = SIGIgnite.prototype.setMoistureHundredHour = function(moistureHundredHour, moistureUnits) { +SIGIgnite.prototype['setMoistureHundredHour'] = SIGIgnite.prototype.setMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureHundredHour, moistureUnits) { var self = this.ptr; if (moistureHundredHour && typeof moistureHundredHour === 'object') moistureHundredHour = moistureHundredHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGIgnite_setMoistureHundredHour_2(self, moistureHundredHour, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['setMoistureOneHour'] = SIGIgnite.prototype.setMoistureOneHour = function(moistureOneHour, moistureUnits) { +SIGIgnite.prototype['setMoistureOneHour'] = SIGIgnite.prototype.setMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureUnits) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGIgnite_setMoistureOneHour_2(self, moistureOneHour, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['setSunShade'] = SIGIgnite.prototype.setSunShade = function(sunShade, sunShadeUnits) { +SIGIgnite.prototype['setSunShade'] = SIGIgnite.prototype.setSunShade = /** @suppress {undefinedVars, duplicate} @this{Object} */function(sunShade, sunShadeUnits) { var self = this.ptr; if (sunShade && typeof sunShade === 'object') sunShade = sunShade.ptr; if (sunShadeUnits && typeof sunShadeUnits === 'object') sunShadeUnits = sunShadeUnits.ptr; _emscripten_bind_SIGIgnite_setSunShade_2(self, sunShade, sunShadeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['updateIgniteInputs'] = SIGIgnite.prototype.updateIgniteInputs = function(moistureOneHour, moistureHundredHour, moistureUnits, airTemperature, temperatureUnits, sunShade, sunShadeUnits, fuelBedType, duffDepth, duffDepthUnits, lightningChargeType) { +SIGIgnite.prototype['updateIgniteInputs'] = SIGIgnite.prototype.updateIgniteInputs = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureHundredHour, moistureUnits, airTemperature, temperatureUnits, sunShade, sunShadeUnits, fuelBedType, duffDepth, duffDepthUnits, lightningChargeType) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureHundredHour && typeof moistureHundredHour === 'object') moistureHundredHour = moistureHundredHour.ptr; @@ -9293,609 +8988,522 @@ SIGIgnite.prototype['updateIgniteInputs'] = SIGIgnite.prototype.updateIgniteInpu if (duffDepthUnits && typeof duffDepthUnits === 'object') duffDepthUnits = duffDepthUnits.ptr; if (lightningChargeType && typeof lightningChargeType === 'object') lightningChargeType = lightningChargeType.ptr; _emscripten_bind_SIGIgnite_updateIgniteInputs_11(self, moistureOneHour, moistureHundredHour, moistureUnits, airTemperature, temperatureUnits, sunShade, sunShadeUnits, fuelBedType, duffDepth, duffDepthUnits, lightningChargeType); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getAirTemperature'] = SIGIgnite.prototype.getAirTemperature = function(desiredUnits) { +SIGIgnite.prototype['getAirTemperature'] = SIGIgnite.prototype.getAirTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getAirTemperature_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getDuffDepth'] = SIGIgnite.prototype.getDuffDepth = function(desiredUnits) { +SIGIgnite.prototype['getDuffDepth'] = SIGIgnite.prototype.getDuffDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getDuffDepth_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getFirebrandIgnitionProbability'] = SIGIgnite.prototype.getFirebrandIgnitionProbability = function(desiredUnits) { +SIGIgnite.prototype['getFirebrandIgnitionProbability'] = SIGIgnite.prototype.getFirebrandIgnitionProbability = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getFirebrandIgnitionProbability_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getFuelTemperature'] = SIGIgnite.prototype.getFuelTemperature = function(desiredUnits) { +SIGIgnite.prototype['getFuelTemperature'] = SIGIgnite.prototype.getFuelTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getFuelTemperature_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getMoistureHundredHour'] = SIGIgnite.prototype.getMoistureHundredHour = function(desiredUnits) { +SIGIgnite.prototype['getMoistureHundredHour'] = SIGIgnite.prototype.getMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getMoistureHundredHour_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getMoistureOneHour'] = SIGIgnite.prototype.getMoistureOneHour = function(desiredUnits) { +SIGIgnite.prototype['getMoistureOneHour'] = SIGIgnite.prototype.getMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getMoistureOneHour_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['getSunShade'] = SIGIgnite.prototype.getSunShade = function(desiredUnits) { +SIGIgnite.prototype['getSunShade'] = SIGIgnite.prototype.getSunShade = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGIgnite_getSunShade_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['isFuelDepthNeeded'] = SIGIgnite.prototype.isFuelDepthNeeded = function() { +SIGIgnite.prototype['isFuelDepthNeeded'] = SIGIgnite.prototype.isFuelDepthNeeded = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return !!(_emscripten_bind_SIGIgnite_isFuelDepthNeeded_0(self)); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGIgnite.prototype['__destroy__'] = SIGIgnite.prototype.__destroy__ = function() { + SIGIgnite.prototype['__destroy__'] = SIGIgnite.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGIgnite___destroy___0(self); }; - -// Interface: SIGMoistureScenarios - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGMoistureScenarios() { +// SIGMoistureScenarios +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGMoistureScenarios() { this.ptr = _emscripten_bind_SIGMoistureScenarios_SIGMoistureScenarios_0(); getCache(SIGMoistureScenarios)[this.ptr] = this; -}; - +};; SIGMoistureScenarios.prototype = Object.create(WrapperObject.prototype); SIGMoistureScenarios.prototype.constructor = SIGMoistureScenarios; SIGMoistureScenarios.prototype.__class__ = SIGMoistureScenarios; SIGMoistureScenarios.__cache__ = {}; Module['SIGMoistureScenarios'] = SIGMoistureScenarios; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGMoistureScenarios.prototype.getIsMoistureScenarioDefinedByIndex = function(index) { + +SIGMoistureScenarios.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGMoistureScenarios.prototype.getIsMoistureScenarioDefinedByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return !!(_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getIsMoistureScenarioDefinedByName'] = SIGMoistureScenarios.prototype.getIsMoistureScenarioDefinedByName = function(name) { +SIGMoistureScenarios.prototype['getIsMoistureScenarioDefinedByName'] = SIGMoistureScenarios.prototype.getIsMoistureScenarioDefinedByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return !!(_emscripten_bind_SIGMoistureScenarios_getIsMoistureScenarioDefinedByName_1(self, name)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioHundredHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioHundredHourByIndex = function(index, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioHundredHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioHundredHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioHundredHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioHundredHourByName = function(name, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioHundredHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioHundredHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioHundredHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveHerbaceousByIndex = function(index, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveHerbaceousByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveHerbaceousByName = function(name, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveHerbaceousByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveHerbaceousByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveWoodyByIndex = function(index, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveWoodyByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioLiveWoodyByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveWoodyByName = function(name, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioLiveWoodyByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioLiveWoodyByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioLiveWoodyByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioOneHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioOneHourByIndex = function(index, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioOneHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioOneHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioOneHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioOneHourByName = function(name, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioOneHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioOneHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioOneHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioTenHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioTenHourByIndex = function(index, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioTenHourByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioTenHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioTenHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioTenHourByName = function(name, moistureUnits) { +SIGMoistureScenarios.prototype['getMoistureScenarioTenHourByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioTenHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioTenHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioIndexByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioIndexByName = function(name) { +SIGMoistureScenarios.prototype['getMoistureScenarioIndexByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioIndexByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return _emscripten_bind_SIGMoistureScenarios_getMoistureScenarioIndexByName_1(self, name); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getNumberOfMoistureScenarios'] = SIGMoistureScenarios.prototype.getNumberOfMoistureScenarios = function() { +SIGMoistureScenarios.prototype['getNumberOfMoistureScenarios'] = SIGMoistureScenarios.prototype.getNumberOfMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMoistureScenarios_getNumberOfMoistureScenarios_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioDescriptionByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioDescriptionByIndex = function(index) { +SIGMoistureScenarios.prototype['getMoistureScenarioDescriptionByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioDescriptionByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioDescriptionByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioDescriptionByName = function(name) { +SIGMoistureScenarios.prototype['getMoistureScenarioDescriptionByName'] = SIGMoistureScenarios.prototype.getMoistureScenarioDescriptionByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return UTF8ToString(_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioDescriptionByName_1(self, name)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['getMoistureScenarioNameByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioNameByIndex = function(index) { +SIGMoistureScenarios.prototype['getMoistureScenarioNameByIndex'] = SIGMoistureScenarios.prototype.getMoistureScenarioNameByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMoistureScenarios_getMoistureScenarioNameByIndex_1(self, index)); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMoistureScenarios.prototype['__destroy__'] = SIGMoistureScenarios.prototype.__destroy__ = function() { + SIGMoistureScenarios.prototype['__destroy__'] = SIGMoistureScenarios.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGMoistureScenarios___destroy___0(self); }; - -// Interface: SIGSpot - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGSpot() { +// SIGSpot +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGSpot() { this.ptr = _emscripten_bind_SIGSpot_SIGSpot_0(); getCache(SIGSpot)[this.ptr] = this; -}; - +};; SIGSpot.prototype = Object.create(WrapperObject.prototype); SIGSpot.prototype.constructor = SIGSpot; SIGSpot.prototype.__class__ = SIGSpot; SIGSpot.__cache__ = {}; Module['SIGSpot'] = SIGSpot; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getDownwindCanopyMode'] = SIGSpot.prototype.getDownwindCanopyMode = function() { + +SIGSpot.prototype['getDownwindCanopyMode'] = SIGSpot.prototype.getDownwindCanopyMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getDownwindCanopyMode_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getLocation'] = SIGSpot.prototype.getLocation = function() { +SIGSpot.prototype['getLocation'] = SIGSpot.prototype.getLocation = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getLocation_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getTreeSpecies'] = SIGSpot.prototype.getTreeSpecies = function() { +SIGSpot.prototype['getTreeSpecies'] = SIGSpot.prototype.getTreeSpecies = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getTreeSpecies_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getBurningPileFlameHeight'] = SIGSpot.prototype.getBurningPileFlameHeight = function(flameHeightUnits) { +SIGSpot.prototype['getBurningPileFlameHeight'] = SIGSpot.prototype.getBurningPileFlameHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameHeightUnits) { var self = this.ptr; if (flameHeightUnits && typeof flameHeightUnits === 'object') flameHeightUnits = flameHeightUnits.ptr; return _emscripten_bind_SIGSpot_getBurningPileFlameHeight_1(self, flameHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getCoverHeightUsedForBurningPile'] = SIGSpot.prototype.getCoverHeightUsedForBurningPile = function(coverHeightUnits) { +SIGSpot.prototype['getCoverHeightUsedForBurningPile'] = SIGSpot.prototype.getCoverHeightUsedForBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverHeightUnits) { var self = this.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; return _emscripten_bind_SIGSpot_getCoverHeightUsedForBurningPile_1(self, coverHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getCoverHeightUsedForSurfaceFire'] = SIGSpot.prototype.getCoverHeightUsedForSurfaceFire = function(coverHeightUnits) { +SIGSpot.prototype['getCoverHeightUsedForSurfaceFire'] = SIGSpot.prototype.getCoverHeightUsedForSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverHeightUnits) { var self = this.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; return _emscripten_bind_SIGSpot_getCoverHeightUsedForSurfaceFire_1(self, coverHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getCoverHeightUsedForTorchingTrees'] = SIGSpot.prototype.getCoverHeightUsedForTorchingTrees = function(coverHeightUnits) { +SIGSpot.prototype['getCoverHeightUsedForTorchingTrees'] = SIGSpot.prototype.getCoverHeightUsedForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverHeightUnits) { var self = this.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; return _emscripten_bind_SIGSpot_getCoverHeightUsedForTorchingTrees_1(self, coverHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getDBH'] = SIGSpot.prototype.getDBH = function(DBHUnits) { +SIGSpot.prototype['getDBH'] = SIGSpot.prototype.getDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(DBHUnits) { var self = this.ptr; if (DBHUnits && typeof DBHUnits === 'object') DBHUnits = DBHUnits.ptr; return _emscripten_bind_SIGSpot_getDBH_1(self, DBHUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getDownwindCoverHeight'] = SIGSpot.prototype.getDownwindCoverHeight = function(coverHeightUnits) { +SIGSpot.prototype['getDownwindCoverHeight'] = SIGSpot.prototype.getDownwindCoverHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverHeightUnits) { var self = this.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; return _emscripten_bind_SIGSpot_getDownwindCoverHeight_1(self, coverHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getFlameDurationForTorchingTrees'] = SIGSpot.prototype.getFlameDurationForTorchingTrees = function(durationUnits) { +SIGSpot.prototype['getFlameDurationForTorchingTrees'] = SIGSpot.prototype.getFlameDurationForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(durationUnits) { var self = this.ptr; if (durationUnits && typeof durationUnits === 'object') durationUnits = durationUnits.ptr; return _emscripten_bind_SIGSpot_getFlameDurationForTorchingTrees_1(self, durationUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getFlameHeightForTorchingTrees'] = SIGSpot.prototype.getFlameHeightForTorchingTrees = function(flameHeightUnits) { +SIGSpot.prototype['getFlameHeightForTorchingTrees'] = SIGSpot.prototype.getFlameHeightForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameHeightUnits) { var self = this.ptr; if (flameHeightUnits && typeof flameHeightUnits === 'object') flameHeightUnits = flameHeightUnits.ptr; return _emscripten_bind_SIGSpot_getFlameHeightForTorchingTrees_1(self, flameHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getFlameRatioForTorchingTrees'] = SIGSpot.prototype.getFlameRatioForTorchingTrees = function() { +SIGSpot.prototype['getFlameRatioForTorchingTrees'] = SIGSpot.prototype.getFlameRatioForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getFlameRatioForTorchingTrees_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxFirebrandHeightFromBurningPile'] = SIGSpot.prototype.getMaxFirebrandHeightFromBurningPile = function(firebrandHeightUnits) { +SIGSpot.prototype['getMaxFirebrandHeightFromBurningPile'] = SIGSpot.prototype.getMaxFirebrandHeightFromBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firebrandHeightUnits) { var self = this.ptr; if (firebrandHeightUnits && typeof firebrandHeightUnits === 'object') firebrandHeightUnits = firebrandHeightUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromBurningPile_1(self, firebrandHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxFirebrandHeightFromSurfaceFire'] = SIGSpot.prototype.getMaxFirebrandHeightFromSurfaceFire = function(firebrandHeightUnits) { +SIGSpot.prototype['getMaxFirebrandHeightFromSurfaceFire'] = SIGSpot.prototype.getMaxFirebrandHeightFromSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firebrandHeightUnits) { var self = this.ptr; if (firebrandHeightUnits && typeof firebrandHeightUnits === 'object') firebrandHeightUnits = firebrandHeightUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromSurfaceFire_1(self, firebrandHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxFirebrandHeightFromTorchingTrees'] = SIGSpot.prototype.getMaxFirebrandHeightFromTorchingTrees = function(firebrandHeightUnits) { +SIGSpot.prototype['getMaxFirebrandHeightFromTorchingTrees'] = SIGSpot.prototype.getMaxFirebrandHeightFromTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firebrandHeightUnits) { var self = this.ptr; if (firebrandHeightUnits && typeof firebrandHeightUnits === 'object') firebrandHeightUnits = firebrandHeightUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFirebrandHeightFromTorchingTrees_1(self, firebrandHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromBurningPile'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromBurningPile = function(spottingDistanceUnits) { +SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromBurningPile'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromBurningPile_1(self, spottingDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromSurfaceFire = function(spottingDistanceUnits) { +SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromSurfaceFire_1(self, spottingDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromTorchingTrees = function(spottingDistanceUnits) { +SIGSpot.prototype['getMaxFlatTerrainSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.getMaxFlatTerrainSpottingDistanceFromTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxFlatTerrainSpottingDistanceFromTorchingTrees_1(self, spottingDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromBurningPile'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromBurningPile = function(spottingDistanceUnits) { +SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromBurningPile'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromBurningPile_1(self, spottingDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromSurfaceFire = function(spottingDistanceUnits) { +SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromSurfaceFire_1(self, spottingDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromTorchingTrees = function(spottingDistanceUnits) { +SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromTorchingTrees_1(self, spottingDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromActiveCrown'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromActiveCrown = function(spottingDistanceUnits) { +SIGSpot.prototype['getMaxMountainousTerrainSpottingDistanceFromActiveCrown'] = SIGSpot.prototype.getMaxMountainousTerrainSpottingDistanceFromActiveCrown = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spottingDistanceUnits) { var self = this.ptr; if (spottingDistanceUnits && typeof spottingDistanceUnits === 'object') spottingDistanceUnits = spottingDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getMaxMountainousTerrainSpottingDistanceFromActiveCrown_1(self, spottingDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getRidgeToValleyDistance'] = SIGSpot.prototype.getRidgeToValleyDistance = function(ridgeToValleyDistanceUnits) { +SIGSpot.prototype['getRidgeToValleyDistance'] = SIGSpot.prototype.getRidgeToValleyDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ridgeToValleyDistanceUnits) { var self = this.ptr; if (ridgeToValleyDistanceUnits && typeof ridgeToValleyDistanceUnits === 'object') ridgeToValleyDistanceUnits = ridgeToValleyDistanceUnits.ptr; return _emscripten_bind_SIGSpot_getRidgeToValleyDistance_1(self, ridgeToValleyDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getRidgeToValleyElevation'] = SIGSpot.prototype.getRidgeToValleyElevation = function(elevationUnits) { +SIGSpot.prototype['getRidgeToValleyElevation'] = SIGSpot.prototype.getRidgeToValleyElevation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elevationUnits) { var self = this.ptr; if (elevationUnits && typeof elevationUnits === 'object') elevationUnits = elevationUnits.ptr; return _emscripten_bind_SIGSpot_getRidgeToValleyElevation_1(self, elevationUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getSurfaceFlameLength'] = SIGSpot.prototype.getSurfaceFlameLength = function(surfaceFlameLengthUnits) { +SIGSpot.prototype['getSurfaceFlameLength'] = SIGSpot.prototype.getSurfaceFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(surfaceFlameLengthUnits) { var self = this.ptr; if (surfaceFlameLengthUnits && typeof surfaceFlameLengthUnits === 'object') surfaceFlameLengthUnits = surfaceFlameLengthUnits.ptr; return _emscripten_bind_SIGSpot_getSurfaceFlameLength_1(self, surfaceFlameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getTreeHeight'] = SIGSpot.prototype.getTreeHeight = function(treeHeightUnits) { +SIGSpot.prototype['getTreeHeight'] = SIGSpot.prototype.getTreeHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeHeightUnits) { var self = this.ptr; if (treeHeightUnits && typeof treeHeightUnits === 'object') treeHeightUnits = treeHeightUnits.ptr; return _emscripten_bind_SIGSpot_getTreeHeight_1(self, treeHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getWindSpeedAtTwentyFeet'] = SIGSpot.prototype.getWindSpeedAtTwentyFeet = function(windSpeedUnits) { +SIGSpot.prototype['getWindSpeedAtTwentyFeet'] = SIGSpot.prototype.getWindSpeedAtTwentyFeet = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedUnits) { var self = this.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; return _emscripten_bind_SIGSpot_getWindSpeedAtTwentyFeet_1(self, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['getTorchingTrees'] = SIGSpot.prototype.getTorchingTrees = function() { +SIGSpot.prototype['getTorchingTrees'] = SIGSpot.prototype.getTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSpot_getTorchingTrees_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['calculateAll'] = SIGSpot.prototype.calculateAll = function() { +SIGSpot.prototype['calculateAll'] = SIGSpot.prototype.calculateAll = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSpot_calculateAll_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['calculateSpottingDistanceFromBurningPile'] = SIGSpot.prototype.calculateSpottingDistanceFromBurningPile = function() { +SIGSpot.prototype['calculateSpottingDistanceFromBurningPile'] = SIGSpot.prototype.calculateSpottingDistanceFromBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSpot_calculateSpottingDistanceFromBurningPile_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['calculateSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.calculateSpottingDistanceFromSurfaceFire = function() { +SIGSpot.prototype['calculateSpottingDistanceFromSurfaceFire'] = SIGSpot.prototype.calculateSpottingDistanceFromSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSpot_calculateSpottingDistanceFromSurfaceFire_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['calculateSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.calculateSpottingDistanceFromTorchingTrees = function() { +SIGSpot.prototype['calculateSpottingDistanceFromTorchingTrees'] = SIGSpot.prototype.calculateSpottingDistanceFromTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSpot_calculateSpottingDistanceFromTorchingTrees_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['initializeMembers'] = SIGSpot.prototype.initializeMembers = function() { +SIGSpot.prototype['initializeMembers'] = SIGSpot.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSpot_initializeMembers_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setActiveCrownFlameLength'] = SIGSpot.prototype.setActiveCrownFlameLength = function(flameLength, flameLengthUnits) { +SIGSpot.prototype['setActiveCrownFlameLength'] = SIGSpot.prototype.setActiveCrownFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLength, flameLengthUnits) { var self = this.ptr; if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; _emscripten_bind_SIGSpot_setActiveCrownFlameLength_2(self, flameLength, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setBurningPileFlameHeight'] = SIGSpot.prototype.setBurningPileFlameHeight = function(buringPileflameHeight, flameHeightUnits) { +SIGSpot.prototype['setBurningPileFlameHeight'] = SIGSpot.prototype.setBurningPileFlameHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(buringPileflameHeight, flameHeightUnits) { var self = this.ptr; if (buringPileflameHeight && typeof buringPileflameHeight === 'object') buringPileflameHeight = buringPileflameHeight.ptr; if (flameHeightUnits && typeof flameHeightUnits === 'object') flameHeightUnits = flameHeightUnits.ptr; _emscripten_bind_SIGSpot_setBurningPileFlameHeight_2(self, buringPileflameHeight, flameHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setDBH'] = SIGSpot.prototype.setDBH = function(DBH, DBHUnits) { +SIGSpot.prototype['setDBH'] = SIGSpot.prototype.setDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(DBH, DBHUnits) { var self = this.ptr; if (DBH && typeof DBH === 'object') DBH = DBH.ptr; if (DBHUnits && typeof DBHUnits === 'object') DBHUnits = DBHUnits.ptr; _emscripten_bind_SIGSpot_setDBH_2(self, DBH, DBHUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setDownwindCanopyMode'] = SIGSpot.prototype.setDownwindCanopyMode = function(downwindCanopyMode) { +SIGSpot.prototype['setDownwindCanopyMode'] = SIGSpot.prototype.setDownwindCanopyMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(downwindCanopyMode) { var self = this.ptr; if (downwindCanopyMode && typeof downwindCanopyMode === 'object') downwindCanopyMode = downwindCanopyMode.ptr; _emscripten_bind_SIGSpot_setDownwindCanopyMode_1(self, downwindCanopyMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setDownwindCoverHeight'] = SIGSpot.prototype.setDownwindCoverHeight = function(downwindCoverHeight, coverHeightUnits) { +SIGSpot.prototype['setDownwindCoverHeight'] = SIGSpot.prototype.setDownwindCoverHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(downwindCoverHeight, coverHeightUnits) { var self = this.ptr; if (downwindCoverHeight && typeof downwindCoverHeight === 'object') downwindCoverHeight = downwindCoverHeight.ptr; if (coverHeightUnits && typeof coverHeightUnits === 'object') coverHeightUnits = coverHeightUnits.ptr; _emscripten_bind_SIGSpot_setDownwindCoverHeight_2(self, downwindCoverHeight, coverHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setFireType'] = SIGSpot.prototype.setFireType = function(fireType) { +SIGSpot.prototype['setFireType'] = SIGSpot.prototype.setFireType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fireType) { var self = this.ptr; if (fireType && typeof fireType === 'object') fireType = fireType.ptr; _emscripten_bind_SIGSpot_setFireType_1(self, fireType); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setFlameLength'] = SIGSpot.prototype.setFlameLength = function(flameLength, flameLengthUnits) { +SIGSpot.prototype['setFlameLength'] = SIGSpot.prototype.setFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLength, flameLengthUnits) { var self = this.ptr; if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; _emscripten_bind_SIGSpot_setFlameLength_2(self, flameLength, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setFirelineIntensity'] = SIGSpot.prototype.setFirelineIntensity = function(firelineIntensity, firelineIntensityUnits) { +SIGSpot.prototype['setFirelineIntensity'] = SIGSpot.prototype.setFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensity, firelineIntensityUnits) { var self = this.ptr; if (firelineIntensity && typeof firelineIntensity === 'object') firelineIntensity = firelineIntensity.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGSpot_setFirelineIntensity_2(self, firelineIntensity, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setLocation'] = SIGSpot.prototype.setLocation = function(location) { +SIGSpot.prototype['setLocation'] = SIGSpot.prototype.setLocation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(location) { var self = this.ptr; if (location && typeof location === 'object') location = location.ptr; _emscripten_bind_SIGSpot_setLocation_1(self, location); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setRidgeToValleyDistance'] = SIGSpot.prototype.setRidgeToValleyDistance = function(ridgeToValleyDistance, ridgeToValleyDistanceUnits) { +SIGSpot.prototype['setRidgeToValleyDistance'] = SIGSpot.prototype.setRidgeToValleyDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ridgeToValleyDistance, ridgeToValleyDistanceUnits) { var self = this.ptr; if (ridgeToValleyDistance && typeof ridgeToValleyDistance === 'object') ridgeToValleyDistance = ridgeToValleyDistance.ptr; if (ridgeToValleyDistanceUnits && typeof ridgeToValleyDistanceUnits === 'object') ridgeToValleyDistanceUnits = ridgeToValleyDistanceUnits.ptr; _emscripten_bind_SIGSpot_setRidgeToValleyDistance_2(self, ridgeToValleyDistance, ridgeToValleyDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setRidgeToValleyElevation'] = SIGSpot.prototype.setRidgeToValleyElevation = function(ridgeToValleyElevation, elevationUnits) { +SIGSpot.prototype['setRidgeToValleyElevation'] = SIGSpot.prototype.setRidgeToValleyElevation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ridgeToValleyElevation, elevationUnits) { var self = this.ptr; if (ridgeToValleyElevation && typeof ridgeToValleyElevation === 'object') ridgeToValleyElevation = ridgeToValleyElevation.ptr; if (elevationUnits && typeof elevationUnits === 'object') elevationUnits = elevationUnits.ptr; _emscripten_bind_SIGSpot_setRidgeToValleyElevation_2(self, ridgeToValleyElevation, elevationUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setTorchingTrees'] = SIGSpot.prototype.setTorchingTrees = function(torchingTrees) { +SIGSpot.prototype['setTorchingTrees'] = SIGSpot.prototype.setTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(torchingTrees) { var self = this.ptr; if (torchingTrees && typeof torchingTrees === 'object') torchingTrees = torchingTrees.ptr; _emscripten_bind_SIGSpot_setTorchingTrees_1(self, torchingTrees); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setTreeHeight'] = SIGSpot.prototype.setTreeHeight = function(treeHeight, treeHeightUnits) { +SIGSpot.prototype['setTreeHeight'] = SIGSpot.prototype.setTreeHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeHeight, treeHeightUnits) { var self = this.ptr; if (treeHeight && typeof treeHeight === 'object') treeHeight = treeHeight.ptr; if (treeHeightUnits && typeof treeHeightUnits === 'object') treeHeightUnits = treeHeightUnits.ptr; _emscripten_bind_SIGSpot_setTreeHeight_2(self, treeHeight, treeHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setTreeSpecies'] = SIGSpot.prototype.setTreeSpecies = function(treeSpecies) { +SIGSpot.prototype['setTreeSpecies'] = SIGSpot.prototype.setTreeSpecies = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeSpecies) { var self = this.ptr; if (treeSpecies && typeof treeSpecies === 'object') treeSpecies = treeSpecies.ptr; _emscripten_bind_SIGSpot_setTreeSpecies_1(self, treeSpecies); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setWindSpeedAtTwentyFeet'] = SIGSpot.prototype.setWindSpeedAtTwentyFeet = function(windSpeedAtTwentyFeet, windSpeedUnits) { +SIGSpot.prototype['setWindSpeedAtTwentyFeet'] = SIGSpot.prototype.setWindSpeedAtTwentyFeet = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedAtTwentyFeet, windSpeedUnits) { var self = this.ptr; if (windSpeedAtTwentyFeet && typeof windSpeedAtTwentyFeet === 'object') windSpeedAtTwentyFeet = windSpeedAtTwentyFeet.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSpot_setWindSpeedAtTwentyFeet_2(self, windSpeedAtTwentyFeet, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setWindSpeed'] = SIGSpot.prototype.setWindSpeed = function(windSpeed, windSpeedUnits) { +SIGSpot.prototype['setWindSpeed'] = SIGSpot.prototype.setWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSpot_setWindSpeed_2(self, windSpeed, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setWindSpeedAndWindHeightInputMode'] = SIGSpot.prototype.setWindSpeedAndWindHeightInputMode = function(windSpeed, windSpeedUnits, windHeightInputMode) { +SIGSpot.prototype['setWindSpeedAndWindHeightInputMode'] = SIGSpot.prototype.setWindSpeedAndWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits, windHeightInputMode) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGSpot_setWindSpeedAndWindHeightInputMode_3(self, windSpeed, windSpeedUnits, windHeightInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['setWindHeightInputMode'] = SIGSpot.prototype.setWindHeightInputMode = function(windHeightInputMode) { +SIGSpot.prototype['setWindHeightInputMode'] = SIGSpot.prototype.setWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windHeightInputMode) { var self = this.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGSpot_setWindHeightInputMode_1(self, windHeightInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['updateSpotInputsForBurningPile'] = SIGSpot.prototype.updateSpotInputsForBurningPile = function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, buringPileFlameHeight, flameHeightUnits, windSpeedAtTwentyFeet, windSpeedUnits) { +SIGSpot.prototype['updateSpotInputsForBurningPile'] = SIGSpot.prototype.updateSpotInputsForBurningPile = /** @suppress {undefinedVars, duplicate} @this{Object} */function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, buringPileFlameHeight, flameHeightUnits, windSpeedAtTwentyFeet, windSpeedUnits) { var self = this.ptr; if (location && typeof location === 'object') location = location.ptr; if (ridgeToValleyDistance && typeof ridgeToValleyDistance === 'object') ridgeToValleyDistance = ridgeToValleyDistance.ptr; @@ -9910,10 +9518,9 @@ SIGSpot.prototype['updateSpotInputsForBurningPile'] = SIGSpot.prototype.updateSp if (windSpeedAtTwentyFeet && typeof windSpeedAtTwentyFeet === 'object') windSpeedAtTwentyFeet = windSpeedAtTwentyFeet.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSpot_updateSpotInputsForBurningPile_12(self, location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, buringPileFlameHeight, flameHeightUnits, windSpeedAtTwentyFeet, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['updateSpotInputsForSurfaceFire'] = SIGSpot.prototype.updateSpotInputsForSurfaceFire = function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, windSpeedAtTwentyFeet, windSpeedUnits, flameLength, flameLengthUnits) { +SIGSpot.prototype['updateSpotInputsForSurfaceFire'] = SIGSpot.prototype.updateSpotInputsForSurfaceFire = /** @suppress {undefinedVars, duplicate} @this{Object} */function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, windSpeedAtTwentyFeet, windSpeedUnits, flameLength, flameLengthUnits) { var self = this.ptr; if (location && typeof location === 'object') location = location.ptr; if (ridgeToValleyDistance && typeof ridgeToValleyDistance === 'object') ridgeToValleyDistance = ridgeToValleyDistance.ptr; @@ -9928,10 +9535,9 @@ SIGSpot.prototype['updateSpotInputsForSurfaceFire'] = SIGSpot.prototype.updateSp if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; _emscripten_bind_SIGSpot_updateSpotInputsForSurfaceFire_12(self, location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, windSpeedAtTwentyFeet, windSpeedUnits, flameLength, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['updateSpotInputsForTorchingTrees'] = SIGSpot.prototype.updateSpotInputsForTorchingTrees = function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, torchingTrees, DBH, DBHUnits, treeHeight, treeHeightUnits, treeSpecies, windSpeedAtTwentyFeet, windSpeedUnits) { +SIGSpot.prototype['updateSpotInputsForTorchingTrees'] = SIGSpot.prototype.updateSpotInputsForTorchingTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function(location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, torchingTrees, DBH, DBHUnits, treeHeight, treeHeightUnits, treeSpecies, windSpeedAtTwentyFeet, windSpeedUnits) { var self = this.ptr; if (location && typeof location === 'object') location = location.ptr; if (ridgeToValleyDistance && typeof ridgeToValleyDistance === 'object') ridgeToValleyDistance = ridgeToValleyDistance.ptr; @@ -9950,74 +9556,62 @@ SIGSpot.prototype['updateSpotInputsForTorchingTrees'] = SIGSpot.prototype.update if (windSpeedAtTwentyFeet && typeof windSpeedAtTwentyFeet === 'object') windSpeedAtTwentyFeet = windSpeedAtTwentyFeet.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSpot_updateSpotInputsForTorchingTrees_16(self, location, ridgeToValleyDistance, ridgeToValleyDistanceUnits, ridgeToValleyElevation, elevationUnits, downwindCoverHeight, coverHeightUnits, downwindCanopyMode, torchingTrees, DBH, DBHUnits, treeHeight, treeHeightUnits, treeSpecies, windSpeedAtTwentyFeet, windSpeedUnits); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSpot.prototype['__destroy__'] = SIGSpot.prototype.__destroy__ = function() { + SIGSpot.prototype['__destroy__'] = SIGSpot.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSpot___destroy___0(self); }; - -// Interface: SIGFuelModels - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGFuelModels(rhs) { +// SIGFuelModels +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGFuelModels(rhs) { if (rhs && typeof rhs === 'object') rhs = rhs.ptr; if (rhs === undefined) { this.ptr = _emscripten_bind_SIGFuelModels_SIGFuelModels_0(); getCache(SIGFuelModels)[this.ptr] = this;return } this.ptr = _emscripten_bind_SIGFuelModels_SIGFuelModels_1(rhs); getCache(SIGFuelModels)[this.ptr] = this; -}; - +};; SIGFuelModels.prototype = Object.create(WrapperObject.prototype); SIGFuelModels.prototype.constructor = SIGFuelModels; SIGFuelModels.prototype.__class__ = SIGFuelModels; SIGFuelModels.__cache__ = {}; Module['SIGFuelModels'] = SIGFuelModels; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['equal'] = SIGFuelModels.prototype.equal = function(rhs) { + +SIGFuelModels.prototype['equal'] = SIGFuelModels.prototype.equal = /** @suppress {undefinedVars, duplicate} @this{Object} */function(rhs) { var self = this.ptr; if (rhs && typeof rhs === 'object') rhs = rhs.ptr; return wrapPointer(_emscripten_bind_SIGFuelModels_equal_1(self, rhs), SIGFuelModels); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['clearCustomFuelModel'] = SIGFuelModels.prototype.clearCustomFuelModel = function(fuelModelNumber) { +SIGFuelModels.prototype['clearCustomFuelModel'] = SIGFuelModels.prototype.clearCustomFuelModel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_clearCustomFuelModel_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getIsDynamic'] = SIGFuelModels.prototype.getIsDynamic = function(fuelModelNumber) { +SIGFuelModels.prototype['getIsDynamic'] = SIGFuelModels.prototype.getIsDynamic = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_getIsDynamic_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['isAllFuelLoadZero'] = SIGFuelModels.prototype.isAllFuelLoadZero = function(fuelModelNumber) { +SIGFuelModels.prototype['isAllFuelLoadZero'] = SIGFuelModels.prototype.isAllFuelLoadZero = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_isAllFuelLoadZero_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['isFuelModelDefined'] = SIGFuelModels.prototype.isFuelModelDefined = function(fuelModelNumber) { +SIGFuelModels.prototype['isFuelModelDefined'] = SIGFuelModels.prototype.isFuelModelDefined = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_isFuelModelDefined_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['isFuelModelReserved'] = SIGFuelModels.prototype.isFuelModelReserved = function(fuelModelNumber) { +SIGFuelModels.prototype['isFuelModelReserved'] = SIGFuelModels.prototype.isFuelModelReserved = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGFuelModels_isFuelModelReserved_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['setCustomFuelModel'] = SIGFuelModels.prototype.setCustomFuelModel = function(fuelModelNumber, code, name, fuelBedDepth, lengthUnits, moistureOfExtinctionDead, moistureUnits, heatOfCombustionDead, heatOfCombustionLive, heatOfCombustionUnits, fuelLoadOneHour, fuelLoadTenHour, fuelLoadHundredHour, fuelLoadLiveHerbaceous, fuelLoadLiveWoody, loadingUnits, savrOneHour, savrLiveHerbaceous, savrLiveWoody, savrUnits, isDynamic) { +SIGFuelModels.prototype['setCustomFuelModel'] = SIGFuelModels.prototype.setCustomFuelModel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, code, name, fuelBedDepth, lengthUnits, moistureOfExtinctionDead, moistureUnits, heatOfCombustionDead, heatOfCombustionLive, heatOfCombustionUnits, fuelLoadOneHour, fuelLoadTenHour, fuelLoadHundredHour, fuelLoadLiveHerbaceous, fuelLoadLiveWoody, loadingUnits, savrOneHour, savrLiveHerbaceous, savrLiveWoody, savrUnits, isDynamic) { var self = this.ptr; ensureCache.prepare(); if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; @@ -10044,1665 +9638,1433 @@ SIGFuelModels.prototype['setCustomFuelModel'] = SIGFuelModels.prototype.setCusto if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; if (isDynamic && typeof isDynamic === 'object') isDynamic = isDynamic.ptr; return !!(_emscripten_bind_SIGFuelModels_setCustomFuelModel_21(self, fuelModelNumber, code, name, fuelBedDepth, lengthUnits, moistureOfExtinctionDead, moistureUnits, heatOfCombustionDead, heatOfCombustionLive, heatOfCombustionUnits, fuelLoadOneHour, fuelLoadTenHour, fuelLoadHundredHour, fuelLoadLiveHerbaceous, fuelLoadLiveWoody, loadingUnits, savrOneHour, savrLiveHerbaceous, savrLiveWoody, savrUnits, isDynamic)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getFuelCode'] = SIGFuelModels.prototype.getFuelCode = function(fuelModelNumber) { +SIGFuelModels.prototype['getFuelCode'] = SIGFuelModels.prototype.getFuelCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGFuelModels_getFuelCode_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getFuelName'] = SIGFuelModels.prototype.getFuelName = function(fuelModelNumber) { +SIGFuelModels.prototype['getFuelName'] = SIGFuelModels.prototype.getFuelName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGFuelModels_getFuelName_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getFuelLoadHundredHour'] = SIGFuelModels.prototype.getFuelLoadHundredHour = function(fuelModelNumber, loadingUnits) { +SIGFuelModels.prototype['getFuelLoadHundredHour'] = SIGFuelModels.prototype.getFuelLoadHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadHundredHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getFuelLoadLiveHerbaceous'] = SIGFuelModels.prototype.getFuelLoadLiveHerbaceous = function(fuelModelNumber, loadingUnits) { +SIGFuelModels.prototype['getFuelLoadLiveHerbaceous'] = SIGFuelModels.prototype.getFuelLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadLiveHerbaceous_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getFuelLoadLiveWoody'] = SIGFuelModels.prototype.getFuelLoadLiveWoody = function(fuelModelNumber, loadingUnits) { +SIGFuelModels.prototype['getFuelLoadLiveWoody'] = SIGFuelModels.prototype.getFuelLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadLiveWoody_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getFuelLoadOneHour'] = SIGFuelModels.prototype.getFuelLoadOneHour = function(fuelModelNumber, loadingUnits) { +SIGFuelModels.prototype['getFuelLoadOneHour'] = SIGFuelModels.prototype.getFuelLoadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadOneHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getFuelLoadTenHour'] = SIGFuelModels.prototype.getFuelLoadTenHour = function(fuelModelNumber, loadingUnits) { +SIGFuelModels.prototype['getFuelLoadTenHour'] = SIGFuelModels.prototype.getFuelLoadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelLoadTenHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getFuelbedDepth'] = SIGFuelModels.prototype.getFuelbedDepth = function(fuelModelNumber, lengthUnits) { +SIGFuelModels.prototype['getFuelbedDepth'] = SIGFuelModels.prototype.getFuelbedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, lengthUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGFuelModels_getFuelbedDepth_2(self, fuelModelNumber, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getHeatOfCombustionDead'] = SIGFuelModels.prototype.getHeatOfCombustionDead = function(fuelModelNumber, heatOfCombustionUnits) { +SIGFuelModels.prototype['getHeatOfCombustionDead'] = SIGFuelModels.prototype.getHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGFuelModels_getHeatOfCombustionDead_2(self, fuelModelNumber, heatOfCombustionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getMoistureOfExtinctionDead'] = SIGFuelModels.prototype.getMoistureOfExtinctionDead = function(fuelModelNumber, moistureUnits) { +SIGFuelModels.prototype['getMoistureOfExtinctionDead'] = SIGFuelModels.prototype.getMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGFuelModels_getMoistureOfExtinctionDead_2(self, fuelModelNumber, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getSavrLiveHerbaceous'] = SIGFuelModels.prototype.getSavrLiveHerbaceous = function(fuelModelNumber, savrUnits) { +SIGFuelModels.prototype['getSavrLiveHerbaceous'] = SIGFuelModels.prototype.getSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGFuelModels_getSavrLiveHerbaceous_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getSavrLiveWoody'] = SIGFuelModels.prototype.getSavrLiveWoody = function(fuelModelNumber, savrUnits) { +SIGFuelModels.prototype['getSavrLiveWoody'] = SIGFuelModels.prototype.getSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGFuelModels_getSavrLiveWoody_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getSavrOneHour'] = SIGFuelModels.prototype.getSavrOneHour = function(fuelModelNumber, savrUnits) { +SIGFuelModels.prototype['getSavrOneHour'] = SIGFuelModels.prototype.getSavrOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGFuelModels_getSavrOneHour_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['getHeatOfCombustionLive'] = SIGFuelModels.prototype.getHeatOfCombustionLive = function(fuelModelNumber, heatOfCombustionUnits) { +SIGFuelModels.prototype['getHeatOfCombustionLive'] = SIGFuelModels.prototype.getHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGFuelModels_getHeatOfCombustionLive_2(self, fuelModelNumber, heatOfCombustionUnits); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFuelModels.prototype['__destroy__'] = SIGFuelModels.prototype.__destroy__ = function() { + SIGFuelModels.prototype['__destroy__'] = SIGFuelModels.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGFuelModels___destroy___0(self); }; - -// Interface: SIGSurface - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGSurface(fuelModels) { +// SIGSurface +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGSurface(fuelModels) { if (fuelModels && typeof fuelModels === 'object') fuelModels = fuelModels.ptr; this.ptr = _emscripten_bind_SIGSurface_SIGSurface_1(fuelModels); getCache(SIGSurface)[this.ptr] = this; -}; - +};; SIGSurface.prototype = Object.create(WrapperObject.prototype); SIGSurface.prototype.constructor = SIGSurface; SIGSurface.prototype.__class__ = SIGSurface; SIGSurface.__cache__ = {}; Module['SIGSurface'] = SIGSurface; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenFireSeverity'] = SIGSurface.prototype.getAspenFireSeverity = function() { + +SIGSurface.prototype['getAspenFireSeverity'] = SIGSurface.prototype.getAspenFireSeverity = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getAspenFireSeverity_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralFuelType'] = SIGSurface.prototype.getChaparralFuelType = function() { +SIGSurface.prototype['getChaparralFuelType'] = SIGSurface.prototype.getChaparralFuelType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getChaparralFuelType_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureInputMode'] = SIGSurface.prototype.getMoistureInputMode = function() { +SIGSurface.prototype['getMoistureInputMode'] = SIGSurface.prototype.getMoistureInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getMoistureInputMode_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getWindAdjustmentFactorCalculationMethod'] = SIGSurface.prototype.getWindAdjustmentFactorCalculationMethod = function() { +SIGSurface.prototype['getWindAdjustmentFactorCalculationMethod'] = SIGSurface.prototype.getWindAdjustmentFactorCalculationMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindAdjustmentFactorCalculationMethod_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getWindAndSpreadOrientationMode'] = SIGSurface.prototype.getWindAndSpreadOrientationMode = function() { +SIGSurface.prototype['getWindAndSpreadOrientationMode'] = SIGSurface.prototype.getWindAndSpreadOrientationMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindAndSpreadOrientationMode_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getWindHeightInputMode'] = SIGSurface.prototype.getWindHeightInputMode = function() { +SIGSurface.prototype['getWindHeightInputMode'] = SIGSurface.prototype.getWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindHeightInputMode_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getWindUpslopeAlignmentMode'] = SIGSurface.prototype.getWindUpslopeAlignmentMode = function() { +SIGSurface.prototype['getWindUpslopeAlignmentMode'] = SIGSurface.prototype.getWindUpslopeAlignmentMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindUpslopeAlignmentMode_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getSurfaceRunInDirectionOf'] = SIGSurface.prototype.getSurfaceRunInDirectionOf = function() { +SIGSurface.prototype['getSurfaceRunInDirectionOf'] = SIGSurface.prototype.getSurfaceRunInDirectionOf = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getSurfaceRunInDirectionOf_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGSurface.prototype.getIsMoistureScenarioDefinedByIndex = function(index) { +SIGSurface.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGSurface.prototype.getIsMoistureScenarioDefinedByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return !!(_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getIsMoistureScenarioDefinedByName'] = SIGSurface.prototype.getIsMoistureScenarioDefinedByName = function(name) { +SIGSurface.prototype['getIsMoistureScenarioDefinedByName'] = SIGSurface.prototype.getIsMoistureScenarioDefinedByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return !!(_emscripten_bind_SIGSurface_getIsMoistureScenarioDefinedByName_1(self, name)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getIsUsingChaparral'] = SIGSurface.prototype.getIsUsingChaparral = function() { +SIGSurface.prototype['getIsUsingChaparral'] = SIGSurface.prototype.getIsUsingChaparral = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return !!(_emscripten_bind_SIGSurface_getIsUsingChaparral_0(self)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getIsUsingPalmettoGallberry'] = SIGSurface.prototype.getIsUsingPalmettoGallberry = function() { +SIGSurface.prototype['getIsUsingPalmettoGallberry'] = SIGSurface.prototype.getIsUsingPalmettoGallberry = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return !!(_emscripten_bind_SIGSurface_getIsUsingPalmettoGallberry_0(self)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getIsUsingWesternAspen'] = SIGSurface.prototype.getIsUsingWesternAspen = function() { +SIGSurface.prototype['getIsUsingWesternAspen'] = SIGSurface.prototype.getIsUsingWesternAspen = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return !!(_emscripten_bind_SIGSurface_getIsUsingWesternAspen_0(self)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['isAllFuelLoadZero'] = SIGSurface.prototype.isAllFuelLoadZero = function(fuelModelNumber) { +SIGSurface.prototype['isAllFuelLoadZero'] = SIGSurface.prototype.isAllFuelLoadZero = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGSurface_isAllFuelLoadZero_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['isFuelDynamic'] = SIGSurface.prototype.isFuelDynamic = function(fuelModelNumber) { +SIGSurface.prototype['isFuelDynamic'] = SIGSurface.prototype.isFuelDynamic = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGSurface_isFuelDynamic_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['isFuelModelDefined'] = SIGSurface.prototype.isFuelModelDefined = function(fuelModelNumber) { +SIGSurface.prototype['isFuelModelDefined'] = SIGSurface.prototype.isFuelModelDefined = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGSurface_isFuelModelDefined_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['isFuelModelReserved'] = SIGSurface.prototype.isFuelModelReserved = function(fuelModelNumber) { +SIGSurface.prototype['isFuelModelReserved'] = SIGSurface.prototype.isFuelModelReserved = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGSurface_isFuelModelReserved_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['isMoistureClassInputNeededForCurrentFuelModel'] = SIGSurface.prototype.isMoistureClassInputNeededForCurrentFuelModel = function(moistureClass) { +SIGSurface.prototype['isMoistureClassInputNeededForCurrentFuelModel'] = SIGSurface.prototype.isMoistureClassInputNeededForCurrentFuelModel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureClass) { var self = this.ptr; if (moistureClass && typeof moistureClass === 'object') moistureClass = moistureClass.ptr; return !!(_emscripten_bind_SIGSurface_isMoistureClassInputNeededForCurrentFuelModel_1(self, moistureClass)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['isUsingTwoFuelModels'] = SIGSurface.prototype.isUsingTwoFuelModels = function() { +SIGSurface.prototype['isUsingTwoFuelModels'] = SIGSurface.prototype.isUsingTwoFuelModels = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return !!(_emscripten_bind_SIGSurface_isUsingTwoFuelModels_0(self)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setCurrentMoistureScenarioByIndex'] = SIGSurface.prototype.setCurrentMoistureScenarioByIndex = function(moistureScenarioIndex) { +SIGSurface.prototype['setCurrentMoistureScenarioByIndex'] = SIGSurface.prototype.setCurrentMoistureScenarioByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarioIndex) { var self = this.ptr; if (moistureScenarioIndex && typeof moistureScenarioIndex === 'object') moistureScenarioIndex = moistureScenarioIndex.ptr; return !!(_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByIndex_1(self, moistureScenarioIndex)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setCurrentMoistureScenarioByName'] = SIGSurface.prototype.setCurrentMoistureScenarioByName = function(moistureScenarioName) { +SIGSurface.prototype['setCurrentMoistureScenarioByName'] = SIGSurface.prototype.setCurrentMoistureScenarioByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarioName) { var self = this.ptr; ensureCache.prepare(); if (moistureScenarioName && typeof moistureScenarioName === 'object') moistureScenarioName = moistureScenarioName.ptr; else moistureScenarioName = ensureString(moistureScenarioName); return !!(_emscripten_bind_SIGSurface_setCurrentMoistureScenarioByName_1(self, moistureScenarioName)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['calculateFlameLength'] = SIGSurface.prototype.calculateFlameLength = function(firelineIntensity, firelineIntensityUnits, flameLengthUnits) { +SIGSurface.prototype['calculateFlameLength'] = SIGSurface.prototype.calculateFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensity, firelineIntensityUnits, flameLengthUnits) { var self = this.ptr; if (firelineIntensity && typeof firelineIntensity === 'object') firelineIntensity = firelineIntensity.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_calculateFlameLength_3(self, firelineIntensity, firelineIntensityUnits, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAgeOfRough'] = SIGSurface.prototype.getAgeOfRough = function() { +SIGSurface.prototype['getAgeOfRough'] = SIGSurface.prototype.getAgeOfRough = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getAgeOfRough_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspect'] = SIGSurface.prototype.getAspect = function() { +SIGSurface.prototype['getAspect'] = SIGSurface.prototype.getAspect = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getAspect_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenCuringLevel'] = SIGSurface.prototype.getAspenCuringLevel = function(curingLevelUnits) { +SIGSurface.prototype['getAspenCuringLevel'] = SIGSurface.prototype.getAspenCuringLevel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(curingLevelUnits) { var self = this.ptr; if (curingLevelUnits && typeof curingLevelUnits === 'object') curingLevelUnits = curingLevelUnits.ptr; return _emscripten_bind_SIGSurface_getAspenCuringLevel_1(self, curingLevelUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenDBH'] = SIGSurface.prototype.getAspenDBH = function(dbhUnits) { +SIGSurface.prototype['getAspenDBH'] = SIGSurface.prototype.getAspenDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dbhUnits) { var self = this.ptr; if (dbhUnits && typeof dbhUnits === 'object') dbhUnits = dbhUnits.ptr; return _emscripten_bind_SIGSurface_getAspenDBH_1(self, dbhUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenLoadDeadOneHour'] = SIGSurface.prototype.getAspenLoadDeadOneHour = function(loadingUnits) { +SIGSurface.prototype['getAspenLoadDeadOneHour'] = SIGSurface.prototype.getAspenLoadDeadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getAspenLoadDeadOneHour_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenLoadDeadTenHour'] = SIGSurface.prototype.getAspenLoadDeadTenHour = function(loadingUnits) { +SIGSurface.prototype['getAspenLoadDeadTenHour'] = SIGSurface.prototype.getAspenLoadDeadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getAspenLoadDeadTenHour_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenLoadLiveHerbaceous'] = SIGSurface.prototype.getAspenLoadLiveHerbaceous = function(loadingUnits) { +SIGSurface.prototype['getAspenLoadLiveHerbaceous'] = SIGSurface.prototype.getAspenLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getAspenLoadLiveHerbaceous_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenLoadLiveWoody'] = SIGSurface.prototype.getAspenLoadLiveWoody = function(loadingUnits) { +SIGSurface.prototype['getAspenLoadLiveWoody'] = SIGSurface.prototype.getAspenLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getAspenLoadLiveWoody_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenSavrDeadOneHour'] = SIGSurface.prototype.getAspenSavrDeadOneHour = function(savrUnits) { +SIGSurface.prototype['getAspenSavrDeadOneHour'] = SIGSurface.prototype.getAspenSavrDeadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getAspenSavrDeadOneHour_1(self, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenSavrDeadTenHour'] = SIGSurface.prototype.getAspenSavrDeadTenHour = function(savrUnits) { +SIGSurface.prototype['getAspenSavrDeadTenHour'] = SIGSurface.prototype.getAspenSavrDeadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getAspenSavrDeadTenHour_1(self, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenSavrLiveHerbaceous'] = SIGSurface.prototype.getAspenSavrLiveHerbaceous = function(savrUnits) { +SIGSurface.prototype['getAspenSavrLiveHerbaceous'] = SIGSurface.prototype.getAspenSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getAspenSavrLiveHerbaceous_1(self, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenSavrLiveWoody'] = SIGSurface.prototype.getAspenSavrLiveWoody = function(savrUnits) { +SIGSurface.prototype['getAspenSavrLiveWoody'] = SIGSurface.prototype.getAspenSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getAspenSavrLiveWoody_1(self, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getBackingFirelineIntensity'] = SIGSurface.prototype.getBackingFirelineIntensity = function(firelineIntensityUnits) { +SIGSurface.prototype['getBackingFirelineIntensity'] = SIGSurface.prototype.getBackingFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getBackingFirelineIntensity_1(self, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getBackingFlameLength'] = SIGSurface.prototype.getBackingFlameLength = function(flameLengthUnits) { +SIGSurface.prototype['getBackingFlameLength'] = SIGSurface.prototype.getBackingFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_getBackingFlameLength_1(self, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getBackingSpreadDistance'] = SIGSurface.prototype.getBackingSpreadDistance = function(lengthUnits) { +SIGSurface.prototype['getBackingSpreadDistance'] = SIGSurface.prototype.getBackingSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getBackingSpreadDistance_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getBackingSpreadRate'] = SIGSurface.prototype.getBackingSpreadRate = function(spreadRateUnits) { +SIGSurface.prototype['getBackingSpreadRate'] = SIGSurface.prototype.getBackingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getBackingSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getBulkDensity'] = SIGSurface.prototype.getBulkDensity = function(densityUnits) { +SIGSurface.prototype['getBulkDensity'] = SIGSurface.prototype.getBulkDensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(densityUnits) { var self = this.ptr; if (densityUnits && typeof densityUnits === 'object') densityUnits = densityUnits.ptr; return _emscripten_bind_SIGSurface_getBulkDensity_1(self, densityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getCanopyCover'] = SIGSurface.prototype.getCanopyCover = function(coverUnits) { +SIGSurface.prototype['getCanopyCover'] = SIGSurface.prototype.getCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverUnits) { var self = this.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; return _emscripten_bind_SIGSurface_getCanopyCover_1(self, coverUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getCanopyHeight'] = SIGSurface.prototype.getCanopyHeight = function(canopyHeightUnits) { +SIGSurface.prototype['getCanopyHeight'] = SIGSurface.prototype.getCanopyHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeightUnits) { var self = this.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; return _emscripten_bind_SIGSurface_getCanopyHeight_1(self, canopyHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralAge'] = SIGSurface.prototype.getChaparralAge = function(ageUnits) { +SIGSurface.prototype['getChaparralAge'] = SIGSurface.prototype.getChaparralAge = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageUnits) { var self = this.ptr; if (ageUnits && typeof ageUnits === 'object') ageUnits = ageUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralAge_1(self, ageUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralDaysSinceMayFirst'] = SIGSurface.prototype.getChaparralDaysSinceMayFirst = function() { +SIGSurface.prototype['getChaparralDaysSinceMayFirst'] = SIGSurface.prototype.getChaparralDaysSinceMayFirst = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getChaparralDaysSinceMayFirst_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralDeadFuelFraction'] = SIGSurface.prototype.getChaparralDeadFuelFraction = function() { +SIGSurface.prototype['getChaparralDeadFuelFraction'] = SIGSurface.prototype.getChaparralDeadFuelFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getChaparralDeadFuelFraction_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralDeadMoistureOfExtinction'] = SIGSurface.prototype.getChaparralDeadMoistureOfExtinction = function(moistureUnits) { +SIGSurface.prototype['getChaparralDeadMoistureOfExtinction'] = SIGSurface.prototype.getChaparralDeadMoistureOfExtinction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralDeadMoistureOfExtinction_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralDensity'] = SIGSurface.prototype.getChaparralDensity = function(lifeState, sizeClass, densityUnits) { +SIGSurface.prototype['getChaparralDensity'] = SIGSurface.prototype.getChaparralDensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState, sizeClass, densityUnits) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; if (sizeClass && typeof sizeClass === 'object') sizeClass = sizeClass.ptr; if (densityUnits && typeof densityUnits === 'object') densityUnits = densityUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralDensity_3(self, lifeState, sizeClass, densityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralFuelBedDepth'] = SIGSurface.prototype.getChaparralFuelBedDepth = function(depthUnits) { +SIGSurface.prototype['getChaparralFuelBedDepth'] = SIGSurface.prototype.getChaparralFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(depthUnits) { var self = this.ptr; if (depthUnits && typeof depthUnits === 'object') depthUnits = depthUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralFuelBedDepth_1(self, depthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralFuelDeadLoadFraction'] = SIGSurface.prototype.getChaparralFuelDeadLoadFraction = function() { +SIGSurface.prototype['getChaparralFuelDeadLoadFraction'] = SIGSurface.prototype.getChaparralFuelDeadLoadFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getChaparralFuelDeadLoadFraction_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralHeatOfCombustion'] = SIGSurface.prototype.getChaparralHeatOfCombustion = function(lifeState, sizeClass, heatOfCombustionUnits) { +SIGSurface.prototype['getChaparralHeatOfCombustion'] = SIGSurface.prototype.getChaparralHeatOfCombustion = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState, sizeClass, heatOfCombustionUnits) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; if (sizeClass && typeof sizeClass === 'object') sizeClass = sizeClass.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralHeatOfCombustion_3(self, lifeState, sizeClass, heatOfCombustionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLiveMoistureOfExtinction'] = SIGSurface.prototype.getChaparralLiveMoistureOfExtinction = function(moistureUnits) { +SIGSurface.prototype['getChaparralLiveMoistureOfExtinction'] = SIGSurface.prototype.getChaparralLiveMoistureOfExtinction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLiveMoistureOfExtinction_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadDeadHalfInchToLessThanOneInch'] = SIGSurface.prototype.getChaparralLoadDeadHalfInchToLessThanOneInch = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadDeadHalfInchToLessThanOneInch'] = SIGSurface.prototype.getChaparralLoadDeadHalfInchToLessThanOneInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadDeadHalfInchToLessThanOneInch_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadDeadLessThanQuarterInch'] = SIGSurface.prototype.getChaparralLoadDeadLessThanQuarterInch = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadDeadLessThanQuarterInch'] = SIGSurface.prototype.getChaparralLoadDeadLessThanQuarterInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadDeadLessThanQuarterInch_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadDeadOneInchToThreeInch'] = SIGSurface.prototype.getChaparralLoadDeadOneInchToThreeInch = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadDeadOneInchToThreeInch'] = SIGSurface.prototype.getChaparralLoadDeadOneInchToThreeInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadDeadOneInchToThreeInch_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadDeadQuarterInchToLessThanHalfInch'] = SIGSurface.prototype.getChaparralLoadDeadQuarterInchToLessThanHalfInch = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadDeadQuarterInchToLessThanHalfInch'] = SIGSurface.prototype.getChaparralLoadDeadQuarterInchToLessThanHalfInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadDeadQuarterInchToLessThanHalfInch_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadLiveHalfInchToLessThanOneInch'] = SIGSurface.prototype.getChaparralLoadLiveHalfInchToLessThanOneInch = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadLiveHalfInchToLessThanOneInch'] = SIGSurface.prototype.getChaparralLoadLiveHalfInchToLessThanOneInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveHalfInchToLessThanOneInch_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadLiveLeaves'] = SIGSurface.prototype.getChaparralLoadLiveLeaves = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadLiveLeaves'] = SIGSurface.prototype.getChaparralLoadLiveLeaves = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveLeaves_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadLiveOneInchToThreeInch'] = SIGSurface.prototype.getChaparralLoadLiveOneInchToThreeInch = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadLiveOneInchToThreeInch'] = SIGSurface.prototype.getChaparralLoadLiveOneInchToThreeInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveOneInchToThreeInch_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadLiveQuarterInchToLessThanHalfInch'] = SIGSurface.prototype.getChaparralLoadLiveQuarterInchToLessThanHalfInch = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadLiveQuarterInchToLessThanHalfInch'] = SIGSurface.prototype.getChaparralLoadLiveQuarterInchToLessThanHalfInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveQuarterInchToLessThanHalfInch_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralLoadLiveStemsLessThanQuaterInch'] = SIGSurface.prototype.getChaparralLoadLiveStemsLessThanQuaterInch = function(loadingUnits) { +SIGSurface.prototype['getChaparralLoadLiveStemsLessThanQuaterInch'] = SIGSurface.prototype.getChaparralLoadLiveStemsLessThanQuaterInch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralLoadLiveStemsLessThanQuaterInch_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralMoisture'] = SIGSurface.prototype.getChaparralMoisture = function(lifeState, sizeClass, moistureUnits) { +SIGSurface.prototype['getChaparralMoisture'] = SIGSurface.prototype.getChaparralMoisture = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState, sizeClass, moistureUnits) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; if (sizeClass && typeof sizeClass === 'object') sizeClass = sizeClass.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralMoisture_3(self, lifeState, sizeClass, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralTotalDeadFuelLoad'] = SIGSurface.prototype.getChaparralTotalDeadFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getChaparralTotalDeadFuelLoad'] = SIGSurface.prototype.getChaparralTotalDeadFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralTotalDeadFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralTotalFuelLoad'] = SIGSurface.prototype.getChaparralTotalFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getChaparralTotalFuelLoad'] = SIGSurface.prototype.getChaparralTotalFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralTotalFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getChaparralTotalLiveFuelLoad'] = SIGSurface.prototype.getChaparralTotalLiveFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getChaparralTotalLiveFuelLoad'] = SIGSurface.prototype.getChaparralTotalLiveFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getChaparralTotalLiveFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getCharacteristicMoistureByLifeState'] = SIGSurface.prototype.getCharacteristicMoistureByLifeState = function(lifeState, moistureUnits) { +SIGSurface.prototype['getCharacteristicMoistureByLifeState'] = SIGSurface.prototype.getCharacteristicMoistureByLifeState = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState, moistureUnits) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getCharacteristicMoistureByLifeState_2(self, lifeState, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getCharacteristicMoistureDead'] = SIGSurface.prototype.getCharacteristicMoistureDead = function(moistureUnits) { +SIGSurface.prototype['getCharacteristicMoistureDead'] = SIGSurface.prototype.getCharacteristicMoistureDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getCharacteristicMoistureDead_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getCharacteristicMoistureLive'] = SIGSurface.prototype.getCharacteristicMoistureLive = function(moistureUnits) { +SIGSurface.prototype['getCharacteristicMoistureLive'] = SIGSurface.prototype.getCharacteristicMoistureLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getCharacteristicMoistureLive_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getCharacteristicSAVR'] = SIGSurface.prototype.getCharacteristicSAVR = function(savrUnits) { +SIGSurface.prototype['getCharacteristicSAVR'] = SIGSurface.prototype.getCharacteristicSAVR = /** @suppress {undefinedVars, duplicate} @this{Object} */function(savrUnits) { var self = this.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getCharacteristicSAVR_1(self, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getCrownRatio'] = SIGSurface.prototype.getCrownRatio = function(crownRatioUnits) { +SIGSurface.prototype['getCrownRatio'] = SIGSurface.prototype.getCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatioUnits) { var self = this.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; return _emscripten_bind_SIGSurface_getCrownRatio_1(self, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getDirectionOfMaxSpread'] = SIGSurface.prototype.getDirectionOfMaxSpread = function() { +SIGSurface.prototype['getDirectionOfMaxSpread'] = SIGSurface.prototype.getDirectionOfMaxSpread = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getDirectionOfMaxSpread_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getDirectionOfInterest'] = SIGSurface.prototype.getDirectionOfInterest = function() { +SIGSurface.prototype['getDirectionOfInterest'] = SIGSurface.prototype.getDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getDirectionOfInterest_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getDirectionOfBacking'] = SIGSurface.prototype.getDirectionOfBacking = function() { +SIGSurface.prototype['getDirectionOfBacking'] = SIGSurface.prototype.getDirectionOfBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getDirectionOfBacking_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getDirectionOfFlanking'] = SIGSurface.prototype.getDirectionOfFlanking = function() { +SIGSurface.prototype['getDirectionOfFlanking'] = SIGSurface.prototype.getDirectionOfFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getDirectionOfFlanking_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getElapsedTime'] = SIGSurface.prototype.getElapsedTime = function(timeUnits) { +SIGSurface.prototype['getElapsedTime'] = SIGSurface.prototype.getElapsedTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(timeUnits) { var self = this.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_SIGSurface_getElapsedTime_1(self, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getEllipticalA'] = SIGSurface.prototype.getEllipticalA = function(lengthUnits) { +SIGSurface.prototype['getEllipticalA'] = SIGSurface.prototype.getEllipticalA = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getEllipticalA_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getEllipticalB'] = SIGSurface.prototype.getEllipticalB = function(lengthUnits) { +SIGSurface.prototype['getEllipticalB'] = SIGSurface.prototype.getEllipticalB = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getEllipticalB_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getEllipticalC'] = SIGSurface.prototype.getEllipticalC = function(lengthUnits) { +SIGSurface.prototype['getEllipticalC'] = SIGSurface.prototype.getEllipticalC = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getEllipticalC_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFireLength'] = SIGSurface.prototype.getFireLength = function(lengthUnits) { +SIGSurface.prototype['getFireLength'] = SIGSurface.prototype.getFireLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getFireLength_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMaxFireWidth'] = SIGSurface.prototype.getMaxFireWidth = function(lengthUnits) { +SIGSurface.prototype['getMaxFireWidth'] = SIGSurface.prototype.getMaxFireWidth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getMaxFireWidth_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFireArea'] = SIGSurface.prototype.getFireArea = function(areaUnits) { +SIGSurface.prototype['getFireArea'] = SIGSurface.prototype.getFireArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGSurface_getFireArea_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFireEccentricity'] = SIGSurface.prototype.getFireEccentricity = function() { +SIGSurface.prototype['getFireEccentricity'] = SIGSurface.prototype.getFireEccentricity = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getFireEccentricity_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFireLengthToWidthRatio'] = SIGSurface.prototype.getFireLengthToWidthRatio = function() { +SIGSurface.prototype['getFireLengthToWidthRatio'] = SIGSurface.prototype.getFireLengthToWidthRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getFireLengthToWidthRatio_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFirePerimeter'] = SIGSurface.prototype.getFirePerimeter = function(lengthUnits) { +SIGSurface.prototype['getFirePerimeter'] = SIGSurface.prototype.getFirePerimeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getFirePerimeter_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFirelineIntensity'] = SIGSurface.prototype.getFirelineIntensity = function(firelineIntensityUnits) { +SIGSurface.prototype['getFirelineIntensity'] = SIGSurface.prototype.getFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getFirelineIntensity_1(self, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFirelineIntensityInDirectionOfInterest'] = SIGSurface.prototype.getFirelineIntensityInDirectionOfInterest = function(firelineIntensityUnits) { +SIGSurface.prototype['getFirelineIntensityInDirectionOfInterest'] = SIGSurface.prototype.getFirelineIntensityInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getFirelineIntensityInDirectionOfInterest_1(self, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFlameLength'] = SIGSurface.prototype.getFlameLength = function(flameLengthUnits) { +SIGSurface.prototype['getFlameLength'] = SIGSurface.prototype.getFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_getFlameLength_1(self, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFlameLengthInDirectionOfInterest'] = SIGSurface.prototype.getFlameLengthInDirectionOfInterest = function(flameLengthUnits) { +SIGSurface.prototype['getFlameLengthInDirectionOfInterest'] = SIGSurface.prototype.getFlameLengthInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_getFlameLengthInDirectionOfInterest_1(self, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFlankingFirelineIntensity'] = SIGSurface.prototype.getFlankingFirelineIntensity = function(firelineIntensityUnits) { +SIGSurface.prototype['getFlankingFirelineIntensity'] = SIGSurface.prototype.getFlankingFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getFlankingFirelineIntensity_1(self, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFlankingFlameLength'] = SIGSurface.prototype.getFlankingFlameLength = function(flameLengthUnits) { +SIGSurface.prototype['getFlankingFlameLength'] = SIGSurface.prototype.getFlankingFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGSurface_getFlankingFlameLength_1(self, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFlankingSpreadRate'] = SIGSurface.prototype.getFlankingSpreadRate = function(spreadRateUnits) { +SIGSurface.prototype['getFlankingSpreadRate'] = SIGSurface.prototype.getFlankingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getFlankingSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFlankingSpreadDistance'] = SIGSurface.prototype.getFlankingSpreadDistance = function(lengthUnits) { +SIGSurface.prototype['getFlankingSpreadDistance'] = SIGSurface.prototype.getFlankingSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getFlankingSpreadDistance_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelHeatOfCombustionDead'] = SIGSurface.prototype.getFuelHeatOfCombustionDead = function(fuelModelNumber, heatOfCombustionUnits) { +SIGSurface.prototype['getFuelHeatOfCombustionDead'] = SIGSurface.prototype.getFuelHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getFuelHeatOfCombustionDead_2(self, fuelModelNumber, heatOfCombustionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelHeatOfCombustionLive'] = SIGSurface.prototype.getFuelHeatOfCombustionLive = function(fuelModelNumber, heatOfCombustionUnits) { +SIGSurface.prototype['getFuelHeatOfCombustionLive'] = SIGSurface.prototype.getFuelHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getFuelHeatOfCombustionLive_2(self, fuelModelNumber, heatOfCombustionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelLoadHundredHour'] = SIGSurface.prototype.getFuelLoadHundredHour = function(fuelModelNumber, loadingUnits) { +SIGSurface.prototype['getFuelLoadHundredHour'] = SIGSurface.prototype.getFuelLoadHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadHundredHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelLoadLiveHerbaceous'] = SIGSurface.prototype.getFuelLoadLiveHerbaceous = function(fuelModelNumber, loadingUnits) { +SIGSurface.prototype['getFuelLoadLiveHerbaceous'] = SIGSurface.prototype.getFuelLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadLiveHerbaceous_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelLoadLiveWoody'] = SIGSurface.prototype.getFuelLoadLiveWoody = function(fuelModelNumber, loadingUnits) { +SIGSurface.prototype['getFuelLoadLiveWoody'] = SIGSurface.prototype.getFuelLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadLiveWoody_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelLoadOneHour'] = SIGSurface.prototype.getFuelLoadOneHour = function(fuelModelNumber, loadingUnits) { +SIGSurface.prototype['getFuelLoadOneHour'] = SIGSurface.prototype.getFuelLoadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadOneHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelLoadTenHour'] = SIGSurface.prototype.getFuelLoadTenHour = function(fuelModelNumber, loadingUnits) { +SIGSurface.prototype['getFuelLoadTenHour'] = SIGSurface.prototype.getFuelLoadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getFuelLoadTenHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelMoistureOfExtinctionDead'] = SIGSurface.prototype.getFuelMoistureOfExtinctionDead = function(fuelModelNumber, moistureUnits) { +SIGSurface.prototype['getFuelMoistureOfExtinctionDead'] = SIGSurface.prototype.getFuelMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getFuelMoistureOfExtinctionDead_2(self, fuelModelNumber, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelSavrLiveHerbaceous'] = SIGSurface.prototype.getFuelSavrLiveHerbaceous = function(fuelModelNumber, savrUnits) { +SIGSurface.prototype['getFuelSavrLiveHerbaceous'] = SIGSurface.prototype.getFuelSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getFuelSavrLiveHerbaceous_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelSavrLiveWoody'] = SIGSurface.prototype.getFuelSavrLiveWoody = function(fuelModelNumber, savrUnits) { +SIGSurface.prototype['getFuelSavrLiveWoody'] = SIGSurface.prototype.getFuelSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getFuelSavrLiveWoody_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelSavrOneHour'] = SIGSurface.prototype.getFuelSavrOneHour = function(fuelModelNumber, savrUnits) { +SIGSurface.prototype['getFuelSavrOneHour'] = SIGSurface.prototype.getFuelSavrOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGSurface_getFuelSavrOneHour_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelbedDepth'] = SIGSurface.prototype.getFuelbedDepth = function(fuelModelNumber, lengthUnits) { +SIGSurface.prototype['getFuelbedDepth'] = SIGSurface.prototype.getFuelbedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, lengthUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getFuelbedDepth_2(self, fuelModelNumber, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getHeadingSpreadRate'] = SIGSurface.prototype.getHeadingSpreadRate = function(spreadRateUnits) { +SIGSurface.prototype['getHeadingSpreadRate'] = SIGSurface.prototype.getHeadingSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getHeadingSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getHeadingToBackingRatio'] = SIGSurface.prototype.getHeadingToBackingRatio = function() { +SIGSurface.prototype['getHeadingToBackingRatio'] = SIGSurface.prototype.getHeadingToBackingRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getHeadingToBackingRatio_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getHeatPerUnitArea'] = SIGSurface.prototype.getHeatPerUnitArea = function(heatPerUnitAreaUnits) { +SIGSurface.prototype['getHeatPerUnitArea'] = SIGSurface.prototype.getHeatPerUnitArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatPerUnitAreaUnits) { var self = this.ptr; if (heatPerUnitAreaUnits && typeof heatPerUnitAreaUnits === 'object') heatPerUnitAreaUnits = heatPerUnitAreaUnits.ptr; return _emscripten_bind_SIGSurface_getHeatPerUnitArea_1(self, heatPerUnitAreaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getHeatSink'] = SIGSurface.prototype.getHeatSink = function(heatSinkUnits) { +SIGSurface.prototype['getHeatSink'] = SIGSurface.prototype.getHeatSink = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatSinkUnits) { var self = this.ptr; if (heatSinkUnits && typeof heatSinkUnits === 'object') heatSinkUnits = heatSinkUnits.ptr; return _emscripten_bind_SIGSurface_getHeatSink_1(self, heatSinkUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getHeatSource'] = SIGSurface.prototype.getHeatSource = function(heatSourceUnits) { +SIGSurface.prototype['getHeatSource'] = SIGSurface.prototype.getHeatSource = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatSourceUnits) { var self = this.ptr; if (heatSourceUnits && typeof heatSourceUnits === 'object') heatSourceUnits = heatSourceUnits.ptr; return _emscripten_bind_SIGSurface_getHeatSource_1(self, heatSourceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getHeightOfUnderstory'] = SIGSurface.prototype.getHeightOfUnderstory = function(heightUnits) { +SIGSurface.prototype['getHeightOfUnderstory'] = SIGSurface.prototype.getHeightOfUnderstory = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heightUnits) { var self = this.ptr; if (heightUnits && typeof heightUnits === 'object') heightUnits = heightUnits.ptr; return _emscripten_bind_SIGSurface_getHeightOfUnderstory_1(self, heightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getLiveFuelMoistureOfExtinction'] = SIGSurface.prototype.getLiveFuelMoistureOfExtinction = function(moistureUnits) { +SIGSurface.prototype['getLiveFuelMoistureOfExtinction'] = SIGSurface.prototype.getLiveFuelMoistureOfExtinction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getLiveFuelMoistureOfExtinction_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMidflameWindspeed'] = SIGSurface.prototype.getMidflameWindspeed = function(windSpeedUnits) { +SIGSurface.prototype['getMidflameWindspeed'] = SIGSurface.prototype.getMidflameWindspeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedUnits) { var self = this.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; return _emscripten_bind_SIGSurface_getMidflameWindspeed_1(self, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureDeadAggregateValue'] = SIGSurface.prototype.getMoistureDeadAggregateValue = function(moistureUnits) { +SIGSurface.prototype['getMoistureDeadAggregateValue'] = SIGSurface.prototype.getMoistureDeadAggregateValue = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureDeadAggregateValue_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureHundredHour'] = SIGSurface.prototype.getMoistureHundredHour = function(moistureUnits) { +SIGSurface.prototype['getMoistureHundredHour'] = SIGSurface.prototype.getMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureHundredHour_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureLiveAggregateValue'] = SIGSurface.prototype.getMoistureLiveAggregateValue = function(moistureUnits) { +SIGSurface.prototype['getMoistureLiveAggregateValue'] = SIGSurface.prototype.getMoistureLiveAggregateValue = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureLiveAggregateValue_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureLiveHerbaceous'] = SIGSurface.prototype.getMoistureLiveHerbaceous = function(moistureUnits) { +SIGSurface.prototype['getMoistureLiveHerbaceous'] = SIGSurface.prototype.getMoistureLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureLiveHerbaceous_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureLiveWoody'] = SIGSurface.prototype.getMoistureLiveWoody = function(moistureUnits) { +SIGSurface.prototype['getMoistureLiveWoody'] = SIGSurface.prototype.getMoistureLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureLiveWoody_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureOneHour'] = SIGSurface.prototype.getMoistureOneHour = function(moistureUnits) { +SIGSurface.prototype['getMoistureOneHour'] = SIGSurface.prototype.getMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureOneHour_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioHundredHourByIndex'] = SIGSurface.prototype.getMoistureScenarioHundredHourByIndex = function(index, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioHundredHourByIndex'] = SIGSurface.prototype.getMoistureScenarioHundredHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioHundredHourByName'] = SIGSurface.prototype.getMoistureScenarioHundredHourByName = function(name, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioHundredHourByName'] = SIGSurface.prototype.getMoistureScenarioHundredHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioHundredHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGSurface.prototype.getMoistureScenarioLiveHerbaceousByIndex = function(index, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGSurface.prototype.getMoistureScenarioLiveHerbaceousByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGSurface.prototype.getMoistureScenarioLiveHerbaceousByName = function(name, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGSurface.prototype.getMoistureScenarioLiveHerbaceousByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioLiveHerbaceousByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGSurface.prototype.getMoistureScenarioLiveWoodyByIndex = function(index, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGSurface.prototype.getMoistureScenarioLiveWoodyByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioLiveWoodyByName'] = SIGSurface.prototype.getMoistureScenarioLiveWoodyByName = function(name, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioLiveWoodyByName'] = SIGSurface.prototype.getMoistureScenarioLiveWoodyByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioLiveWoodyByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioOneHourByIndex'] = SIGSurface.prototype.getMoistureScenarioOneHourByIndex = function(index, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioOneHourByIndex'] = SIGSurface.prototype.getMoistureScenarioOneHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioOneHourByName'] = SIGSurface.prototype.getMoistureScenarioOneHourByName = function(name, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioOneHourByName'] = SIGSurface.prototype.getMoistureScenarioOneHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioOneHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioTenHourByIndex'] = SIGSurface.prototype.getMoistureScenarioTenHourByIndex = function(index, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioTenHourByIndex'] = SIGSurface.prototype.getMoistureScenarioTenHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioTenHourByName'] = SIGSurface.prototype.getMoistureScenarioTenHourByName = function(name, moistureUnits) { +SIGSurface.prototype['getMoistureScenarioTenHourByName'] = SIGSurface.prototype.getMoistureScenarioTenHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureScenarioTenHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureTenHour'] = SIGSurface.prototype.getMoistureTenHour = function(moistureUnits) { +SIGSurface.prototype['getMoistureTenHour'] = SIGSurface.prototype.getMoistureTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getMoistureTenHour_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getOverstoryBasalArea'] = SIGSurface.prototype.getOverstoryBasalArea = function(basalAreaUnits) { +SIGSurface.prototype['getOverstoryBasalArea'] = SIGSurface.prototype.getOverstoryBasalArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(basalAreaUnits) { var self = this.ptr; if (basalAreaUnits && typeof basalAreaUnits === 'object') basalAreaUnits = basalAreaUnits.ptr; return _emscripten_bind_SIGSurface_getOverstoryBasalArea_1(self, basalAreaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberryCoverage'] = SIGSurface.prototype.getPalmettoGallberryCoverage = function(coverUnits) { +SIGSurface.prototype['getPalmettoGallberryCoverage'] = SIGSurface.prototype.getPalmettoGallberryCoverage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(coverUnits) { var self = this.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberryCoverage_1(self, coverUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberryHeatOfCombustionDead'] = SIGSurface.prototype.getPalmettoGallberryHeatOfCombustionDead = function(heatOfCombustionUnits) { +SIGSurface.prototype['getPalmettoGallberryHeatOfCombustionDead'] = SIGSurface.prototype.getPalmettoGallberryHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatOfCombustionUnits) { var self = this.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionDead_1(self, heatOfCombustionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberryHeatOfCombustionLive'] = SIGSurface.prototype.getPalmettoGallberryHeatOfCombustionLive = function(heatOfCombustionUnits) { +SIGSurface.prototype['getPalmettoGallberryHeatOfCombustionLive'] = SIGSurface.prototype.getPalmettoGallberryHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatOfCombustionUnits) { var self = this.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberryHeatOfCombustionLive_1(self, heatOfCombustionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberryMoistureOfExtinctionDead'] = SIGSurface.prototype.getPalmettoGallberryMoistureOfExtinctionDead = function(moistureUnits) { +SIGSurface.prototype['getPalmettoGallberryMoistureOfExtinctionDead'] = SIGSurface.prototype.getPalmettoGallberryMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberryMoistureOfExtinctionDead_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberyDeadFineFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadFineFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getPalmettoGallberyDeadFineFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFineFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberyDeadFoliageLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadFoliageLoad = function(loadingUnits) { +SIGSurface.prototype['getPalmettoGallberyDeadFoliageLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyDeadFoliageLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberyDeadMediumFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadMediumFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getPalmettoGallberyDeadMediumFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyDeadMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyDeadMediumFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberyFuelBedDepth'] = SIGSurface.prototype.getPalmettoGallberyFuelBedDepth = function(depthUnits) { +SIGSurface.prototype['getPalmettoGallberyFuelBedDepth'] = SIGSurface.prototype.getPalmettoGallberyFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(depthUnits) { var self = this.ptr; if (depthUnits && typeof depthUnits === 'object') depthUnits = depthUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyFuelBedDepth_1(self, depthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberyLitterLoad'] = SIGSurface.prototype.getPalmettoGallberyLitterLoad = function(loadingUnits) { +SIGSurface.prototype['getPalmettoGallberyLitterLoad'] = SIGSurface.prototype.getPalmettoGallberyLitterLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyLitterLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberyLiveFineFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveFineFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getPalmettoGallberyLiveFineFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFineFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberyLiveFoliageLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveFoliageLoad = function(loadingUnits) { +SIGSurface.prototype['getPalmettoGallberyLiveFoliageLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyLiveFoliageLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getPalmettoGallberyLiveMediumFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveMediumFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getPalmettoGallberyLiveMediumFuelLoad'] = SIGSurface.prototype.getPalmettoGallberyLiveMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getPalmettoGallberyLiveMediumFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getReactionIntensity'] = SIGSurface.prototype.getReactionIntensity = function(reactiontionIntensityUnits) { +SIGSurface.prototype['getReactionIntensity'] = SIGSurface.prototype.getReactionIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(reactiontionIntensityUnits) { var self = this.ptr; if (reactiontionIntensityUnits && typeof reactiontionIntensityUnits === 'object') reactiontionIntensityUnits = reactiontionIntensityUnits.ptr; return _emscripten_bind_SIGSurface_getReactionIntensity_1(self, reactiontionIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getResidenceTime'] = SIGSurface.prototype.getResidenceTime = function(timeUnits) { +SIGSurface.prototype['getResidenceTime'] = SIGSurface.prototype.getResidenceTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(timeUnits) { var self = this.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; return _emscripten_bind_SIGSurface_getResidenceTime_1(self, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getSlope'] = SIGSurface.prototype.getSlope = function(slopeUnits) { +SIGSurface.prototype['getSlope'] = SIGSurface.prototype.getSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeUnits) { var self = this.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; return _emscripten_bind_SIGSurface_getSlope_1(self, slopeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getSlopeFactor'] = SIGSurface.prototype.getSlopeFactor = function() { +SIGSurface.prototype['getSlopeFactor'] = SIGSurface.prototype.getSlopeFactor = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getSlopeFactor_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getSpreadDistance'] = SIGSurface.prototype.getSpreadDistance = function(lengthUnits) { +SIGSurface.prototype['getSpreadDistance'] = SIGSurface.prototype.getSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getSpreadDistance_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getSpreadDistanceInDirectionOfInterest'] = SIGSurface.prototype.getSpreadDistanceInDirectionOfInterest = function(lengthUnits) { +SIGSurface.prototype['getSpreadDistanceInDirectionOfInterest'] = SIGSurface.prototype.getSpreadDistanceInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGSurface_getSpreadDistanceInDirectionOfInterest_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getSpreadRate'] = SIGSurface.prototype.getSpreadRate = function(spreadRateUnits) { +SIGSurface.prototype['getSpreadRate'] = SIGSurface.prototype.getSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getSpreadRateInDirectionOfInterest'] = SIGSurface.prototype.getSpreadRateInDirectionOfInterest = function(spreadRateUnits) { +SIGSurface.prototype['getSpreadRateInDirectionOfInterest'] = SIGSurface.prototype.getSpreadRateInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGSurface_getSpreadRateInDirectionOfInterest_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getSurfaceFireReactionIntensityForLifeState'] = SIGSurface.prototype.getSurfaceFireReactionIntensityForLifeState = function(lifeState) { +SIGSurface.prototype['getSurfaceFireReactionIntensityForLifeState'] = SIGSurface.prototype.getSurfaceFireReactionIntensityForLifeState = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lifeState) { var self = this.ptr; if (lifeState && typeof lifeState === 'object') lifeState = lifeState.ptr; return _emscripten_bind_SIGSurface_getSurfaceFireReactionIntensityForLifeState_1(self, lifeState); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getTotalLiveFuelLoad'] = SIGSurface.prototype.getTotalLiveFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getTotalLiveFuelLoad'] = SIGSurface.prototype.getTotalLiveFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getTotalLiveFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getTotalDeadFuelLoad'] = SIGSurface.prototype.getTotalDeadFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getTotalDeadFuelLoad'] = SIGSurface.prototype.getTotalDeadFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getTotalDeadFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getTotalDeadHerbaceousFuelLoad'] = SIGSurface.prototype.getTotalDeadHerbaceousFuelLoad = function(loadingUnits) { +SIGSurface.prototype['getTotalDeadHerbaceousFuelLoad'] = SIGSurface.prototype.getTotalDeadHerbaceousFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(loadingUnits) { var self = this.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGSurface_getTotalDeadHerbaceousFuelLoad_1(self, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getWindDirection'] = SIGSurface.prototype.getWindDirection = function() { +SIGSurface.prototype['getWindDirection'] = SIGSurface.prototype.getWindDirection = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getWindDirection_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getWindSpeed'] = SIGSurface.prototype.getWindSpeed = function(windSpeedUnits, windHeightInputMode) { +SIGSurface.prototype['getWindSpeed'] = SIGSurface.prototype.getWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedUnits, windHeightInputMode) { var self = this.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; return _emscripten_bind_SIGSurface_getWindSpeed_2(self, windSpeedUnits, windHeightInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getAspenFuelModelNumber'] = SIGSurface.prototype.getAspenFuelModelNumber = function() { +SIGSurface.prototype['getAspenFuelModelNumber'] = SIGSurface.prototype.getAspenFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getAspenFuelModelNumber_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelModelNumber'] = SIGSurface.prototype.getFuelModelNumber = function() { +SIGSurface.prototype['getFuelModelNumber'] = SIGSurface.prototype.getFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getFuelModelNumber_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioIndexByName'] = SIGSurface.prototype.getMoistureScenarioIndexByName = function(name) { +SIGSurface.prototype['getMoistureScenarioIndexByName'] = SIGSurface.prototype.getMoistureScenarioIndexByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return _emscripten_bind_SIGSurface_getMoistureScenarioIndexByName_1(self, name); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getNumberOfMoistureScenarios'] = SIGSurface.prototype.getNumberOfMoistureScenarios = function() { +SIGSurface.prototype['getNumberOfMoistureScenarios'] = SIGSurface.prototype.getNumberOfMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSurface_getNumberOfMoistureScenarios_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelCode'] = SIGSurface.prototype.getFuelCode = function(fuelModelNumber) { +SIGSurface.prototype['getFuelCode'] = SIGSurface.prototype.getFuelCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGSurface_getFuelCode_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getFuelName'] = SIGSurface.prototype.getFuelName = function(fuelModelNumber) { +SIGSurface.prototype['getFuelName'] = SIGSurface.prototype.getFuelName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGSurface_getFuelName_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioDescriptionByIndex'] = SIGSurface.prototype.getMoistureScenarioDescriptionByIndex = function(index) { +SIGSurface.prototype['getMoistureScenarioDescriptionByIndex'] = SIGSurface.prototype.getMoistureScenarioDescriptionByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioDescriptionByName'] = SIGSurface.prototype.getMoistureScenarioDescriptionByName = function(name) { +SIGSurface.prototype['getMoistureScenarioDescriptionByName'] = SIGSurface.prototype.getMoistureScenarioDescriptionByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return UTF8ToString(_emscripten_bind_SIGSurface_getMoistureScenarioDescriptionByName_1(self, name)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['getMoistureScenarioNameByIndex'] = SIGSurface.prototype.getMoistureScenarioNameByIndex = function(index) { +SIGSurface.prototype['getMoistureScenarioNameByIndex'] = SIGSurface.prototype.getMoistureScenarioNameByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGSurface_getMoistureScenarioNameByIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['doSurfaceRun'] = SIGSurface.prototype.doSurfaceRun = function() { +SIGSurface.prototype['doSurfaceRun'] = SIGSurface.prototype.doSurfaceRun = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSurface_doSurfaceRun_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['doSurfaceRunInDirectionOfInterest'] = SIGSurface.prototype.doSurfaceRunInDirectionOfInterest = function(directionOfInterest, directionMode) { +SIGSurface.prototype['doSurfaceRunInDirectionOfInterest'] = SIGSurface.prototype.doSurfaceRunInDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(directionOfInterest, directionMode) { var self = this.ptr; if (directionOfInterest && typeof directionOfInterest === 'object') directionOfInterest = directionOfInterest.ptr; if (directionMode && typeof directionMode === 'object') directionMode = directionMode.ptr; _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfInterest_2(self, directionOfInterest, directionMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['doSurfaceRunInDirectionOfMaxSpread'] = SIGSurface.prototype.doSurfaceRunInDirectionOfMaxSpread = function() { +SIGSurface.prototype['doSurfaceRunInDirectionOfMaxSpread'] = SIGSurface.prototype.doSurfaceRunInDirectionOfMaxSpread = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSurface_doSurfaceRunInDirectionOfMaxSpread_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['initializeMembers'] = SIGSurface.prototype.initializeMembers = function() { +SIGSurface.prototype['initializeMembers'] = SIGSurface.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSurface_initializeMembers_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setAgeOfRough'] = SIGSurface.prototype.setAgeOfRough = function(ageOfRough) { +SIGSurface.prototype['setAgeOfRough'] = SIGSurface.prototype.setAgeOfRough = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; _emscripten_bind_SIGSurface_setAgeOfRough_1(self, ageOfRough); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setAspect'] = SIGSurface.prototype.setAspect = function(aspect) { +SIGSurface.prototype['setAspect'] = SIGSurface.prototype.setAspect = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspect) { var self = this.ptr; if (aspect && typeof aspect === 'object') aspect = aspect.ptr; _emscripten_bind_SIGSurface_setAspect_1(self, aspect); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setAspenCuringLevel'] = SIGSurface.prototype.setAspenCuringLevel = function(aspenCuringLevel, curingLevelUnits) { +SIGSurface.prototype['setAspenCuringLevel'] = SIGSurface.prototype.setAspenCuringLevel = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspenCuringLevel, curingLevelUnits) { var self = this.ptr; if (aspenCuringLevel && typeof aspenCuringLevel === 'object') aspenCuringLevel = aspenCuringLevel.ptr; if (curingLevelUnits && typeof curingLevelUnits === 'object') curingLevelUnits = curingLevelUnits.ptr; _emscripten_bind_SIGSurface_setAspenCuringLevel_2(self, aspenCuringLevel, curingLevelUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setAspenDBH'] = SIGSurface.prototype.setAspenDBH = function(dbh, dbhUnits) { +SIGSurface.prototype['setAspenDBH'] = SIGSurface.prototype.setAspenDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dbh, dbhUnits) { var self = this.ptr; if (dbh && typeof dbh === 'object') dbh = dbh.ptr; if (dbhUnits && typeof dbhUnits === 'object') dbhUnits = dbhUnits.ptr; _emscripten_bind_SIGSurface_setAspenDBH_2(self, dbh, dbhUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setAspenFireSeverity'] = SIGSurface.prototype.setAspenFireSeverity = function(aspenFireSeverity) { +SIGSurface.prototype['setAspenFireSeverity'] = SIGSurface.prototype.setAspenFireSeverity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspenFireSeverity) { var self = this.ptr; if (aspenFireSeverity && typeof aspenFireSeverity === 'object') aspenFireSeverity = aspenFireSeverity.ptr; _emscripten_bind_SIGSurface_setAspenFireSeverity_1(self, aspenFireSeverity); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setAspenFuelModelNumber'] = SIGSurface.prototype.setAspenFuelModelNumber = function(aspenFuelModelNumber) { +SIGSurface.prototype['setAspenFuelModelNumber'] = SIGSurface.prototype.setAspenFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspenFuelModelNumber) { var self = this.ptr; if (aspenFuelModelNumber && typeof aspenFuelModelNumber === 'object') aspenFuelModelNumber = aspenFuelModelNumber.ptr; _emscripten_bind_SIGSurface_setAspenFuelModelNumber_1(self, aspenFuelModelNumber); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setCanopyCover'] = SIGSurface.prototype.setCanopyCover = function(canopyCover, coverUnits) { +SIGSurface.prototype['setCanopyCover'] = SIGSurface.prototype.setCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyCover, coverUnits) { var self = this.ptr; if (canopyCover && typeof canopyCover === 'object') canopyCover = canopyCover.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; _emscripten_bind_SIGSurface_setCanopyCover_2(self, canopyCover, coverUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setCanopyHeight'] = SIGSurface.prototype.setCanopyHeight = function(canopyHeight, canopyHeightUnits) { +SIGSurface.prototype['setCanopyHeight'] = SIGSurface.prototype.setCanopyHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeight, canopyHeightUnits) { var self = this.ptr; if (canopyHeight && typeof canopyHeight === 'object') canopyHeight = canopyHeight.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; _emscripten_bind_SIGSurface_setCanopyHeight_2(self, canopyHeight, canopyHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setChaparralFuelBedDepth'] = SIGSurface.prototype.setChaparralFuelBedDepth = function(chaparralFuelBedDepth, depthUnts) { +SIGSurface.prototype['setChaparralFuelBedDepth'] = SIGSurface.prototype.setChaparralFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(chaparralFuelBedDepth, depthUnts) { var self = this.ptr; if (chaparralFuelBedDepth && typeof chaparralFuelBedDepth === 'object') chaparralFuelBedDepth = chaparralFuelBedDepth.ptr; if (depthUnts && typeof depthUnts === 'object') depthUnts = depthUnts.ptr; _emscripten_bind_SIGSurface_setChaparralFuelBedDepth_2(self, chaparralFuelBedDepth, depthUnts); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setChaparralFuelDeadLoadFraction'] = SIGSurface.prototype.setChaparralFuelDeadLoadFraction = function(chaparralFuelDeadLoadFraction) { +SIGSurface.prototype['setChaparralFuelDeadLoadFraction'] = SIGSurface.prototype.setChaparralFuelDeadLoadFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(chaparralFuelDeadLoadFraction) { var self = this.ptr; if (chaparralFuelDeadLoadFraction && typeof chaparralFuelDeadLoadFraction === 'object') chaparralFuelDeadLoadFraction = chaparralFuelDeadLoadFraction.ptr; _emscripten_bind_SIGSurface_setChaparralFuelDeadLoadFraction_1(self, chaparralFuelDeadLoadFraction); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setChaparralFuelLoadInputMode'] = SIGSurface.prototype.setChaparralFuelLoadInputMode = function(fuelLoadInputMode) { +SIGSurface.prototype['setChaparralFuelLoadInputMode'] = SIGSurface.prototype.setChaparralFuelLoadInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelLoadInputMode) { var self = this.ptr; if (fuelLoadInputMode && typeof fuelLoadInputMode === 'object') fuelLoadInputMode = fuelLoadInputMode.ptr; _emscripten_bind_SIGSurface_setChaparralFuelLoadInputMode_1(self, fuelLoadInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setChaparralFuelType'] = SIGSurface.prototype.setChaparralFuelType = function(chaparralFuelType) { +SIGSurface.prototype['setChaparralFuelType'] = SIGSurface.prototype.setChaparralFuelType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(chaparralFuelType) { var self = this.ptr; if (chaparralFuelType && typeof chaparralFuelType === 'object') chaparralFuelType = chaparralFuelType.ptr; _emscripten_bind_SIGSurface_setChaparralFuelType_1(self, chaparralFuelType); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setChaparralTotalFuelLoad'] = SIGSurface.prototype.setChaparralTotalFuelLoad = function(chaparralTotalFuelLoad, fuelLoadUnits) { +SIGSurface.prototype['setChaparralTotalFuelLoad'] = SIGSurface.prototype.setChaparralTotalFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(chaparralTotalFuelLoad, fuelLoadUnits) { var self = this.ptr; if (chaparralTotalFuelLoad && typeof chaparralTotalFuelLoad === 'object') chaparralTotalFuelLoad = chaparralTotalFuelLoad.ptr; if (fuelLoadUnits && typeof fuelLoadUnits === 'object') fuelLoadUnits = fuelLoadUnits.ptr; _emscripten_bind_SIGSurface_setChaparralTotalFuelLoad_2(self, chaparralTotalFuelLoad, fuelLoadUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setCrownRatio'] = SIGSurface.prototype.setCrownRatio = function(crownRatio, crownRatioUnits) { +SIGSurface.prototype['setCrownRatio'] = SIGSurface.prototype.setCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatio, crownRatioUnits) { var self = this.ptr; if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGSurface_setCrownRatio_2(self, crownRatio, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setDirectionOfInterest'] = SIGSurface.prototype.setDirectionOfInterest = function(directionOfInterest) { +SIGSurface.prototype['setDirectionOfInterest'] = SIGSurface.prototype.setDirectionOfInterest = /** @suppress {undefinedVars, duplicate} @this{Object} */function(directionOfInterest) { var self = this.ptr; if (directionOfInterest && typeof directionOfInterest === 'object') directionOfInterest = directionOfInterest.ptr; _emscripten_bind_SIGSurface_setDirectionOfInterest_1(self, directionOfInterest); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setElapsedTime'] = SIGSurface.prototype.setElapsedTime = function(elapsedTime, timeUnits) { +SIGSurface.prototype['setElapsedTime'] = SIGSurface.prototype.setElapsedTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elapsedTime, timeUnits) { var self = this.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; _emscripten_bind_SIGSurface_setElapsedTime_2(self, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setFirstFuelModelNumber'] = SIGSurface.prototype.setFirstFuelModelNumber = function(firstFuelModelNumber) { +SIGSurface.prototype['setFirstFuelModelNumber'] = SIGSurface.prototype.setFirstFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firstFuelModelNumber) { var self = this.ptr; if (firstFuelModelNumber && typeof firstFuelModelNumber === 'object') firstFuelModelNumber = firstFuelModelNumber.ptr; _emscripten_bind_SIGSurface_setFirstFuelModelNumber_1(self, firstFuelModelNumber); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setFuelModels'] = SIGSurface.prototype.setFuelModels = function(fuelModels) { +SIGSurface.prototype['setFuelModels'] = SIGSurface.prototype.setFuelModels = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModels) { var self = this.ptr; if (fuelModels && typeof fuelModels === 'object') fuelModels = fuelModels.ptr; _emscripten_bind_SIGSurface_setFuelModels_1(self, fuelModels); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setHeightOfUnderstory'] = SIGSurface.prototype.setHeightOfUnderstory = function(heightOfUnderstory, heightUnits) { +SIGSurface.prototype['setHeightOfUnderstory'] = SIGSurface.prototype.setHeightOfUnderstory = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heightOfUnderstory, heightUnits) { var self = this.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; if (heightUnits && typeof heightUnits === 'object') heightUnits = heightUnits.ptr; _emscripten_bind_SIGSurface_setHeightOfUnderstory_2(self, heightOfUnderstory, heightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setIsUsingChaparral'] = SIGSurface.prototype.setIsUsingChaparral = function(isUsingChaparral) { +SIGSurface.prototype['setIsUsingChaparral'] = SIGSurface.prototype.setIsUsingChaparral = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isUsingChaparral) { var self = this.ptr; if (isUsingChaparral && typeof isUsingChaparral === 'object') isUsingChaparral = isUsingChaparral.ptr; _emscripten_bind_SIGSurface_setIsUsingChaparral_1(self, isUsingChaparral); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setIsUsingPalmettoGallberry'] = SIGSurface.prototype.setIsUsingPalmettoGallberry = function(isUsingPalmettoGallberry) { +SIGSurface.prototype['setIsUsingPalmettoGallberry'] = SIGSurface.prototype.setIsUsingPalmettoGallberry = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isUsingPalmettoGallberry) { var self = this.ptr; if (isUsingPalmettoGallberry && typeof isUsingPalmettoGallberry === 'object') isUsingPalmettoGallberry = isUsingPalmettoGallberry.ptr; _emscripten_bind_SIGSurface_setIsUsingPalmettoGallberry_1(self, isUsingPalmettoGallberry); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setIsUsingWesternAspen'] = SIGSurface.prototype.setIsUsingWesternAspen = function(isUsingWesternAspen) { +SIGSurface.prototype['setIsUsingWesternAspen'] = SIGSurface.prototype.setIsUsingWesternAspen = /** @suppress {undefinedVars, duplicate} @this{Object} */function(isUsingWesternAspen) { var self = this.ptr; if (isUsingWesternAspen && typeof isUsingWesternAspen === 'object') isUsingWesternAspen = isUsingWesternAspen.ptr; _emscripten_bind_SIGSurface_setIsUsingWesternAspen_1(self, isUsingWesternAspen); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureDeadAggregate'] = SIGSurface.prototype.setMoistureDeadAggregate = function(moistureDead, moistureUnits) { +SIGSurface.prototype['setMoistureDeadAggregate'] = SIGSurface.prototype.setMoistureDeadAggregate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureDead, moistureUnits) { var self = this.ptr; if (moistureDead && typeof moistureDead === 'object') moistureDead = moistureDead.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureDeadAggregate_2(self, moistureDead, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureHundredHour'] = SIGSurface.prototype.setMoistureHundredHour = function(moistureHundredHour, moistureUnits) { +SIGSurface.prototype['setMoistureHundredHour'] = SIGSurface.prototype.setMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureHundredHour, moistureUnits) { var self = this.ptr; if (moistureHundredHour && typeof moistureHundredHour === 'object') moistureHundredHour = moistureHundredHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureHundredHour_2(self, moistureHundredHour, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureInputMode'] = SIGSurface.prototype.setMoistureInputMode = function(moistureInputMode) { +SIGSurface.prototype['setMoistureInputMode'] = SIGSurface.prototype.setMoistureInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureInputMode) { var self = this.ptr; if (moistureInputMode && typeof moistureInputMode === 'object') moistureInputMode = moistureInputMode.ptr; _emscripten_bind_SIGSurface_setMoistureInputMode_1(self, moistureInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureLiveAggregate'] = SIGSurface.prototype.setMoistureLiveAggregate = function(moistureLive, moistureUnits) { +SIGSurface.prototype['setMoistureLiveAggregate'] = SIGSurface.prototype.setMoistureLiveAggregate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLive, moistureUnits) { var self = this.ptr; if (moistureLive && typeof moistureLive === 'object') moistureLive = moistureLive.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureLiveAggregate_2(self, moistureLive, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureLiveHerbaceous'] = SIGSurface.prototype.setMoistureLiveHerbaceous = function(moistureLiveHerbaceous, moistureUnits) { +SIGSurface.prototype['setMoistureLiveHerbaceous'] = SIGSurface.prototype.setMoistureLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLiveHerbaceous, moistureUnits) { var self = this.ptr; if (moistureLiveHerbaceous && typeof moistureLiveHerbaceous === 'object') moistureLiveHerbaceous = moistureLiveHerbaceous.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureLiveHerbaceous_2(self, moistureLiveHerbaceous, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureLiveWoody'] = SIGSurface.prototype.setMoistureLiveWoody = function(moistureLiveWoody, moistureUnits) { +SIGSurface.prototype['setMoistureLiveWoody'] = SIGSurface.prototype.setMoistureLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLiveWoody, moistureUnits) { var self = this.ptr; if (moistureLiveWoody && typeof moistureLiveWoody === 'object') moistureLiveWoody = moistureLiveWoody.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureLiveWoody_2(self, moistureLiveWoody, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureOneHour'] = SIGSurface.prototype.setMoistureOneHour = function(moistureOneHour, moistureUnits) { +SIGSurface.prototype['setMoistureOneHour'] = SIGSurface.prototype.setMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureUnits) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureOneHour_2(self, moistureOneHour, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureScenarios'] = SIGSurface.prototype.setMoistureScenarios = function(moistureScenarios) { +SIGSurface.prototype['setMoistureScenarios'] = SIGSurface.prototype.setMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarios) { var self = this.ptr; if (moistureScenarios && typeof moistureScenarios === 'object') moistureScenarios = moistureScenarios.ptr; _emscripten_bind_SIGSurface_setMoistureScenarios_1(self, moistureScenarios); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setMoistureTenHour'] = SIGSurface.prototype.setMoistureTenHour = function(moistureTenHour, moistureUnits) { +SIGSurface.prototype['setMoistureTenHour'] = SIGSurface.prototype.setMoistureTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureTenHour, moistureUnits) { var self = this.ptr; if (moistureTenHour && typeof moistureTenHour === 'object') moistureTenHour = moistureTenHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGSurface_setMoistureTenHour_2(self, moistureTenHour, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setOverstoryBasalArea'] = SIGSurface.prototype.setOverstoryBasalArea = function(overstoryBasalArea, basalAreaUnits) { +SIGSurface.prototype['setOverstoryBasalArea'] = SIGSurface.prototype.setOverstoryBasalArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(overstoryBasalArea, basalAreaUnits) { var self = this.ptr; if (overstoryBasalArea && typeof overstoryBasalArea === 'object') overstoryBasalArea = overstoryBasalArea.ptr; if (basalAreaUnits && typeof basalAreaUnits === 'object') basalAreaUnits = basalAreaUnits.ptr; _emscripten_bind_SIGSurface_setOverstoryBasalArea_2(self, overstoryBasalArea, basalAreaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setPalmettoCoverage'] = SIGSurface.prototype.setPalmettoCoverage = function(palmettoCoverage, coverUnits) { +SIGSurface.prototype['setPalmettoCoverage'] = SIGSurface.prototype.setPalmettoCoverage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(palmettoCoverage, coverUnits) { var self = this.ptr; if (palmettoCoverage && typeof palmettoCoverage === 'object') palmettoCoverage = palmettoCoverage.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; _emscripten_bind_SIGSurface_setPalmettoCoverage_2(self, palmettoCoverage, coverUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setSecondFuelModelNumber'] = SIGSurface.prototype.setSecondFuelModelNumber = function(secondFuelModelNumber) { +SIGSurface.prototype['setSecondFuelModelNumber'] = SIGSurface.prototype.setSecondFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(secondFuelModelNumber) { var self = this.ptr; if (secondFuelModelNumber && typeof secondFuelModelNumber === 'object') secondFuelModelNumber = secondFuelModelNumber.ptr; _emscripten_bind_SIGSurface_setSecondFuelModelNumber_1(self, secondFuelModelNumber); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setSlope'] = SIGSurface.prototype.setSlope = function(slope, slopeUnits) { +SIGSurface.prototype['setSlope'] = SIGSurface.prototype.setSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slope, slopeUnits) { var self = this.ptr; if (slope && typeof slope === 'object') slope = slope.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; _emscripten_bind_SIGSurface_setSlope_2(self, slope, slopeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setSurfaceFireSpreadDirectionMode'] = SIGSurface.prototype.setSurfaceFireSpreadDirectionMode = function(directionMode) { +SIGSurface.prototype['setSurfaceFireSpreadDirectionMode'] = SIGSurface.prototype.setSurfaceFireSpreadDirectionMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(directionMode) { var self = this.ptr; if (directionMode && typeof directionMode === 'object') directionMode = directionMode.ptr; _emscripten_bind_SIGSurface_setSurfaceFireSpreadDirectionMode_1(self, directionMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setSurfaceRunInDirectionOf'] = SIGSurface.prototype.setSurfaceRunInDirectionOf = function(surfaceRunInDirectionOf) { +SIGSurface.prototype['setSurfaceRunInDirectionOf'] = SIGSurface.prototype.setSurfaceRunInDirectionOf = /** @suppress {undefinedVars, duplicate} @this{Object} */function(surfaceRunInDirectionOf) { var self = this.ptr; if (surfaceRunInDirectionOf && typeof surfaceRunInDirectionOf === 'object') surfaceRunInDirectionOf = surfaceRunInDirectionOf.ptr; _emscripten_bind_SIGSurface_setSurfaceRunInDirectionOf_1(self, surfaceRunInDirectionOf); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setTwoFuelModelsFirstFuelModelCoverage'] = SIGSurface.prototype.setTwoFuelModelsFirstFuelModelCoverage = function(firstFuelModelCoverage, coverUnits) { +SIGSurface.prototype['setTwoFuelModelsFirstFuelModelCoverage'] = SIGSurface.prototype.setTwoFuelModelsFirstFuelModelCoverage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firstFuelModelCoverage, coverUnits) { var self = this.ptr; if (firstFuelModelCoverage && typeof firstFuelModelCoverage === 'object') firstFuelModelCoverage = firstFuelModelCoverage.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; _emscripten_bind_SIGSurface_setTwoFuelModelsFirstFuelModelCoverage_2(self, firstFuelModelCoverage, coverUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setTwoFuelModelsMethod'] = SIGSurface.prototype.setTwoFuelModelsMethod = function(twoFuelModelsMethod) { +SIGSurface.prototype['setTwoFuelModelsMethod'] = SIGSurface.prototype.setTwoFuelModelsMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function(twoFuelModelsMethod) { var self = this.ptr; if (twoFuelModelsMethod && typeof twoFuelModelsMethod === 'object') twoFuelModelsMethod = twoFuelModelsMethod.ptr; _emscripten_bind_SIGSurface_setTwoFuelModelsMethod_1(self, twoFuelModelsMethod); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setUserProvidedWindAdjustmentFactor'] = SIGSurface.prototype.setUserProvidedWindAdjustmentFactor = function(userProvidedWindAdjustmentFactor) { +SIGSurface.prototype['setUserProvidedWindAdjustmentFactor'] = SIGSurface.prototype.setUserProvidedWindAdjustmentFactor = /** @suppress {undefinedVars, duplicate} @this{Object} */function(userProvidedWindAdjustmentFactor) { var self = this.ptr; if (userProvidedWindAdjustmentFactor && typeof userProvidedWindAdjustmentFactor === 'object') userProvidedWindAdjustmentFactor = userProvidedWindAdjustmentFactor.ptr; _emscripten_bind_SIGSurface_setUserProvidedWindAdjustmentFactor_1(self, userProvidedWindAdjustmentFactor); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setWindAdjustmentFactorCalculationMethod'] = SIGSurface.prototype.setWindAdjustmentFactorCalculationMethod = function(windAdjustmentFactorCalculationMethod) { +SIGSurface.prototype['setWindAdjustmentFactorCalculationMethod'] = SIGSurface.prototype.setWindAdjustmentFactorCalculationMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windAdjustmentFactorCalculationMethod) { var self = this.ptr; if (windAdjustmentFactorCalculationMethod && typeof windAdjustmentFactorCalculationMethod === 'object') windAdjustmentFactorCalculationMethod = windAdjustmentFactorCalculationMethod.ptr; _emscripten_bind_SIGSurface_setWindAdjustmentFactorCalculationMethod_1(self, windAdjustmentFactorCalculationMethod); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setWindAndSpreadOrientationMode'] = SIGSurface.prototype.setWindAndSpreadOrientationMode = function(windAndSpreadOrientationMode) { +SIGSurface.prototype['setWindAndSpreadOrientationMode'] = SIGSurface.prototype.setWindAndSpreadOrientationMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windAndSpreadOrientationMode) { var self = this.ptr; if (windAndSpreadOrientationMode && typeof windAndSpreadOrientationMode === 'object') windAndSpreadOrientationMode = windAndSpreadOrientationMode.ptr; _emscripten_bind_SIGSurface_setWindAndSpreadOrientationMode_1(self, windAndSpreadOrientationMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setWindDirection'] = SIGSurface.prototype.setWindDirection = function(windDirection) { +SIGSurface.prototype['setWindDirection'] = SIGSurface.prototype.setWindDirection = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windDirection) { var self = this.ptr; if (windDirection && typeof windDirection === 'object') windDirection = windDirection.ptr; _emscripten_bind_SIGSurface_setWindDirection_1(self, windDirection); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setWindHeightInputMode'] = SIGSurface.prototype.setWindHeightInputMode = function(windHeightInputMode) { +SIGSurface.prototype['setWindHeightInputMode'] = SIGSurface.prototype.setWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windHeightInputMode) { var self = this.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGSurface_setWindHeightInputMode_1(self, windHeightInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setWindSpeed'] = SIGSurface.prototype.setWindSpeed = function(windSpeed, windSpeedUnits) { +SIGSurface.prototype['setWindSpeed'] = SIGSurface.prototype.setWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGSurface_setWindSpeed_2(self, windSpeed, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['updateSurfaceInputs'] = SIGSurface.prototype.updateSurfaceInputs = function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { +SIGSurface.prototype['updateSurfaceInputs'] = SIGSurface.prototype.updateSurfaceInputs = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; @@ -11726,10 +11088,9 @@ SIGSurface.prototype['updateSurfaceInputs'] = SIGSurface.prototype.updateSurface if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGSurface_updateSurfaceInputs_21(self, fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['updateSurfaceInputsForPalmettoGallbery'] = SIGSurface.prototype.updateSurfaceInputsForPalmettoGallbery = function(moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, ageOfRough, heightOfUnderstory, palmettoCoverage, overstoryBasalArea, basalAreaUnits, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { +SIGSurface.prototype['updateSurfaceInputsForPalmettoGallbery'] = SIGSurface.prototype.updateSurfaceInputsForPalmettoGallbery = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, ageOfRough, heightOfUnderstory, palmettoCoverage, overstoryBasalArea, basalAreaUnits, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureTenHour && typeof moistureTenHour === 'object') moistureTenHour = moistureTenHour.ptr; @@ -11757,10 +11118,9 @@ SIGSurface.prototype['updateSurfaceInputsForPalmettoGallbery'] = SIGSurface.prot if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGSurface_updateSurfaceInputsForPalmettoGallbery_25(self, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, ageOfRough, heightOfUnderstory, palmettoCoverage, overstoryBasalArea, basalAreaUnits, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['updateSurfaceInputsForTwoFuelModels'] = SIGSurface.prototype.updateSurfaceInputsForTwoFuelModels = function(firstFuelModelNumber, secondFuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, firstFuelModelCoverage, firstFuelModelCoverageUnits, twoFuelModelsMethod, slope, slopeUnits, aspect, canopyCover, canopyFractionUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnitso) { +SIGSurface.prototype['updateSurfaceInputsForTwoFuelModels'] = SIGSurface.prototype.updateSurfaceInputsForTwoFuelModels = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firstFuelModelNumber, secondFuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, firstFuelModelCoverage, firstFuelModelCoverageUnits, twoFuelModelsMethod, slope, slopeUnits, aspect, canopyCover, canopyFractionUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnitso) { var self = this.ptr; if (firstFuelModelNumber && typeof firstFuelModelNumber === 'object') firstFuelModelNumber = firstFuelModelNumber.ptr; if (secondFuelModelNumber && typeof secondFuelModelNumber === 'object') secondFuelModelNumber = secondFuelModelNumber.ptr; @@ -11788,10 +11148,9 @@ SIGSurface.prototype['updateSurfaceInputsForTwoFuelModels'] = SIGSurface.prototy if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnitso && typeof crownRatioUnitso === 'object') crownRatioUnitso = crownRatioUnitso.ptr; _emscripten_bind_SIGSurface_updateSurfaceInputsForTwoFuelModels_25(self, firstFuelModelNumber, secondFuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, firstFuelModelCoverage, firstFuelModelCoverageUnits, twoFuelModelsMethod, slope, slopeUnits, aspect, canopyCover, canopyFractionUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnitso); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['updateSurfaceInputsForWesternAspen'] = SIGSurface.prototype.updateSurfaceInputsForWesternAspen = function(aspenFuelModelNumber, aspenCuringLevel, curingLevelUnits, aspenFireSeverity, dbh, dbhUnits, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { +SIGSurface.prototype['updateSurfaceInputsForWesternAspen'] = SIGSurface.prototype.updateSurfaceInputsForWesternAspen = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspenFuelModelNumber, aspenCuringLevel, curingLevelUnits, aspenFireSeverity, dbh, dbhUnits, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { var self = this.ptr; if (aspenFuelModelNumber && typeof aspenFuelModelNumber === 'object') aspenFuelModelNumber = aspenFuelModelNumber.ptr; if (aspenCuringLevel && typeof aspenCuringLevel === 'object') aspenCuringLevel = aspenCuringLevel.ptr; @@ -11820,1101 +11179,942 @@ SIGSurface.prototype['updateSurfaceInputsForWesternAspen'] = SIGSurface.prototyp if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGSurface_updateSurfaceInputsForWesternAspen_26(self, aspenFuelModelNumber, aspenCuringLevel, curingLevelUnits, aspenFireSeverity, dbh, dbhUnits, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['setFuelModelNumber'] = SIGSurface.prototype.setFuelModelNumber = function(fuelModelNumber) { +SIGSurface.prototype['setFuelModelNumber'] = SIGSurface.prototype.setFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; _emscripten_bind_SIGSurface_setFuelModelNumber_1(self, fuelModelNumber); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSurface.prototype['__destroy__'] = SIGSurface.prototype.__destroy__ = function() { + SIGSurface.prototype['__destroy__'] = SIGSurface.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSurface___destroy___0(self); }; - -// Interface: PalmettoGallberry - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function PalmettoGallberry() { +// PalmettoGallberry +/** @suppress {undefinedVars, duplicate} @this{Object} */function PalmettoGallberry() { this.ptr = _emscripten_bind_PalmettoGallberry_PalmettoGallberry_0(); getCache(PalmettoGallberry)[this.ptr] = this; -}; - +};; PalmettoGallberry.prototype = Object.create(WrapperObject.prototype); PalmettoGallberry.prototype.constructor = PalmettoGallberry; PalmettoGallberry.prototype.__class__ = PalmettoGallberry; PalmettoGallberry.__cache__ = {}; Module['PalmettoGallberry'] = PalmettoGallberry; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['initializeMembers'] = PalmettoGallberry.prototype.initializeMembers = function() { + +PalmettoGallberry.prototype['initializeMembers'] = PalmettoGallberry.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_PalmettoGallberry_initializeMembers_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['calculatePalmettoGallberyDeadFineFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadFineFuelLoad = function(ageOfRough, heightOfUnderstory) { +PalmettoGallberry.prototype['calculatePalmettoGallberyDeadFineFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, heightOfUnderstory) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFineFuelLoad_2(self, ageOfRough, heightOfUnderstory); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['calculatePalmettoGallberyDeadFoliageLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadFoliageLoad = function(ageOfRough, palmettoCoverage) { +PalmettoGallberry.prototype['calculatePalmettoGallberyDeadFoliageLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, palmettoCoverage) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (palmettoCoverage && typeof palmettoCoverage === 'object') palmettoCoverage = palmettoCoverage.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadFoliageLoad_2(self, ageOfRough, palmettoCoverage); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['calculatePalmettoGallberyDeadMediumFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadMediumFuelLoad = function(ageOfRough, palmettoCoverage) { +PalmettoGallberry.prototype['calculatePalmettoGallberyDeadMediumFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyDeadMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, palmettoCoverage) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (palmettoCoverage && typeof palmettoCoverage === 'object') palmettoCoverage = palmettoCoverage.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyDeadMediumFuelLoad_2(self, ageOfRough, palmettoCoverage); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['calculatePalmettoGallberyFuelBedDepth'] = PalmettoGallberry.prototype.calculatePalmettoGallberyFuelBedDepth = function(heightOfUnderstory) { +PalmettoGallberry.prototype['calculatePalmettoGallberyFuelBedDepth'] = PalmettoGallberry.prototype.calculatePalmettoGallberyFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heightOfUnderstory) { var self = this.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyFuelBedDepth_1(self, heightOfUnderstory); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['calculatePalmettoGallberyLitterLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLitterLoad = function(ageOfRough, overstoryBasalArea) { +PalmettoGallberry.prototype['calculatePalmettoGallberyLitterLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLitterLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, overstoryBasalArea) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (overstoryBasalArea && typeof overstoryBasalArea === 'object') overstoryBasalArea = overstoryBasalArea.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLitterLoad_2(self, ageOfRough, overstoryBasalArea); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['calculatePalmettoGallberyLiveFineFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveFineFuelLoad = function(ageOfRough, heightOfUnderstory) { +PalmettoGallberry.prototype['calculatePalmettoGallberyLiveFineFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, heightOfUnderstory) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFineFuelLoad_2(self, ageOfRough, heightOfUnderstory); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['calculatePalmettoGallberyLiveFoliageLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveFoliageLoad = function(ageOfRough, palmettoCoverage, heightOfUnderstory) { +PalmettoGallberry.prototype['calculatePalmettoGallberyLiveFoliageLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, palmettoCoverage, heightOfUnderstory) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (palmettoCoverage && typeof palmettoCoverage === 'object') palmettoCoverage = palmettoCoverage.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveFoliageLoad_3(self, ageOfRough, palmettoCoverage, heightOfUnderstory); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['calculatePalmettoGallberyLiveMediumFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveMediumFuelLoad = function(ageOfRough, heightOfUnderstory) { +PalmettoGallberry.prototype['calculatePalmettoGallberyLiveMediumFuelLoad'] = PalmettoGallberry.prototype.calculatePalmettoGallberyLiveMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function(ageOfRough, heightOfUnderstory) { var self = this.ptr; if (ageOfRough && typeof ageOfRough === 'object') ageOfRough = ageOfRough.ptr; if (heightOfUnderstory && typeof heightOfUnderstory === 'object') heightOfUnderstory = heightOfUnderstory.ptr; return _emscripten_bind_PalmettoGallberry_calculatePalmettoGallberyLiveMediumFuelLoad_2(self, ageOfRough, heightOfUnderstory); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getHeatOfCombustionDead'] = PalmettoGallberry.prototype.getHeatOfCombustionDead = function() { +PalmettoGallberry.prototype['getHeatOfCombustionDead'] = PalmettoGallberry.prototype.getHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getHeatOfCombustionDead_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getHeatOfCombustionLive'] = PalmettoGallberry.prototype.getHeatOfCombustionLive = function() { +PalmettoGallberry.prototype['getHeatOfCombustionLive'] = PalmettoGallberry.prototype.getHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getHeatOfCombustionLive_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getMoistureOfExtinctionDead'] = PalmettoGallberry.prototype.getMoistureOfExtinctionDead = function() { +PalmettoGallberry.prototype['getMoistureOfExtinctionDead'] = PalmettoGallberry.prototype.getMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getMoistureOfExtinctionDead_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getPalmettoGallberyDeadFineFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadFineFuelLoad = function() { +PalmettoGallberry.prototype['getPalmettoGallberyDeadFineFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFineFuelLoad_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getPalmettoGallberyDeadFoliageLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadFoliageLoad = function() { +PalmettoGallberry.prototype['getPalmettoGallberyDeadFoliageLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadFoliageLoad_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getPalmettoGallberyDeadMediumFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadMediumFuelLoad = function() { +PalmettoGallberry.prototype['getPalmettoGallberyDeadMediumFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyDeadMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyDeadMediumFuelLoad_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getPalmettoGallberyFuelBedDepth'] = PalmettoGallberry.prototype.getPalmettoGallberyFuelBedDepth = function() { +PalmettoGallberry.prototype['getPalmettoGallberyFuelBedDepth'] = PalmettoGallberry.prototype.getPalmettoGallberyFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyFuelBedDepth_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getPalmettoGallberyLitterLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLitterLoad = function() { +PalmettoGallberry.prototype['getPalmettoGallberyLitterLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLitterLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLitterLoad_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getPalmettoGallberyLiveFineFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveFineFuelLoad = function() { +PalmettoGallberry.prototype['getPalmettoGallberyLiveFineFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveFineFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFineFuelLoad_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getPalmettoGallberyLiveFoliageLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveFoliageLoad = function() { +PalmettoGallberry.prototype['getPalmettoGallberyLiveFoliageLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveFoliageLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveFoliageLoad_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['getPalmettoGallberyLiveMediumFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveMediumFuelLoad = function() { +PalmettoGallberry.prototype['getPalmettoGallberyLiveMediumFuelLoad'] = PalmettoGallberry.prototype.getPalmettoGallberyLiveMediumFuelLoad = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_PalmettoGallberry_getPalmettoGallberyLiveMediumFuelLoad_0(self); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -PalmettoGallberry.prototype['__destroy__'] = PalmettoGallberry.prototype.__destroy__ = function() { + PalmettoGallberry.prototype['__destroy__'] = PalmettoGallberry.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_PalmettoGallberry___destroy___0(self); }; - -// Interface: WesternAspen - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function WesternAspen() { +// WesternAspen +/** @suppress {undefinedVars, duplicate} @this{Object} */function WesternAspen() { this.ptr = _emscripten_bind_WesternAspen_WesternAspen_0(); getCache(WesternAspen)[this.ptr] = this; -}; - +};; WesternAspen.prototype = Object.create(WrapperObject.prototype); WesternAspen.prototype.constructor = WesternAspen; WesternAspen.prototype.__class__ = WesternAspen; WesternAspen.__cache__ = {}; Module['WesternAspen'] = WesternAspen; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['initializeMembers'] = WesternAspen.prototype.initializeMembers = function() { + +WesternAspen.prototype['initializeMembers'] = WesternAspen.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_WesternAspen_initializeMembers_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['calculateAspenMortality'] = WesternAspen.prototype.calculateAspenMortality = function(severity, flameLength, DBH) { +WesternAspen.prototype['calculateAspenMortality'] = WesternAspen.prototype.calculateAspenMortality = /** @suppress {undefinedVars, duplicate} @this{Object} */function(severity, flameLength, DBH) { var self = this.ptr; if (severity && typeof severity === 'object') severity = severity.ptr; if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (DBH && typeof DBH === 'object') DBH = DBH.ptr; return _emscripten_bind_WesternAspen_calculateAspenMortality_3(self, severity, flameLength, DBH); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenFuelBedDepth'] = WesternAspen.prototype.getAspenFuelBedDepth = function(typeIndex) { +WesternAspen.prototype['getAspenFuelBedDepth'] = WesternAspen.prototype.getAspenFuelBedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(typeIndex) { var self = this.ptr; if (typeIndex && typeof typeIndex === 'object') typeIndex = typeIndex.ptr; return _emscripten_bind_WesternAspen_getAspenFuelBedDepth_1(self, typeIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenHeatOfCombustionDead'] = WesternAspen.prototype.getAspenHeatOfCombustionDead = function() { +WesternAspen.prototype['getAspenHeatOfCombustionDead'] = WesternAspen.prototype.getAspenHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenHeatOfCombustionDead_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenHeatOfCombustionLive'] = WesternAspen.prototype.getAspenHeatOfCombustionLive = function() { +WesternAspen.prototype['getAspenHeatOfCombustionLive'] = WesternAspen.prototype.getAspenHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenHeatOfCombustionLive_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenLoadDeadOneHour'] = WesternAspen.prototype.getAspenLoadDeadOneHour = function() { +WesternAspen.prototype['getAspenLoadDeadOneHour'] = WesternAspen.prototype.getAspenLoadDeadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenLoadDeadOneHour_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenLoadDeadTenHour'] = WesternAspen.prototype.getAspenLoadDeadTenHour = function() { +WesternAspen.prototype['getAspenLoadDeadTenHour'] = WesternAspen.prototype.getAspenLoadDeadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenLoadDeadTenHour_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenLoadLiveHerbaceous'] = WesternAspen.prototype.getAspenLoadLiveHerbaceous = function() { +WesternAspen.prototype['getAspenLoadLiveHerbaceous'] = WesternAspen.prototype.getAspenLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenLoadLiveHerbaceous_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenLoadLiveWoody'] = WesternAspen.prototype.getAspenLoadLiveWoody = function() { +WesternAspen.prototype['getAspenLoadLiveWoody'] = WesternAspen.prototype.getAspenLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenLoadLiveWoody_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenMoistureOfExtinctionDead'] = WesternAspen.prototype.getAspenMoistureOfExtinctionDead = function() { +WesternAspen.prototype['getAspenMoistureOfExtinctionDead'] = WesternAspen.prototype.getAspenMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenMoistureOfExtinctionDead_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenMortality'] = WesternAspen.prototype.getAspenMortality = function() { +WesternAspen.prototype['getAspenMortality'] = WesternAspen.prototype.getAspenMortality = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenMortality_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenSavrDeadOneHour'] = WesternAspen.prototype.getAspenSavrDeadOneHour = function() { +WesternAspen.prototype['getAspenSavrDeadOneHour'] = WesternAspen.prototype.getAspenSavrDeadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenSavrDeadOneHour_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenSavrDeadTenHour'] = WesternAspen.prototype.getAspenSavrDeadTenHour = function() { +WesternAspen.prototype['getAspenSavrDeadTenHour'] = WesternAspen.prototype.getAspenSavrDeadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenSavrDeadTenHour_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenSavrLiveHerbaceous'] = WesternAspen.prototype.getAspenSavrLiveHerbaceous = function() { +WesternAspen.prototype['getAspenSavrLiveHerbaceous'] = WesternAspen.prototype.getAspenSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenSavrLiveHerbaceous_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['getAspenSavrLiveWoody'] = WesternAspen.prototype.getAspenSavrLiveWoody = function() { +WesternAspen.prototype['getAspenSavrLiveWoody'] = WesternAspen.prototype.getAspenSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_WesternAspen_getAspenSavrLiveWoody_0(self); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WesternAspen.prototype['__destroy__'] = WesternAspen.prototype.__destroy__ = function() { + WesternAspen.prototype['__destroy__'] = WesternAspen.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_WesternAspen___destroy___0(self); }; - -// Interface: SIGCrown - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGCrown(fuelModels) { +// SIGCrown +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGCrown(fuelModels) { if (fuelModels && typeof fuelModels === 'object') fuelModels = fuelModels.ptr; this.ptr = _emscripten_bind_SIGCrown_SIGCrown_1(fuelModels); getCache(SIGCrown)[this.ptr] = this; -}; - +};; SIGCrown.prototype = Object.create(WrapperObject.prototype); SIGCrown.prototype.constructor = SIGCrown; SIGCrown.prototype.__class__ = SIGCrown; SIGCrown.__cache__ = {}; Module['SIGCrown'] = SIGCrown; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFireType'] = SIGCrown.prototype.getFireType = function() { + +SIGCrown.prototype['getFireType'] = SIGCrown.prototype.getFireType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getFireType_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGCrown.prototype.getIsMoistureScenarioDefinedByIndex = function(index) { +SIGCrown.prototype['getIsMoistureScenarioDefinedByIndex'] = SIGCrown.prototype.getIsMoistureScenarioDefinedByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return !!(_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getIsMoistureScenarioDefinedByName'] = SIGCrown.prototype.getIsMoistureScenarioDefinedByName = function(name) { +SIGCrown.prototype['getIsMoistureScenarioDefinedByName'] = SIGCrown.prototype.getIsMoistureScenarioDefinedByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return !!(_emscripten_bind_SIGCrown_getIsMoistureScenarioDefinedByName_1(self, name)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['isAllFuelLoadZero'] = SIGCrown.prototype.isAllFuelLoadZero = function(fuelModelNumber) { +SIGCrown.prototype['isAllFuelLoadZero'] = SIGCrown.prototype.isAllFuelLoadZero = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGCrown_isAllFuelLoadZero_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['isFuelDynamic'] = SIGCrown.prototype.isFuelDynamic = function(fuelModelNumber) { +SIGCrown.prototype['isFuelDynamic'] = SIGCrown.prototype.isFuelDynamic = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGCrown_isFuelDynamic_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['isFuelModelDefined'] = SIGCrown.prototype.isFuelModelDefined = function(fuelModelNumber) { +SIGCrown.prototype['isFuelModelDefined'] = SIGCrown.prototype.isFuelModelDefined = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGCrown_isFuelModelDefined_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['isFuelModelReserved'] = SIGCrown.prototype.isFuelModelReserved = function(fuelModelNumber) { +SIGCrown.prototype['isFuelModelReserved'] = SIGCrown.prototype.isFuelModelReserved = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return !!(_emscripten_bind_SIGCrown_isFuelModelReserved_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setCurrentMoistureScenarioByIndex'] = SIGCrown.prototype.setCurrentMoistureScenarioByIndex = function(moistureScenarioIndex) { +SIGCrown.prototype['setCurrentMoistureScenarioByIndex'] = SIGCrown.prototype.setCurrentMoistureScenarioByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarioIndex) { var self = this.ptr; if (moistureScenarioIndex && typeof moistureScenarioIndex === 'object') moistureScenarioIndex = moistureScenarioIndex.ptr; return !!(_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByIndex_1(self, moistureScenarioIndex)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setCurrentMoistureScenarioByName'] = SIGCrown.prototype.setCurrentMoistureScenarioByName = function(moistureScenarioName) { +SIGCrown.prototype['setCurrentMoistureScenarioByName'] = SIGCrown.prototype.setCurrentMoistureScenarioByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarioName) { var self = this.ptr; ensureCache.prepare(); if (moistureScenarioName && typeof moistureScenarioName === 'object') moistureScenarioName = moistureScenarioName.ptr; else moistureScenarioName = ensureString(moistureScenarioName); return !!(_emscripten_bind_SIGCrown_setCurrentMoistureScenarioByName_1(self, moistureScenarioName)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getAspect'] = SIGCrown.prototype.getAspect = function() { +SIGCrown.prototype['getAspect'] = SIGCrown.prototype.getAspect = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getAspect_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCanopyBaseHeight'] = SIGCrown.prototype.getCanopyBaseHeight = function(canopyHeightUnits) { +SIGCrown.prototype['getCanopyBaseHeight'] = SIGCrown.prototype.getCanopyBaseHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeightUnits) { var self = this.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; return _emscripten_bind_SIGCrown_getCanopyBaseHeight_1(self, canopyHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCanopyBulkDensity'] = SIGCrown.prototype.getCanopyBulkDensity = function(canopyBulkDensityUnits) { +SIGCrown.prototype['getCanopyBulkDensity'] = SIGCrown.prototype.getCanopyBulkDensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyBulkDensityUnits) { var self = this.ptr; if (canopyBulkDensityUnits && typeof canopyBulkDensityUnits === 'object') canopyBulkDensityUnits = canopyBulkDensityUnits.ptr; return _emscripten_bind_SIGCrown_getCanopyBulkDensity_1(self, canopyBulkDensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCanopyCover'] = SIGCrown.prototype.getCanopyCover = function(canopyFractionUnits) { +SIGCrown.prototype['getCanopyCover'] = SIGCrown.prototype.getCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyFractionUnits) { var self = this.ptr; if (canopyFractionUnits && typeof canopyFractionUnits === 'object') canopyFractionUnits = canopyFractionUnits.ptr; return _emscripten_bind_SIGCrown_getCanopyCover_1(self, canopyFractionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCanopyHeight'] = SIGCrown.prototype.getCanopyHeight = function(canopyHeighUnits) { +SIGCrown.prototype['getCanopyHeight'] = SIGCrown.prototype.getCanopyHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeighUnits) { var self = this.ptr; if (canopyHeighUnits && typeof canopyHeighUnits === 'object') canopyHeighUnits = canopyHeighUnits.ptr; return _emscripten_bind_SIGCrown_getCanopyHeight_1(self, canopyHeighUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCriticalOpenWindSpeed'] = SIGCrown.prototype.getCriticalOpenWindSpeed = function(speedUnits) { +SIGCrown.prototype['getCriticalOpenWindSpeed'] = SIGCrown.prototype.getCriticalOpenWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speedUnits) { var self = this.ptr; if (speedUnits && typeof speedUnits === 'object') speedUnits = speedUnits.ptr; return _emscripten_bind_SIGCrown_getCriticalOpenWindSpeed_1(self, speedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownCriticalFireSpreadRate'] = SIGCrown.prototype.getCrownCriticalFireSpreadRate = function(spreadRateUnits) { +SIGCrown.prototype['getCrownCriticalFireSpreadRate'] = SIGCrown.prototype.getCrownCriticalFireSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGCrown_getCrownCriticalFireSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownCriticalSurfaceFirelineIntensity'] = SIGCrown.prototype.getCrownCriticalSurfaceFirelineIntensity = function(firelineIntensityUnits) { +SIGCrown.prototype['getCrownCriticalSurfaceFirelineIntensity'] = SIGCrown.prototype.getCrownCriticalSurfaceFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFirelineIntensity_1(self, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownCriticalSurfaceFlameLength'] = SIGCrown.prototype.getCrownCriticalSurfaceFlameLength = function(flameLengthUnits) { +SIGCrown.prototype['getCrownCriticalSurfaceFlameLength'] = SIGCrown.prototype.getCrownCriticalSurfaceFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGCrown_getCrownCriticalSurfaceFlameLength_1(self, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFireActiveRatio'] = SIGCrown.prototype.getCrownFireActiveRatio = function() { +SIGCrown.prototype['getCrownFireActiveRatio'] = SIGCrown.prototype.getCrownFireActiveRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getCrownFireActiveRatio_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFireArea'] = SIGCrown.prototype.getCrownFireArea = function(areaUnits) { +SIGCrown.prototype['getCrownFireArea'] = SIGCrown.prototype.getCrownFireArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFireArea_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFirePerimeter'] = SIGCrown.prototype.getCrownFirePerimeter = function(lengthUnits) { +SIGCrown.prototype['getCrownFirePerimeter'] = SIGCrown.prototype.getCrownFirePerimeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFirePerimeter_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownTransitionRatio'] = SIGCrown.prototype.getCrownTransitionRatio = function() { +SIGCrown.prototype['getCrownTransitionRatio'] = SIGCrown.prototype.getCrownTransitionRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getCrownTransitionRatio_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFireLengthToWidthRatio'] = SIGCrown.prototype.getCrownFireLengthToWidthRatio = function() { +SIGCrown.prototype['getCrownFireLengthToWidthRatio'] = SIGCrown.prototype.getCrownFireLengthToWidthRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getCrownFireLengthToWidthRatio_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFireSpreadDistance'] = SIGCrown.prototype.getCrownFireSpreadDistance = function(lengthUnits) { +SIGCrown.prototype['getCrownFireSpreadDistance'] = SIGCrown.prototype.getCrownFireSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFireSpreadDistance_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFireSpreadRate'] = SIGCrown.prototype.getCrownFireSpreadRate = function(spreadRateUnits) { +SIGCrown.prototype['getCrownFireSpreadRate'] = SIGCrown.prototype.getCrownFireSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFireSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFirelineIntensity'] = SIGCrown.prototype.getCrownFirelineIntensity = function(firelineIntensityUnits) { +SIGCrown.prototype['getCrownFirelineIntensity'] = SIGCrown.prototype.getCrownFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFirelineIntensity_1(self, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFlameLength'] = SIGCrown.prototype.getCrownFlameLength = function(flameLengthUnits) { +SIGCrown.prototype['getCrownFlameLength'] = SIGCrown.prototype.getCrownFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGCrown_getCrownFlameLength_1(self, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownFractionBurned'] = SIGCrown.prototype.getCrownFractionBurned = function() { +SIGCrown.prototype['getCrownFractionBurned'] = SIGCrown.prototype.getCrownFractionBurned = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getCrownFractionBurned_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getCrownRatio'] = SIGCrown.prototype.getCrownRatio = function(crownRatioUnits) { +SIGCrown.prototype['getCrownRatio'] = SIGCrown.prototype.getCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatioUnits) { var self = this.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; return _emscripten_bind_SIGCrown_getCrownRatio_1(self, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFinalFirelineIntesity'] = SIGCrown.prototype.getFinalFirelineIntesity = function(firelineIntensityUnits) { +SIGCrown.prototype['getFinalFirelineIntesity'] = SIGCrown.prototype.getFinalFirelineIntesity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensityUnits) { var self = this.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; return _emscripten_bind_SIGCrown_getFinalFirelineIntesity_1(self, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFinalHeatPerUnitArea'] = SIGCrown.prototype.getFinalHeatPerUnitArea = function(heatPerUnitAreaUnits) { +SIGCrown.prototype['getFinalHeatPerUnitArea'] = SIGCrown.prototype.getFinalHeatPerUnitArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(heatPerUnitAreaUnits) { var self = this.ptr; if (heatPerUnitAreaUnits && typeof heatPerUnitAreaUnits === 'object') heatPerUnitAreaUnits = heatPerUnitAreaUnits.ptr; return _emscripten_bind_SIGCrown_getFinalHeatPerUnitArea_1(self, heatPerUnitAreaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFinalSpreadRate'] = SIGCrown.prototype.getFinalSpreadRate = function(spreadRateUnits) { +SIGCrown.prototype['getFinalSpreadRate'] = SIGCrown.prototype.getFinalSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGCrown_getFinalSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFinalSpreadDistance'] = SIGCrown.prototype.getFinalSpreadDistance = function(lengthUnits) { +SIGCrown.prototype['getFinalSpreadDistance'] = SIGCrown.prototype.getFinalSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getFinalSpreadDistance_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFinalFireArea'] = SIGCrown.prototype.getFinalFireArea = function(areaUnits) { +SIGCrown.prototype['getFinalFireArea'] = SIGCrown.prototype.getFinalFireArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGCrown_getFinalFireArea_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFinalFirePerimeter'] = SIGCrown.prototype.getFinalFirePerimeter = function(lengthUnits) { +SIGCrown.prototype['getFinalFirePerimeter'] = SIGCrown.prototype.getFinalFirePerimeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getFinalFirePerimeter_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelHeatOfCombustionDead'] = SIGCrown.prototype.getFuelHeatOfCombustionDead = function(fuelModelNumber, heatOfCombustionUnits) { +SIGCrown.prototype['getFuelHeatOfCombustionDead'] = SIGCrown.prototype.getFuelHeatOfCombustionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGCrown_getFuelHeatOfCombustionDead_2(self, fuelModelNumber, heatOfCombustionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelHeatOfCombustionLive'] = SIGCrown.prototype.getFuelHeatOfCombustionLive = function(fuelModelNumber, heatOfCombustionUnits) { +SIGCrown.prototype['getFuelHeatOfCombustionLive'] = SIGCrown.prototype.getFuelHeatOfCombustionLive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, heatOfCombustionUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (heatOfCombustionUnits && typeof heatOfCombustionUnits === 'object') heatOfCombustionUnits = heatOfCombustionUnits.ptr; return _emscripten_bind_SIGCrown_getFuelHeatOfCombustionLive_2(self, fuelModelNumber, heatOfCombustionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelLoadHundredHour'] = SIGCrown.prototype.getFuelLoadHundredHour = function(fuelModelNumber, loadingUnits) { +SIGCrown.prototype['getFuelLoadHundredHour'] = SIGCrown.prototype.getFuelLoadHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadHundredHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelLoadLiveHerbaceous'] = SIGCrown.prototype.getFuelLoadLiveHerbaceous = function(fuelModelNumber, loadingUnits) { +SIGCrown.prototype['getFuelLoadLiveHerbaceous'] = SIGCrown.prototype.getFuelLoadLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadLiveHerbaceous_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelLoadLiveWoody'] = SIGCrown.prototype.getFuelLoadLiveWoody = function(fuelModelNumber, loadingUnits) { +SIGCrown.prototype['getFuelLoadLiveWoody'] = SIGCrown.prototype.getFuelLoadLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadLiveWoody_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelLoadOneHour'] = SIGCrown.prototype.getFuelLoadOneHour = function(fuelModelNumber, loadingUnits) { +SIGCrown.prototype['getFuelLoadOneHour'] = SIGCrown.prototype.getFuelLoadOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadOneHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelLoadTenHour'] = SIGCrown.prototype.getFuelLoadTenHour = function(fuelModelNumber, loadingUnits) { +SIGCrown.prototype['getFuelLoadTenHour'] = SIGCrown.prototype.getFuelLoadTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, loadingUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (loadingUnits && typeof loadingUnits === 'object') loadingUnits = loadingUnits.ptr; return _emscripten_bind_SIGCrown_getFuelLoadTenHour_2(self, fuelModelNumber, loadingUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelMoistureOfExtinctionDead'] = SIGCrown.prototype.getFuelMoistureOfExtinctionDead = function(fuelModelNumber, moistureUnits) { +SIGCrown.prototype['getFuelMoistureOfExtinctionDead'] = SIGCrown.prototype.getFuelMoistureOfExtinctionDead = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getFuelMoistureOfExtinctionDead_2(self, fuelModelNumber, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelSavrLiveHerbaceous'] = SIGCrown.prototype.getFuelSavrLiveHerbaceous = function(fuelModelNumber, savrUnits) { +SIGCrown.prototype['getFuelSavrLiveHerbaceous'] = SIGCrown.prototype.getFuelSavrLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGCrown_getFuelSavrLiveHerbaceous_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelSavrLiveWoody'] = SIGCrown.prototype.getFuelSavrLiveWoody = function(fuelModelNumber, savrUnits) { +SIGCrown.prototype['getFuelSavrLiveWoody'] = SIGCrown.prototype.getFuelSavrLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGCrown_getFuelSavrLiveWoody_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelSavrOneHour'] = SIGCrown.prototype.getFuelSavrOneHour = function(fuelModelNumber, savrUnits) { +SIGCrown.prototype['getFuelSavrOneHour'] = SIGCrown.prototype.getFuelSavrOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, savrUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (savrUnits && typeof savrUnits === 'object') savrUnits = savrUnits.ptr; return _emscripten_bind_SIGCrown_getFuelSavrOneHour_2(self, fuelModelNumber, savrUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelbedDepth'] = SIGCrown.prototype.getFuelbedDepth = function(fuelModelNumber, lengthUnits) { +SIGCrown.prototype['getFuelbedDepth'] = SIGCrown.prototype.getFuelbedDepth = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, lengthUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getFuelbedDepth_2(self, fuelModelNumber, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureFoliar'] = SIGCrown.prototype.getMoistureFoliar = function(moistureUnits) { +SIGCrown.prototype['getMoistureFoliar'] = SIGCrown.prototype.getMoistureFoliar = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureFoliar_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureHundredHour'] = SIGCrown.prototype.getMoistureHundredHour = function(moistureUnits) { +SIGCrown.prototype['getMoistureHundredHour'] = SIGCrown.prototype.getMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureHundredHour_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureLiveHerbaceous'] = SIGCrown.prototype.getMoistureLiveHerbaceous = function(moistureUnits) { +SIGCrown.prototype['getMoistureLiveHerbaceous'] = SIGCrown.prototype.getMoistureLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureLiveHerbaceous_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureLiveWoody'] = SIGCrown.prototype.getMoistureLiveWoody = function(moistureUnits) { +SIGCrown.prototype['getMoistureLiveWoody'] = SIGCrown.prototype.getMoistureLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureLiveWoody_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureOneHour'] = SIGCrown.prototype.getMoistureOneHour = function(moistureUnits) { +SIGCrown.prototype['getMoistureOneHour'] = SIGCrown.prototype.getMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureOneHour_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioHundredHourByIndex'] = SIGCrown.prototype.getMoistureScenarioHundredHourByIndex = function(index, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioHundredHourByIndex'] = SIGCrown.prototype.getMoistureScenarioHundredHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioHundredHourByName'] = SIGCrown.prototype.getMoistureScenarioHundredHourByName = function(name, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioHundredHourByName'] = SIGCrown.prototype.getMoistureScenarioHundredHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioHundredHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGCrown.prototype.getMoistureScenarioLiveHerbaceousByIndex = function(index, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioLiveHerbaceousByIndex'] = SIGCrown.prototype.getMoistureScenarioLiveHerbaceousByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGCrown.prototype.getMoistureScenarioLiveHerbaceousByName = function(name, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioLiveHerbaceousByName'] = SIGCrown.prototype.getMoistureScenarioLiveHerbaceousByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioLiveHerbaceousByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGCrown.prototype.getMoistureScenarioLiveWoodyByIndex = function(index, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioLiveWoodyByIndex'] = SIGCrown.prototype.getMoistureScenarioLiveWoodyByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioLiveWoodyByName'] = SIGCrown.prototype.getMoistureScenarioLiveWoodyByName = function(name, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioLiveWoodyByName'] = SIGCrown.prototype.getMoistureScenarioLiveWoodyByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioLiveWoodyByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioOneHourByIndex'] = SIGCrown.prototype.getMoistureScenarioOneHourByIndex = function(index, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioOneHourByIndex'] = SIGCrown.prototype.getMoistureScenarioOneHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioOneHourByName'] = SIGCrown.prototype.getMoistureScenarioOneHourByName = function(name, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioOneHourByName'] = SIGCrown.prototype.getMoistureScenarioOneHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioOneHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioTenHourByIndex'] = SIGCrown.prototype.getMoistureScenarioTenHourByIndex = function(index, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioTenHourByIndex'] = SIGCrown.prototype.getMoistureScenarioTenHourByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, moistureUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByIndex_2(self, index, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioTenHourByName'] = SIGCrown.prototype.getMoistureScenarioTenHourByName = function(name, moistureUnits) { +SIGCrown.prototype['getMoistureScenarioTenHourByName'] = SIGCrown.prototype.getMoistureScenarioTenHourByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name, moistureUnits) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureScenarioTenHourByName_2(self, name, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureTenHour'] = SIGCrown.prototype.getMoistureTenHour = function(moistureUnits) { +SIGCrown.prototype['getMoistureTenHour'] = SIGCrown.prototype.getMoistureTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureUnits) { var self = this.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; return _emscripten_bind_SIGCrown_getMoistureTenHour_1(self, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getSlope'] = SIGCrown.prototype.getSlope = function(slopeUnits) { +SIGCrown.prototype['getSlope'] = SIGCrown.prototype.getSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeUnits) { var self = this.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; return _emscripten_bind_SIGCrown_getSlope_1(self, slopeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getSurfaceFireSpreadDistance'] = SIGCrown.prototype.getSurfaceFireSpreadDistance = function(lengthUnits) { +SIGCrown.prototype['getSurfaceFireSpreadDistance'] = SIGCrown.prototype.getSurfaceFireSpreadDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SIGCrown_getSurfaceFireSpreadDistance_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getSurfaceFireSpreadRate'] = SIGCrown.prototype.getSurfaceFireSpreadRate = function(spreadRateUnits) { +SIGCrown.prototype['getSurfaceFireSpreadRate'] = SIGCrown.prototype.getSurfaceFireSpreadRate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(spreadRateUnits) { var self = this.ptr; if (spreadRateUnits && typeof spreadRateUnits === 'object') spreadRateUnits = spreadRateUnits.ptr; return _emscripten_bind_SIGCrown_getSurfaceFireSpreadRate_1(self, spreadRateUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getWindDirection'] = SIGCrown.prototype.getWindDirection = function() { +SIGCrown.prototype['getWindDirection'] = SIGCrown.prototype.getWindDirection = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getWindDirection_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getWindSpeed'] = SIGCrown.prototype.getWindSpeed = function(windSpeedUnits, windHeightInputMode) { +SIGCrown.prototype['getWindSpeed'] = SIGCrown.prototype.getWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedUnits, windHeightInputMode) { var self = this.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; return _emscripten_bind_SIGCrown_getWindSpeed_2(self, windSpeedUnits, windHeightInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelModelNumber'] = SIGCrown.prototype.getFuelModelNumber = function() { +SIGCrown.prototype['getFuelModelNumber'] = SIGCrown.prototype.getFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getFuelModelNumber_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioIndexByName'] = SIGCrown.prototype.getMoistureScenarioIndexByName = function(name) { +SIGCrown.prototype['getMoistureScenarioIndexByName'] = SIGCrown.prototype.getMoistureScenarioIndexByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return _emscripten_bind_SIGCrown_getMoistureScenarioIndexByName_1(self, name); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getNumberOfMoistureScenarios'] = SIGCrown.prototype.getNumberOfMoistureScenarios = function() { +SIGCrown.prototype['getNumberOfMoistureScenarios'] = SIGCrown.prototype.getNumberOfMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGCrown_getNumberOfMoistureScenarios_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelCode'] = SIGCrown.prototype.getFuelCode = function(fuelModelNumber) { +SIGCrown.prototype['getFuelCode'] = SIGCrown.prototype.getFuelCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGCrown_getFuelCode_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFuelName'] = SIGCrown.prototype.getFuelName = function(fuelModelNumber) { +SIGCrown.prototype['getFuelName'] = SIGCrown.prototype.getFuelName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; return UTF8ToString(_emscripten_bind_SIGCrown_getFuelName_1(self, fuelModelNumber)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioDescriptionByIndex'] = SIGCrown.prototype.getMoistureScenarioDescriptionByIndex = function(index) { +SIGCrown.prototype['getMoistureScenarioDescriptionByIndex'] = SIGCrown.prototype.getMoistureScenarioDescriptionByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioDescriptionByName'] = SIGCrown.prototype.getMoistureScenarioDescriptionByName = function(name) { +SIGCrown.prototype['getMoistureScenarioDescriptionByName'] = SIGCrown.prototype.getMoistureScenarioDescriptionByName = /** @suppress {undefinedVars, duplicate} @this{Object} */function(name) { var self = this.ptr; ensureCache.prepare(); if (name && typeof name === 'object') name = name.ptr; else name = ensureString(name); return UTF8ToString(_emscripten_bind_SIGCrown_getMoistureScenarioDescriptionByName_1(self, name)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getMoistureScenarioNameByIndex'] = SIGCrown.prototype.getMoistureScenarioNameByIndex = function(index) { +SIGCrown.prototype['getMoistureScenarioNameByIndex'] = SIGCrown.prototype.getMoistureScenarioNameByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGCrown_getMoistureScenarioNameByIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['doCrownRun'] = SIGCrown.prototype.doCrownRun = function() { +SIGCrown.prototype['doCrownRun'] = SIGCrown.prototype.doCrownRun = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGCrown_doCrownRun_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['doCrownRunRothermel'] = SIGCrown.prototype.doCrownRunRothermel = function() { +SIGCrown.prototype['doCrownRunRothermel'] = SIGCrown.prototype.doCrownRunRothermel = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGCrown_doCrownRunRothermel_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['doCrownRunScottAndReinhardt'] = SIGCrown.prototype.doCrownRunScottAndReinhardt = function() { +SIGCrown.prototype['doCrownRunScottAndReinhardt'] = SIGCrown.prototype.doCrownRunScottAndReinhardt = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGCrown_doCrownRunScottAndReinhardt_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['initializeMembers'] = SIGCrown.prototype.initializeMembers = function() { +SIGCrown.prototype['initializeMembers'] = SIGCrown.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGCrown_initializeMembers_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setAspect'] = SIGCrown.prototype.setAspect = function(aspect) { +SIGCrown.prototype['setAspect'] = SIGCrown.prototype.setAspect = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspect) { var self = this.ptr; if (aspect && typeof aspect === 'object') aspect = aspect.ptr; _emscripten_bind_SIGCrown_setAspect_1(self, aspect); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setCanopyBaseHeight'] = SIGCrown.prototype.setCanopyBaseHeight = function(canopyBaseHeight, canopyHeightUnits) { +SIGCrown.prototype['setCanopyBaseHeight'] = SIGCrown.prototype.setCanopyBaseHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyBaseHeight, canopyHeightUnits) { var self = this.ptr; if (canopyBaseHeight && typeof canopyBaseHeight === 'object') canopyBaseHeight = canopyBaseHeight.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; _emscripten_bind_SIGCrown_setCanopyBaseHeight_2(self, canopyBaseHeight, canopyHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setCanopyBulkDensity'] = SIGCrown.prototype.setCanopyBulkDensity = function(canopyBulkDensity, densityUnits) { +SIGCrown.prototype['setCanopyBulkDensity'] = SIGCrown.prototype.setCanopyBulkDensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyBulkDensity, densityUnits) { var self = this.ptr; if (canopyBulkDensity && typeof canopyBulkDensity === 'object') canopyBulkDensity = canopyBulkDensity.ptr; if (densityUnits && typeof densityUnits === 'object') densityUnits = densityUnits.ptr; _emscripten_bind_SIGCrown_setCanopyBulkDensity_2(self, canopyBulkDensity, densityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setCanopyCover'] = SIGCrown.prototype.setCanopyCover = function(canopyCover, coverUnits) { +SIGCrown.prototype['setCanopyCover'] = SIGCrown.prototype.setCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyCover, coverUnits) { var self = this.ptr; if (canopyCover && typeof canopyCover === 'object') canopyCover = canopyCover.ptr; if (coverUnits && typeof coverUnits === 'object') coverUnits = coverUnits.ptr; _emscripten_bind_SIGCrown_setCanopyCover_2(self, canopyCover, coverUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setCanopyHeight'] = SIGCrown.prototype.setCanopyHeight = function(canopyHeight, canopyHeightUnits) { +SIGCrown.prototype['setCanopyHeight'] = SIGCrown.prototype.setCanopyHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(canopyHeight, canopyHeightUnits) { var self = this.ptr; if (canopyHeight && typeof canopyHeight === 'object') canopyHeight = canopyHeight.ptr; if (canopyHeightUnits && typeof canopyHeightUnits === 'object') canopyHeightUnits = canopyHeightUnits.ptr; _emscripten_bind_SIGCrown_setCanopyHeight_2(self, canopyHeight, canopyHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setCrownRatio'] = SIGCrown.prototype.setCrownRatio = function(crownRatio, crownRatioUnits) { +SIGCrown.prototype['setCrownRatio'] = SIGCrown.prototype.setCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatio, crownRatioUnits) { var self = this.ptr; if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGCrown_setCrownRatio_2(self, crownRatio, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setFuelModelNumber'] = SIGCrown.prototype.setFuelModelNumber = function(fuelModelNumber) { +SIGCrown.prototype['setFuelModelNumber'] = SIGCrown.prototype.setFuelModelNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; _emscripten_bind_SIGCrown_setFuelModelNumber_1(self, fuelModelNumber); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setCrownFireCalculationMethod'] = SIGCrown.prototype.setCrownFireCalculationMethod = function(CrownFireCalculationMethod) { +SIGCrown.prototype['setCrownFireCalculationMethod'] = SIGCrown.prototype.setCrownFireCalculationMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function(CrownFireCalculationMethod) { var self = this.ptr; if (CrownFireCalculationMethod && typeof CrownFireCalculationMethod === 'object') CrownFireCalculationMethod = CrownFireCalculationMethod.ptr; _emscripten_bind_SIGCrown_setCrownFireCalculationMethod_1(self, CrownFireCalculationMethod); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setElapsedTime'] = SIGCrown.prototype.setElapsedTime = function(elapsedTime, timeUnits) { +SIGCrown.prototype['setElapsedTime'] = SIGCrown.prototype.setElapsedTime = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elapsedTime, timeUnits) { var self = this.ptr; if (elapsedTime && typeof elapsedTime === 'object') elapsedTime = elapsedTime.ptr; if (timeUnits && typeof timeUnits === 'object') timeUnits = timeUnits.ptr; _emscripten_bind_SIGCrown_setElapsedTime_2(self, elapsedTime, timeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setFuelModels'] = SIGCrown.prototype.setFuelModels = function(fuelModels) { +SIGCrown.prototype['setFuelModels'] = SIGCrown.prototype.setFuelModels = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModels) { var self = this.ptr; if (fuelModels && typeof fuelModels === 'object') fuelModels = fuelModels.ptr; _emscripten_bind_SIGCrown_setFuelModels_1(self, fuelModels); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureDeadAggregate'] = SIGCrown.prototype.setMoistureDeadAggregate = function(moistureDead, moistureUnits) { +SIGCrown.prototype['setMoistureDeadAggregate'] = SIGCrown.prototype.setMoistureDeadAggregate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureDead, moistureUnits) { var self = this.ptr; if (moistureDead && typeof moistureDead === 'object') moistureDead = moistureDead.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureDeadAggregate_2(self, moistureDead, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureFoliar'] = SIGCrown.prototype.setMoistureFoliar = function(foliarMoisture, moistureUnits) { +SIGCrown.prototype['setMoistureFoliar'] = SIGCrown.prototype.setMoistureFoliar = /** @suppress {undefinedVars, duplicate} @this{Object} */function(foliarMoisture, moistureUnits) { var self = this.ptr; if (foliarMoisture && typeof foliarMoisture === 'object') foliarMoisture = foliarMoisture.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureFoliar_2(self, foliarMoisture, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureHundredHour'] = SIGCrown.prototype.setMoistureHundredHour = function(moistureHundredHour, moistureUnits) { +SIGCrown.prototype['setMoistureHundredHour'] = SIGCrown.prototype.setMoistureHundredHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureHundredHour, moistureUnits) { var self = this.ptr; if (moistureHundredHour && typeof moistureHundredHour === 'object') moistureHundredHour = moistureHundredHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureHundredHour_2(self, moistureHundredHour, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureInputMode'] = SIGCrown.prototype.setMoistureInputMode = function(moistureInputMode) { +SIGCrown.prototype['setMoistureInputMode'] = SIGCrown.prototype.setMoistureInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureInputMode) { var self = this.ptr; if (moistureInputMode && typeof moistureInputMode === 'object') moistureInputMode = moistureInputMode.ptr; _emscripten_bind_SIGCrown_setMoistureInputMode_1(self, moistureInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureLiveAggregate'] = SIGCrown.prototype.setMoistureLiveAggregate = function(moistureLive, moistureUnits) { +SIGCrown.prototype['setMoistureLiveAggregate'] = SIGCrown.prototype.setMoistureLiveAggregate = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLive, moistureUnits) { var self = this.ptr; if (moistureLive && typeof moistureLive === 'object') moistureLive = moistureLive.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureLiveAggregate_2(self, moistureLive, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureLiveHerbaceous'] = SIGCrown.prototype.setMoistureLiveHerbaceous = function(moistureLiveHerbaceous, moistureUnits) { +SIGCrown.prototype['setMoistureLiveHerbaceous'] = SIGCrown.prototype.setMoistureLiveHerbaceous = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLiveHerbaceous, moistureUnits) { var self = this.ptr; if (moistureLiveHerbaceous && typeof moistureLiveHerbaceous === 'object') moistureLiveHerbaceous = moistureLiveHerbaceous.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureLiveHerbaceous_2(self, moistureLiveHerbaceous, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureLiveWoody'] = SIGCrown.prototype.setMoistureLiveWoody = function(moistureLiveWoody, moistureUnits) { +SIGCrown.prototype['setMoistureLiveWoody'] = SIGCrown.prototype.setMoistureLiveWoody = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureLiveWoody, moistureUnits) { var self = this.ptr; if (moistureLiveWoody && typeof moistureLiveWoody === 'object') moistureLiveWoody = moistureLiveWoody.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureLiveWoody_2(self, moistureLiveWoody, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureOneHour'] = SIGCrown.prototype.setMoistureOneHour = function(moistureOneHour, moistureUnits) { +SIGCrown.prototype['setMoistureOneHour'] = SIGCrown.prototype.setMoistureOneHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureOneHour, moistureUnits) { var self = this.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureOneHour_2(self, moistureOneHour, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureScenarios'] = SIGCrown.prototype.setMoistureScenarios = function(moistureScenarios) { +SIGCrown.prototype['setMoistureScenarios'] = SIGCrown.prototype.setMoistureScenarios = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureScenarios) { var self = this.ptr; if (moistureScenarios && typeof moistureScenarios === 'object') moistureScenarios = moistureScenarios.ptr; _emscripten_bind_SIGCrown_setMoistureScenarios_1(self, moistureScenarios); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setMoistureTenHour'] = SIGCrown.prototype.setMoistureTenHour = function(moistureTenHour, moistureUnits) { +SIGCrown.prototype['setMoistureTenHour'] = SIGCrown.prototype.setMoistureTenHour = /** @suppress {undefinedVars, duplicate} @this{Object} */function(moistureTenHour, moistureUnits) { var self = this.ptr; if (moistureTenHour && typeof moistureTenHour === 'object') moistureTenHour = moistureTenHour.ptr; if (moistureUnits && typeof moistureUnits === 'object') moistureUnits = moistureUnits.ptr; _emscripten_bind_SIGCrown_setMoistureTenHour_2(self, moistureTenHour, moistureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setSlope'] = SIGCrown.prototype.setSlope = function(slope, slopeUnits) { +SIGCrown.prototype['setSlope'] = SIGCrown.prototype.setSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slope, slopeUnits) { var self = this.ptr; if (slope && typeof slope === 'object') slope = slope.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; _emscripten_bind_SIGCrown_setSlope_2(self, slope, slopeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setUserProvidedWindAdjustmentFactor'] = SIGCrown.prototype.setUserProvidedWindAdjustmentFactor = function(userProvidedWindAdjustmentFactor) { +SIGCrown.prototype['setUserProvidedWindAdjustmentFactor'] = SIGCrown.prototype.setUserProvidedWindAdjustmentFactor = /** @suppress {undefinedVars, duplicate} @this{Object} */function(userProvidedWindAdjustmentFactor) { var self = this.ptr; if (userProvidedWindAdjustmentFactor && typeof userProvidedWindAdjustmentFactor === 'object') userProvidedWindAdjustmentFactor = userProvidedWindAdjustmentFactor.ptr; _emscripten_bind_SIGCrown_setUserProvidedWindAdjustmentFactor_1(self, userProvidedWindAdjustmentFactor); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setWindAdjustmentFactorCalculationMethod'] = SIGCrown.prototype.setWindAdjustmentFactorCalculationMethod = function(windAdjustmentFactorCalculationMethod) { +SIGCrown.prototype['setWindAdjustmentFactorCalculationMethod'] = SIGCrown.prototype.setWindAdjustmentFactorCalculationMethod = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windAdjustmentFactorCalculationMethod) { var self = this.ptr; if (windAdjustmentFactorCalculationMethod && typeof windAdjustmentFactorCalculationMethod === 'object') windAdjustmentFactorCalculationMethod = windAdjustmentFactorCalculationMethod.ptr; _emscripten_bind_SIGCrown_setWindAdjustmentFactorCalculationMethod_1(self, windAdjustmentFactorCalculationMethod); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setWindAndSpreadOrientationMode'] = SIGCrown.prototype.setWindAndSpreadOrientationMode = function(windAndSpreadAngleMode) { +SIGCrown.prototype['setWindAndSpreadOrientationMode'] = SIGCrown.prototype.setWindAndSpreadOrientationMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windAndSpreadAngleMode) { var self = this.ptr; if (windAndSpreadAngleMode && typeof windAndSpreadAngleMode === 'object') windAndSpreadAngleMode = windAndSpreadAngleMode.ptr; _emscripten_bind_SIGCrown_setWindAndSpreadOrientationMode_1(self, windAndSpreadAngleMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setWindDirection'] = SIGCrown.prototype.setWindDirection = function(windDirection) { +SIGCrown.prototype['setWindDirection'] = SIGCrown.prototype.setWindDirection = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windDirection) { var self = this.ptr; if (windDirection && typeof windDirection === 'object') windDirection = windDirection.ptr; _emscripten_bind_SIGCrown_setWindDirection_1(self, windDirection); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setWindHeightInputMode'] = SIGCrown.prototype.setWindHeightInputMode = function(windHeightInputMode) { +SIGCrown.prototype['setWindHeightInputMode'] = SIGCrown.prototype.setWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windHeightInputMode) { var self = this.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGCrown_setWindHeightInputMode_1(self, windHeightInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['setWindSpeed'] = SIGCrown.prototype.setWindSpeed = function(windSpeed, windSpeedUnits) { +SIGCrown.prototype['setWindSpeed'] = SIGCrown.prototype.setWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGCrown_setWindSpeed_2(self, windSpeed, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['updateCrownInputs'] = SIGCrown.prototype.updateCrownInputs = function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureFoliar, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyBaseHeight, canopyHeightUnits, crownRatio, crownRatioUnits, canopyBulkDensity, densityUnits) { +SIGCrown.prototype['updateCrownInputs'] = SIGCrown.prototype.updateCrownInputs = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureFoliar, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyBaseHeight, canopyHeightUnits, crownRatio, crownRatioUnits, canopyBulkDensity, densityUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; @@ -12942,10 +12142,9 @@ SIGCrown.prototype['updateCrownInputs'] = SIGCrown.prototype.updateCrownInputs = if (canopyBulkDensity && typeof canopyBulkDensity === 'object') canopyBulkDensity = canopyBulkDensity.ptr; if (densityUnits && typeof densityUnits === 'object') densityUnits = densityUnits.ptr; _emscripten_bind_SIGCrown_updateCrownInputs_25(self, fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureFoliar, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyBaseHeight, canopyHeightUnits, crownRatio, crownRatioUnits, canopyBulkDensity, densityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['updateCrownsSurfaceInputs'] = SIGCrown.prototype.updateCrownsSurfaceInputs = function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { +SIGCrown.prototype['updateCrownsSurfaceInputs'] = SIGCrown.prototype.updateCrownsSurfaceInputs = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits) { var self = this.ptr; if (fuelModelNumber && typeof fuelModelNumber === 'object') fuelModelNumber = fuelModelNumber.ptr; if (moistureOneHour && typeof moistureOneHour === 'object') moistureOneHour = moistureOneHour.ptr; @@ -12969,84 +12168,69 @@ SIGCrown.prototype['updateCrownsSurfaceInputs'] = SIGCrown.prototype.updateCrown if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGCrown_updateCrownsSurfaceInputs_21(self, fuelModelNumber, moistureOneHour, moistureTenHour, moistureHundredHour, moistureLiveHerbaceous, moistureLiveWoody, moistureUnits, windSpeed, windSpeedUnits, windHeightInputMode, windDirection, windAndSpreadOrientationMode, slope, slopeUnits, aspect, canopyCover, coverUnits, canopyHeight, canopyHeightUnits, crownRatio, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['getFinalFlameLength'] = SIGCrown.prototype.getFinalFlameLength = function(flameLengthUnits) { +SIGCrown.prototype['getFinalFlameLength'] = SIGCrown.prototype.getFinalFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGCrown_getFinalFlameLength_1(self, flameLengthUnits); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGCrown.prototype['__destroy__'] = SIGCrown.prototype.__destroy__ = function() { + SIGCrown.prototype['__destroy__'] = SIGCrown.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGCrown___destroy___0(self); }; - -// Interface: SpeciesMasterTableRecord - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SpeciesMasterTableRecord(rhs) { +// SpeciesMasterTableRecord +/** @suppress {undefinedVars, duplicate} @this{Object} */function SpeciesMasterTableRecord(rhs) { if (rhs && typeof rhs === 'object') rhs = rhs.ptr; if (rhs === undefined) { this.ptr = _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_0(); getCache(SpeciesMasterTableRecord)[this.ptr] = this;return } this.ptr = _emscripten_bind_SpeciesMasterTableRecord_SpeciesMasterTableRecord_1(rhs); getCache(SpeciesMasterTableRecord)[this.ptr] = this; -}; - +};; SpeciesMasterTableRecord.prototype = Object.create(WrapperObject.prototype); SpeciesMasterTableRecord.prototype.constructor = SpeciesMasterTableRecord; SpeciesMasterTableRecord.prototype.__class__ = SpeciesMasterTableRecord; SpeciesMasterTableRecord.__cache__ = {}; Module['SpeciesMasterTableRecord'] = SpeciesMasterTableRecord; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTableRecord.prototype['__destroy__'] = SpeciesMasterTableRecord.prototype.__destroy__ = function() { + SpeciesMasterTableRecord.prototype['__destroy__'] = SpeciesMasterTableRecord.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SpeciesMasterTableRecord___destroy___0(self); }; - -// Interface: SpeciesMasterTable - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SpeciesMasterTable() { +// SpeciesMasterTable +/** @suppress {undefinedVars, duplicate} @this{Object} */function SpeciesMasterTable() { this.ptr = _emscripten_bind_SpeciesMasterTable_SpeciesMasterTable_0(); getCache(SpeciesMasterTable)[this.ptr] = this; -}; - +};; SpeciesMasterTable.prototype = Object.create(WrapperObject.prototype); SpeciesMasterTable.prototype.constructor = SpeciesMasterTable; SpeciesMasterTable.prototype.__class__ = SpeciesMasterTable; SpeciesMasterTable.__cache__ = {}; Module['SpeciesMasterTable'] = SpeciesMasterTable; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTable.prototype['initializeMasterTable'] = SpeciesMasterTable.prototype.initializeMasterTable = function() { + +SpeciesMasterTable.prototype['initializeMasterTable'] = SpeciesMasterTable.prototype.initializeMasterTable = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SpeciesMasterTable_initializeMasterTable_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTable.prototype['getSpeciesTableIndexFromSpeciesCode'] = SpeciesMasterTable.prototype.getSpeciesTableIndexFromSpeciesCode = function(speciesCode) { +SpeciesMasterTable.prototype['getSpeciesTableIndexFromSpeciesCode'] = SpeciesMasterTable.prototype.getSpeciesTableIndexFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCode_1(self, speciesCode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTable.prototype['getSpeciesTableIndexFromSpeciesCodeAndEquationType'] = SpeciesMasterTable.prototype.getSpeciesTableIndexFromSpeciesCodeAndEquationType = function(speciesCode, equationType) { +SpeciesMasterTable.prototype['getSpeciesTableIndexFromSpeciesCodeAndEquationType'] = SpeciesMasterTable.prototype.getSpeciesTableIndexFromSpeciesCodeAndEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode, equationType) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); if (equationType && typeof equationType === 'object') equationType = equationType.ptr; return _emscripten_bind_SpeciesMasterTable_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2(self, speciesCode, equationType); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTable.prototype['insertRecord'] = SpeciesMasterTable.prototype.insertRecord = function(speciesCode, scientificName, commonName, mortalityEquation, brkEqu, crownCoefficientCode, Alaska, California, EasternArea, GreatBasin, NorthernRockies, Northwest, RocketyMountain, SouthernArea, SouthWest, equationType, crownDamageEquationCode) { +SpeciesMasterTable.prototype['insertRecord'] = SpeciesMasterTable.prototype.insertRecord = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode, scientificName, commonName, mortalityEquation, brkEqu, crownCoefficientCode, Alaska, California, EasternArea, GreatBasin, NorthernRockies, Northwest, RocketyMountain, SouthernArea, SouthWest, equationType, crownDamageEquationCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; @@ -13070,72 +12254,61 @@ SpeciesMasterTable.prototype['insertRecord'] = SpeciesMasterTable.prototype.inse if (equationType && typeof equationType === 'object') equationType = equationType.ptr; if (crownDamageEquationCode && typeof crownDamageEquationCode === 'object') crownDamageEquationCode = crownDamageEquationCode.ptr; _emscripten_bind_SpeciesMasterTable_insertRecord_17(self, speciesCode, scientificName, commonName, mortalityEquation, brkEqu, crownCoefficientCode, Alaska, California, EasternArea, GreatBasin, NorthernRockies, Northwest, RocketyMountain, SouthernArea, SouthWest, equationType, crownDamageEquationCode); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SpeciesMasterTable.prototype['__destroy__'] = SpeciesMasterTable.prototype.__destroy__ = function() { + SpeciesMasterTable.prototype['__destroy__'] = SpeciesMasterTable.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SpeciesMasterTable___destroy___0(self); }; - -// Interface: SIGMortality - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGMortality(speciesMasterTable) { +// SIGMortality +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGMortality(speciesMasterTable) { if (speciesMasterTable && typeof speciesMasterTable === 'object') speciesMasterTable = speciesMasterTable.ptr; this.ptr = _emscripten_bind_SIGMortality_SIGMortality_1(speciesMasterTable); getCache(SIGMortality)[this.ptr] = this; -}; - +};; SIGMortality.prototype = Object.create(WrapperObject.prototype); SIGMortality.prototype.constructor = SIGMortality; SIGMortality.prototype.__class__ = SIGMortality; SIGMortality.__cache__ = {}; Module['SIGMortality'] = SIGMortality; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['initializeMembers'] = SIGMortality.prototype.initializeMembers = function() { + +SIGMortality.prototype['initializeMembers'] = SIGMortality.prototype.initializeMembers = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGMortality_initializeMembers_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['checkIsInGACCRegionAtSpeciesTableIndex'] = SIGMortality.prototype.checkIsInGACCRegionAtSpeciesTableIndex = function(index, region) { +SIGMortality.prototype['checkIsInGACCRegionAtSpeciesTableIndex'] = SIGMortality.prototype.checkIsInGACCRegionAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, region) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (region && typeof region === 'object') region = region.ptr; return !!(_emscripten_bind_SIGMortality_checkIsInGACCRegionAtSpeciesTableIndex_2(self, index, region)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['checkIsInGACCRegionFromSpeciesCode'] = SIGMortality.prototype.checkIsInGACCRegionFromSpeciesCode = function(speciesCode, region) { +SIGMortality.prototype['checkIsInGACCRegionFromSpeciesCode'] = SIGMortality.prototype.checkIsInGACCRegionFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode, region) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); if (region && typeof region === 'object') region = region.ptr; return !!(_emscripten_bind_SIGMortality_checkIsInGACCRegionFromSpeciesCode_2(self, speciesCode, region)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['updateInputsForSpeciesCodeAndEquationType'] = SIGMortality.prototype.updateInputsForSpeciesCodeAndEquationType = function(speciesCode, equationType) { +SIGMortality.prototype['updateInputsForSpeciesCodeAndEquationType'] = SIGMortality.prototype.updateInputsForSpeciesCodeAndEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode, equationType) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); if (equationType && typeof equationType === 'object') equationType = equationType.ptr; return !!(_emscripten_bind_SIGMortality_updateInputsForSpeciesCodeAndEquationType_2(self, speciesCode, equationType)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['calculateMortality'] = SIGMortality.prototype.calculateMortality = function(probablityUnits) { +SIGMortality.prototype['calculateMortality'] = SIGMortality.prototype.calculateMortality = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probablityUnits) { var self = this.ptr; if (probablityUnits && typeof probablityUnits === 'object') probablityUnits = probablityUnits.ptr; return _emscripten_bind_SIGMortality_calculateMortality_1(self, probablityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['calculateScorchHeight'] = SIGMortality.prototype.calculateScorchHeight = function(firelineIntensity, firelineIntensityUnits, midFlameWindSpeed, windSpeedUnits, airTemperature, temperatureUnits, scorchHeightUnits) { +SIGMortality.prototype['calculateScorchHeight'] = SIGMortality.prototype.calculateScorchHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensity, firelineIntensityUnits, midFlameWindSpeed, windSpeedUnits, airTemperature, temperatureUnits, scorchHeightUnits) { var self = this.ptr; if (firelineIntensity && typeof firelineIntensity === 'object') firelineIntensity = firelineIntensity.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; @@ -13145,839 +12318,718 @@ SIGMortality.prototype['calculateScorchHeight'] = SIGMortality.prototype.calcula if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_calculateScorchHeight_7(self, firelineIntensity, firelineIntensityUnits, midFlameWindSpeed, windSpeedUnits, airTemperature, temperatureUnits, scorchHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['calculateMortalityAllDirections'] = SIGMortality.prototype.calculateMortalityAllDirections = function(probablityUnits) { +SIGMortality.prototype['calculateMortalityAllDirections'] = SIGMortality.prototype.calculateMortalityAllDirections = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probablityUnits) { var self = this.ptr; if (probablityUnits && typeof probablityUnits === 'object') probablityUnits = probablityUnits.ptr; _emscripten_bind_SIGMortality_calculateMortalityAllDirections_1(self, probablityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getRequiredFieldVector'] = SIGMortality.prototype.getRequiredFieldVector = function() { +SIGMortality.prototype['getRequiredFieldVector'] = SIGMortality.prototype.getRequiredFieldVector = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return wrapPointer(_emscripten_bind_SIGMortality_getRequiredFieldVector_0(self), BoolVector); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBeetleDamage'] = SIGMortality.prototype.getBeetleDamage = function() { +SIGMortality.prototype['getBeetleDamage'] = SIGMortality.prototype.getBeetleDamage = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getBeetleDamage_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownDamageEquationCode'] = SIGMortality.prototype.getCrownDamageEquationCode = function() { +SIGMortality.prototype['getCrownDamageEquationCode'] = SIGMortality.prototype.getCrownDamageEquationCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCrownDamageEquationCode_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownDamageEquationCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getCrownDamageEquationCodeAtSpeciesTableIndex = function(index) { +SIGMortality.prototype['getCrownDamageEquationCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getCrownDamageEquationCodeAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getCrownDamageEquationCodeAtSpeciesTableIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownDamageEquationCodeFromSpeciesCode'] = SIGMortality.prototype.getCrownDamageEquationCodeFromSpeciesCode = function(speciesCode) { +SIGMortality.prototype['getCrownDamageEquationCodeFromSpeciesCode'] = SIGMortality.prototype.getCrownDamageEquationCodeFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getCrownDamageEquationCodeFromSpeciesCode_1(self, speciesCode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownDamageType'] = SIGMortality.prototype.getCrownDamageType = function() { +SIGMortality.prototype['getCrownDamageType'] = SIGMortality.prototype.getCrownDamageType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCrownDamageType_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCommonNameAtSpeciesTableIndex'] = SIGMortality.prototype.getCommonNameAtSpeciesTableIndex = function(index) { +SIGMortality.prototype['getCommonNameAtSpeciesTableIndex'] = SIGMortality.prototype.getCommonNameAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getCommonNameAtSpeciesTableIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCommonNameFromSpeciesCode'] = SIGMortality.prototype.getCommonNameFromSpeciesCode = function(speciesCode) { +SIGMortality.prototype['getCommonNameFromSpeciesCode'] = SIGMortality.prototype.getCommonNameFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return UTF8ToString(_emscripten_bind_SIGMortality_getCommonNameFromSpeciesCode_1(self, speciesCode)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getScientificNameAtSpeciesTableIndex'] = SIGMortality.prototype.getScientificNameAtSpeciesTableIndex = function(index) { +SIGMortality.prototype['getScientificNameAtSpeciesTableIndex'] = SIGMortality.prototype.getScientificNameAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getScientificNameAtSpeciesTableIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getScientificNameFromSpeciesCode'] = SIGMortality.prototype.getScientificNameFromSpeciesCode = function(speciesCode) { +SIGMortality.prototype['getScientificNameFromSpeciesCode'] = SIGMortality.prototype.getScientificNameFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return UTF8ToString(_emscripten_bind_SIGMortality_getScientificNameFromSpeciesCode_1(self, speciesCode)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getSpeciesCode'] = SIGMortality.prototype.getSpeciesCode = function() { +SIGMortality.prototype['getSpeciesCode'] = SIGMortality.prototype.getSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getSpeciesCode_0(self)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getSpeciesCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getSpeciesCodeAtSpeciesTableIndex = function(index) { +SIGMortality.prototype['getSpeciesCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getSpeciesCodeAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getSpeciesCodeAtSpeciesTableIndex_1(self, index)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getEquationType'] = SIGMortality.prototype.getEquationType = function() { +SIGMortality.prototype['getEquationType'] = SIGMortality.prototype.getEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getEquationType_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getEquationTypeAtSpeciesTableIndex'] = SIGMortality.prototype.getEquationTypeAtSpeciesTableIndex = function(index) { +SIGMortality.prototype['getEquationTypeAtSpeciesTableIndex'] = SIGMortality.prototype.getEquationTypeAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getEquationTypeAtSpeciesTableIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getEquationTypeFromSpeciesCode'] = SIGMortality.prototype.getEquationTypeFromSpeciesCode = function(speciesCode) { +SIGMortality.prototype['getEquationTypeFromSpeciesCode'] = SIGMortality.prototype.getEquationTypeFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getEquationTypeFromSpeciesCode_1(self, speciesCode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getFireSeverity'] = SIGMortality.prototype.getFireSeverity = function() { +SIGMortality.prototype['getFireSeverity'] = SIGMortality.prototype.getFireSeverity = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getFireSeverity_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getFlameLengthOrScorchHeightSwitch'] = SIGMortality.prototype.getFlameLengthOrScorchHeightSwitch = function() { +SIGMortality.prototype['getFlameLengthOrScorchHeightSwitch'] = SIGMortality.prototype.getFlameLengthOrScorchHeightSwitch = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightSwitch_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getGACCRegion'] = SIGMortality.prototype.getGACCRegion = function() { +SIGMortality.prototype['getGACCRegion'] = SIGMortality.prototype.getGACCRegion = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getGACCRegion_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getSpeciesRecordVectorForGACCRegion'] = SIGMortality.prototype.getSpeciesRecordVectorForGACCRegion = function(region) { +SIGMortality.prototype['getSpeciesRecordVectorForGACCRegion'] = SIGMortality.prototype.getSpeciesRecordVectorForGACCRegion = /** @suppress {undefinedVars, duplicate} @this{Object} */function(region) { var self = this.ptr; if (region && typeof region === 'object') region = region.ptr; return wrapPointer(_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegion_1(self, region), SpeciesMasterTableRecordVector); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getSpeciesRecordVectorForGACCRegionAndEquationType'] = SIGMortality.prototype.getSpeciesRecordVectorForGACCRegionAndEquationType = function(region, equationType) { +SIGMortality.prototype['getSpeciesRecordVectorForGACCRegionAndEquationType'] = SIGMortality.prototype.getSpeciesRecordVectorForGACCRegionAndEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(region, equationType) { var self = this.ptr; if (region && typeof region === 'object') region = region.ptr; if (equationType && typeof equationType === 'object') equationType = equationType.ptr; return wrapPointer(_emscripten_bind_SIGMortality_getSpeciesRecordVectorForGACCRegionAndEquationType_2(self, region, equationType), SpeciesMasterTableRecordVector); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBarkThickness'] = SIGMortality.prototype.getBarkThickness = function(barkThicknessUnits) { +SIGMortality.prototype['getBarkThickness'] = SIGMortality.prototype.getBarkThickness = /** @suppress {undefinedVars, duplicate} @this{Object} */function(barkThicknessUnits) { var self = this.ptr; if (barkThicknessUnits && typeof barkThicknessUnits === 'object') barkThicknessUnits = barkThicknessUnits.ptr; return _emscripten_bind_SIGMortality_getBarkThickness_1(self, barkThicknessUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBasalAreaKillled'] = SIGMortality.prototype.getBasalAreaKillled = function() { +SIGMortality.prototype['getBasalAreaKillled'] = SIGMortality.prototype.getBasalAreaKillled = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getBasalAreaKillled_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBasalAreaPostfire'] = SIGMortality.prototype.getBasalAreaPostfire = function() { +SIGMortality.prototype['getBasalAreaPostfire'] = SIGMortality.prototype.getBasalAreaPostfire = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getBasalAreaPostfire_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBasalAreaPrefire'] = SIGMortality.prototype.getBasalAreaPrefire = function() { +SIGMortality.prototype['getBasalAreaPrefire'] = SIGMortality.prototype.getBasalAreaPrefire = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getBasalAreaPrefire_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBoleCharHeight'] = SIGMortality.prototype.getBoleCharHeight = function(boleCharHeightUnits) { +SIGMortality.prototype['getBoleCharHeight'] = SIGMortality.prototype.getBoleCharHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(boleCharHeightUnits) { var self = this.ptr; if (boleCharHeightUnits && typeof boleCharHeightUnits === 'object') boleCharHeightUnits = boleCharHeightUnits.ptr; return _emscripten_bind_SIGMortality_getBoleCharHeight_1(self, boleCharHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBoleCharHeightBacking'] = SIGMortality.prototype.getBoleCharHeightBacking = function(boleCharHeightUnits) { +SIGMortality.prototype['getBoleCharHeightBacking'] = SIGMortality.prototype.getBoleCharHeightBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(boleCharHeightUnits) { var self = this.ptr; if (boleCharHeightUnits && typeof boleCharHeightUnits === 'object') boleCharHeightUnits = boleCharHeightUnits.ptr; return _emscripten_bind_SIGMortality_getBoleCharHeightBacking_1(self, boleCharHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBoleCharHeightFlanking'] = SIGMortality.prototype.getBoleCharHeightFlanking = function(boleCharHeightUnits) { +SIGMortality.prototype['getBoleCharHeightFlanking'] = SIGMortality.prototype.getBoleCharHeightFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(boleCharHeightUnits) { var self = this.ptr; if (boleCharHeightUnits && typeof boleCharHeightUnits === 'object') boleCharHeightUnits = boleCharHeightUnits.ptr; return _emscripten_bind_SIGMortality_getBoleCharHeightFlanking_1(self, boleCharHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCambiumKillRating'] = SIGMortality.prototype.getCambiumKillRating = function() { +SIGMortality.prototype['getCambiumKillRating'] = SIGMortality.prototype.getCambiumKillRating = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCambiumKillRating_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownDamage'] = SIGMortality.prototype.getCrownDamage = function() { +SIGMortality.prototype['getCrownDamage'] = SIGMortality.prototype.getCrownDamage = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCrownDamage_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownRatio'] = SIGMortality.prototype.getCrownRatio = function(crownRatioUnits) { +SIGMortality.prototype['getCrownRatio'] = SIGMortality.prototype.getCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatioUnits) { var self = this.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; return _emscripten_bind_SIGMortality_getCrownRatio_1(self, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCVSorCLS'] = SIGMortality.prototype.getCVSorCLS = function() { +SIGMortality.prototype['getCVSorCLS'] = SIGMortality.prototype.getCVSorCLS = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return UTF8ToString(_emscripten_bind_SIGMortality_getCVSorCLS_0(self)); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getDBH'] = SIGMortality.prototype.getDBH = function(diameterUnits) { +SIGMortality.prototype['getDBH'] = SIGMortality.prototype.getDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(diameterUnits) { var self = this.ptr; if (diameterUnits && typeof diameterUnits === 'object') diameterUnits = diameterUnits.ptr; return _emscripten_bind_SIGMortality_getDBH_1(self, diameterUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getFlameLength'] = SIGMortality.prototype.getFlameLength = function(flameLengthUnits) { +SIGMortality.prototype['getFlameLength'] = SIGMortality.prototype.getFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthUnits) { var self = this.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; return _emscripten_bind_SIGMortality_getFlameLength_1(self, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getFlameLengthOrScorchHeightValue'] = SIGMortality.prototype.getFlameLengthOrScorchHeightValue = function(flameLengthOrScorchHeightUnits) { +SIGMortality.prototype['getFlameLengthOrScorchHeightValue'] = SIGMortality.prototype.getFlameLengthOrScorchHeightValue = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthOrScorchHeightUnits) { var self = this.ptr; if (flameLengthOrScorchHeightUnits && typeof flameLengthOrScorchHeightUnits === 'object') flameLengthOrScorchHeightUnits = flameLengthOrScorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_getFlameLengthOrScorchHeightValue_1(self, flameLengthOrScorchHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getKilledTrees'] = SIGMortality.prototype.getKilledTrees = function() { +SIGMortality.prototype['getKilledTrees'] = SIGMortality.prototype.getKilledTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getKilledTrees_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getProbabilityOfMortality'] = SIGMortality.prototype.getProbabilityOfMortality = function(probabilityUnits) { +SIGMortality.prototype['getProbabilityOfMortality'] = SIGMortality.prototype.getProbabilityOfMortality = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probabilityUnits) { var self = this.ptr; if (probabilityUnits && typeof probabilityUnits === 'object') probabilityUnits = probabilityUnits.ptr; return _emscripten_bind_SIGMortality_getProbabilityOfMortality_1(self, probabilityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getProbabilityOfMortalityBacking'] = SIGMortality.prototype.getProbabilityOfMortalityBacking = function(probabilityUnits) { +SIGMortality.prototype['getProbabilityOfMortalityBacking'] = SIGMortality.prototype.getProbabilityOfMortalityBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probabilityUnits) { var self = this.ptr; if (probabilityUnits && typeof probabilityUnits === 'object') probabilityUnits = probabilityUnits.ptr; return _emscripten_bind_SIGMortality_getProbabilityOfMortalityBacking_1(self, probabilityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getProbabilityOfMortalityFlanking'] = SIGMortality.prototype.getProbabilityOfMortalityFlanking = function(probabilityUnits) { +SIGMortality.prototype['getProbabilityOfMortalityFlanking'] = SIGMortality.prototype.getProbabilityOfMortalityFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(probabilityUnits) { var self = this.ptr; if (probabilityUnits && typeof probabilityUnits === 'object') probabilityUnits = probabilityUnits.ptr; return _emscripten_bind_SIGMortality_getProbabilityOfMortalityFlanking_1(self, probabilityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getScorchHeight'] = SIGMortality.prototype.getScorchHeight = function(scorchHeightUnits) { +SIGMortality.prototype['getScorchHeight'] = SIGMortality.prototype.getScorchHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(scorchHeightUnits) { var self = this.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_getScorchHeight_1(self, scorchHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getScorchHeightBacking'] = SIGMortality.prototype.getScorchHeightBacking = function(scorchHeightUnits) { +SIGMortality.prototype['getScorchHeightBacking'] = SIGMortality.prototype.getScorchHeightBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(scorchHeightUnits) { var self = this.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_getScorchHeightBacking_1(self, scorchHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getScorchHeightFlanking'] = SIGMortality.prototype.getScorchHeightFlanking = function(scorchHeightUnits) { +SIGMortality.prototype['getScorchHeightFlanking'] = SIGMortality.prototype.getScorchHeightFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(scorchHeightUnits) { var self = this.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; return _emscripten_bind_SIGMortality_getScorchHeightFlanking_1(self, scorchHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTotalPrefireTrees'] = SIGMortality.prototype.getTotalPrefireTrees = function() { +SIGMortality.prototype['getTotalPrefireTrees'] = SIGMortality.prototype.getTotalPrefireTrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getTotalPrefireTrees_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTreeCrownLengthScorched'] = SIGMortality.prototype.getTreeCrownLengthScorched = function(treeCrownLengthScorchedUnits) { +SIGMortality.prototype['getTreeCrownLengthScorched'] = SIGMortality.prototype.getTreeCrownLengthScorched = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeCrownLengthScorchedUnits) { var self = this.ptr; if (treeCrownLengthScorchedUnits && typeof treeCrownLengthScorchedUnits === 'object') treeCrownLengthScorchedUnits = treeCrownLengthScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownLengthScorched_1(self, treeCrownLengthScorchedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTreeCrownLengthScorchedBacking'] = SIGMortality.prototype.getTreeCrownLengthScorchedBacking = function(treeCrownLengthScorchedUnits) { +SIGMortality.prototype['getTreeCrownLengthScorchedBacking'] = SIGMortality.prototype.getTreeCrownLengthScorchedBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeCrownLengthScorchedUnits) { var self = this.ptr; if (treeCrownLengthScorchedUnits && typeof treeCrownLengthScorchedUnits === 'object') treeCrownLengthScorchedUnits = treeCrownLengthScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedBacking_1(self, treeCrownLengthScorchedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTreeCrownLengthScorchedFlanking'] = SIGMortality.prototype.getTreeCrownLengthScorchedFlanking = function(treeCrownLengthScorchedUnits) { +SIGMortality.prototype['getTreeCrownLengthScorchedFlanking'] = SIGMortality.prototype.getTreeCrownLengthScorchedFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeCrownLengthScorchedUnits) { var self = this.ptr; if (treeCrownLengthScorchedUnits && typeof treeCrownLengthScorchedUnits === 'object') treeCrownLengthScorchedUnits = treeCrownLengthScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownLengthScorchedFlanking_1(self, treeCrownLengthScorchedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTreeCrownVolumeScorched'] = SIGMortality.prototype.getTreeCrownVolumeScorched = function(getTreeCrownVolumeScorchedUnits) { +SIGMortality.prototype['getTreeCrownVolumeScorched'] = SIGMortality.prototype.getTreeCrownVolumeScorched = /** @suppress {undefinedVars, duplicate} @this{Object} */function(getTreeCrownVolumeScorchedUnits) { var self = this.ptr; if (getTreeCrownVolumeScorchedUnits && typeof getTreeCrownVolumeScorchedUnits === 'object') getTreeCrownVolumeScorchedUnits = getTreeCrownVolumeScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownVolumeScorched_1(self, getTreeCrownVolumeScorchedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTreeCrownVolumeScorchedBacking'] = SIGMortality.prototype.getTreeCrownVolumeScorchedBacking = function(getTreeCrownVolumeScorchedUnits) { +SIGMortality.prototype['getTreeCrownVolumeScorchedBacking'] = SIGMortality.prototype.getTreeCrownVolumeScorchedBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(getTreeCrownVolumeScorchedUnits) { var self = this.ptr; if (getTreeCrownVolumeScorchedUnits && typeof getTreeCrownVolumeScorchedUnits === 'object') getTreeCrownVolumeScorchedUnits = getTreeCrownVolumeScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedBacking_1(self, getTreeCrownVolumeScorchedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTreeCrownVolumeScorchedFlanking'] = SIGMortality.prototype.getTreeCrownVolumeScorchedFlanking = function(getTreeCrownVolumeScorchedUnits) { +SIGMortality.prototype['getTreeCrownVolumeScorchedFlanking'] = SIGMortality.prototype.getTreeCrownVolumeScorchedFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(getTreeCrownVolumeScorchedUnits) { var self = this.ptr; if (getTreeCrownVolumeScorchedUnits && typeof getTreeCrownVolumeScorchedUnits === 'object') getTreeCrownVolumeScorchedUnits = getTreeCrownVolumeScorchedUnits.ptr; return _emscripten_bind_SIGMortality_getTreeCrownVolumeScorchedFlanking_1(self, getTreeCrownVolumeScorchedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTreeDensityPerUnitArea'] = SIGMortality.prototype.getTreeDensityPerUnitArea = function(areaUnits) { +SIGMortality.prototype['getTreeDensityPerUnitArea'] = SIGMortality.prototype.getTreeDensityPerUnitArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SIGMortality_getTreeDensityPerUnitArea_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getTreeHeight'] = SIGMortality.prototype.getTreeHeight = function(treeHeightUnits) { +SIGMortality.prototype['getTreeHeight'] = SIGMortality.prototype.getTreeHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeHeightUnits) { var self = this.ptr; if (treeHeightUnits && typeof treeHeightUnits === 'object') treeHeightUnits = treeHeightUnits.ptr; return _emscripten_bind_SIGMortality_getTreeHeight_1(self, treeHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['postfireCanopyCover'] = SIGMortality.prototype.postfireCanopyCover = function() { +SIGMortality.prototype['postfireCanopyCover'] = SIGMortality.prototype.postfireCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_postfireCanopyCover_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['prefireCanopyCover'] = SIGMortality.prototype.prefireCanopyCover = function() { +SIGMortality.prototype['prefireCanopyCover'] = SIGMortality.prototype.prefireCanopyCover = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_prefireCanopyCover_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBarkEquationNumberAtSpeciesTableIndex'] = SIGMortality.prototype.getBarkEquationNumberAtSpeciesTableIndex = function(index) { +SIGMortality.prototype['getBarkEquationNumberAtSpeciesTableIndex'] = SIGMortality.prototype.getBarkEquationNumberAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getBarkEquationNumberAtSpeciesTableIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getBarkEquationNumberFromSpeciesCode'] = SIGMortality.prototype.getBarkEquationNumberFromSpeciesCode = function(speciesCode) { +SIGMortality.prototype['getBarkEquationNumberFromSpeciesCode'] = SIGMortality.prototype.getBarkEquationNumberFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getBarkEquationNumberFromSpeciesCode_1(self, speciesCode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownCoefficientCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getCrownCoefficientCodeAtSpeciesTableIndex = function(index) { +SIGMortality.prototype['getCrownCoefficientCodeAtSpeciesTableIndex'] = SIGMortality.prototype.getCrownCoefficientCodeAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getCrownCoefficientCodeAtSpeciesTableIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownCoefficientCodeFromSpeciesCode'] = SIGMortality.prototype.getCrownCoefficientCodeFromSpeciesCode = function(speciesCode) { +SIGMortality.prototype['getCrownCoefficientCodeFromSpeciesCode'] = SIGMortality.prototype.getCrownCoefficientCodeFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getCrownCoefficientCodeFromSpeciesCode_1(self, speciesCode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getCrownScorchOrBoleCharEquationNumber'] = SIGMortality.prototype.getCrownScorchOrBoleCharEquationNumber = function() { +SIGMortality.prototype['getCrownScorchOrBoleCharEquationNumber'] = SIGMortality.prototype.getCrownScorchOrBoleCharEquationNumber = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getCrownScorchOrBoleCharEquationNumber_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getMortalityEquationNumberAtSpeciesTableIndex'] = SIGMortality.prototype.getMortalityEquationNumberAtSpeciesTableIndex = function(index) { +SIGMortality.prototype['getMortalityEquationNumberAtSpeciesTableIndex'] = SIGMortality.prototype.getMortalityEquationNumberAtSpeciesTableIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGMortality_getMortalityEquationNumberAtSpeciesTableIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getMortalityEquationNumberFromSpeciesCode'] = SIGMortality.prototype.getMortalityEquationNumberFromSpeciesCode = function(speciesCode) { +SIGMortality.prototype['getMortalityEquationNumberFromSpeciesCode'] = SIGMortality.prototype.getMortalityEquationNumberFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); return _emscripten_bind_SIGMortality_getMortalityEquationNumberFromSpeciesCode_1(self, speciesCode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getNumberOfRecordsInSpeciesTable'] = SIGMortality.prototype.getNumberOfRecordsInSpeciesTable = function() { +SIGMortality.prototype['getNumberOfRecordsInSpeciesTable'] = SIGMortality.prototype.getNumberOfRecordsInSpeciesTable = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGMortality_getNumberOfRecordsInSpeciesTable_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getSpeciesTableIndexFromSpeciesCode'] = SIGMortality.prototype.getSpeciesTableIndexFromSpeciesCode = function(speciesNameCode) { +SIGMortality.prototype['getSpeciesTableIndexFromSpeciesCode'] = SIGMortality.prototype.getSpeciesTableIndexFromSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesNameCode) { var self = this.ptr; ensureCache.prepare(); if (speciesNameCode && typeof speciesNameCode === 'object') speciesNameCode = speciesNameCode.ptr; else speciesNameCode = ensureString(speciesNameCode); return _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCode_1(self, speciesNameCode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['getSpeciesTableIndexFromSpeciesCodeAndEquationType'] = SIGMortality.prototype.getSpeciesTableIndexFromSpeciesCodeAndEquationType = function(speciesNameCode, equationType) { +SIGMortality.prototype['getSpeciesTableIndexFromSpeciesCodeAndEquationType'] = SIGMortality.prototype.getSpeciesTableIndexFromSpeciesCodeAndEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesNameCode, equationType) { var self = this.ptr; ensureCache.prepare(); if (speciesNameCode && typeof speciesNameCode === 'object') speciesNameCode = speciesNameCode.ptr; else speciesNameCode = ensureString(speciesNameCode); if (equationType && typeof equationType === 'object') equationType = equationType.ptr; return _emscripten_bind_SIGMortality_getSpeciesTableIndexFromSpeciesCodeAndEquationType_2(self, speciesNameCode, equationType); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setAirTemperature'] = SIGMortality.prototype.setAirTemperature = function(airTemperature, temperatureUnits) { +SIGMortality.prototype['setAirTemperature'] = SIGMortality.prototype.setAirTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(airTemperature, temperatureUnits) { var self = this.ptr; if (airTemperature && typeof airTemperature === 'object') airTemperature = airTemperature.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; _emscripten_bind_SIGMortality_setAirTemperature_2(self, airTemperature, temperatureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setBeetleDamage'] = SIGMortality.prototype.setBeetleDamage = function(beetleDamage) { +SIGMortality.prototype['setBeetleDamage'] = SIGMortality.prototype.setBeetleDamage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(beetleDamage) { var self = this.ptr; if (beetleDamage && typeof beetleDamage === 'object') beetleDamage = beetleDamage.ptr; _emscripten_bind_SIGMortality_setBeetleDamage_1(self, beetleDamage); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setBoleCharHeight'] = SIGMortality.prototype.setBoleCharHeight = function(boleCharHeight, boleCharHeightUnits) { +SIGMortality.prototype['setBoleCharHeight'] = SIGMortality.prototype.setBoleCharHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(boleCharHeight, boleCharHeightUnits) { var self = this.ptr; if (boleCharHeight && typeof boleCharHeight === 'object') boleCharHeight = boleCharHeight.ptr; if (boleCharHeightUnits && typeof boleCharHeightUnits === 'object') boleCharHeightUnits = boleCharHeightUnits.ptr; _emscripten_bind_SIGMortality_setBoleCharHeight_2(self, boleCharHeight, boleCharHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setCambiumKillRating'] = SIGMortality.prototype.setCambiumKillRating = function(cambiumKillRating) { +SIGMortality.prototype['setCambiumKillRating'] = SIGMortality.prototype.setCambiumKillRating = /** @suppress {undefinedVars, duplicate} @this{Object} */function(cambiumKillRating) { var self = this.ptr; if (cambiumKillRating && typeof cambiumKillRating === 'object') cambiumKillRating = cambiumKillRating.ptr; _emscripten_bind_SIGMortality_setCambiumKillRating_1(self, cambiumKillRating); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setCrownDamage'] = SIGMortality.prototype.setCrownDamage = function(crownDamage) { +SIGMortality.prototype['setCrownDamage'] = SIGMortality.prototype.setCrownDamage = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownDamage) { var self = this.ptr; if (crownDamage && typeof crownDamage === 'object') crownDamage = crownDamage.ptr; _emscripten_bind_SIGMortality_setCrownDamage_1(self, crownDamage); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setCrownRatio'] = SIGMortality.prototype.setCrownRatio = function(crownRatio, crownRatioUnits) { +SIGMortality.prototype['setCrownRatio'] = SIGMortality.prototype.setCrownRatio = /** @suppress {undefinedVars, duplicate} @this{Object} */function(crownRatio, crownRatioUnits) { var self = this.ptr; if (crownRatio && typeof crownRatio === 'object') crownRatio = crownRatio.ptr; if (crownRatioUnits && typeof crownRatioUnits === 'object') crownRatioUnits = crownRatioUnits.ptr; _emscripten_bind_SIGMortality_setCrownRatio_2(self, crownRatio, crownRatioUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setDBH'] = SIGMortality.prototype.setDBH = function(dbh, diameterUnits) { +SIGMortality.prototype['setDBH'] = SIGMortality.prototype.setDBH = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dbh, diameterUnits) { var self = this.ptr; if (dbh && typeof dbh === 'object') dbh = dbh.ptr; if (diameterUnits && typeof diameterUnits === 'object') diameterUnits = diameterUnits.ptr; _emscripten_bind_SIGMortality_setDBH_2(self, dbh, diameterUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setEquationType'] = SIGMortality.prototype.setEquationType = function(equationType) { +SIGMortality.prototype['setEquationType'] = SIGMortality.prototype.setEquationType = /** @suppress {undefinedVars, duplicate} @this{Object} */function(equationType) { var self = this.ptr; if (equationType && typeof equationType === 'object') equationType = equationType.ptr; _emscripten_bind_SIGMortality_setEquationType_1(self, equationType); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setFireSeverity'] = SIGMortality.prototype.setFireSeverity = function(fireSeverity) { +SIGMortality.prototype['setFireSeverity'] = SIGMortality.prototype.setFireSeverity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fireSeverity) { var self = this.ptr; if (fireSeverity && typeof fireSeverity === 'object') fireSeverity = fireSeverity.ptr; _emscripten_bind_SIGMortality_setFireSeverity_1(self, fireSeverity); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setFirelineIntensity'] = SIGMortality.prototype.setFirelineIntensity = function(firelineIntensity, firelineIntensityUnits) { +SIGMortality.prototype['setFirelineIntensity'] = SIGMortality.prototype.setFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(firelineIntensity, firelineIntensityUnits) { var self = this.ptr; if (firelineIntensity && typeof firelineIntensity === 'object') firelineIntensity = firelineIntensity.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGMortality_setFirelineIntensity_2(self, firelineIntensity, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setFlameLength'] = SIGMortality.prototype.setFlameLength = function(flameLength, flameLengthUnits) { +SIGMortality.prototype['setFlameLength'] = SIGMortality.prototype.setFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLength, flameLengthUnits) { var self = this.ptr; if (flameLength && typeof flameLength === 'object') flameLength = flameLength.ptr; if (flameLengthUnits && typeof flameLengthUnits === 'object') flameLengthUnits = flameLengthUnits.ptr; _emscripten_bind_SIGMortality_setFlameLength_2(self, flameLength, flameLengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setFlameLengthOrScorchHeightSwitch'] = SIGMortality.prototype.setFlameLengthOrScorchHeightSwitch = function(flameLengthOrScorchHeightSwitch) { +SIGMortality.prototype['setFlameLengthOrScorchHeightSwitch'] = SIGMortality.prototype.setFlameLengthOrScorchHeightSwitch = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthOrScorchHeightSwitch) { var self = this.ptr; if (flameLengthOrScorchHeightSwitch && typeof flameLengthOrScorchHeightSwitch === 'object') flameLengthOrScorchHeightSwitch = flameLengthOrScorchHeightSwitch.ptr; _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightSwitch_1(self, flameLengthOrScorchHeightSwitch); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setFlameLengthOrScorchHeightValue'] = SIGMortality.prototype.setFlameLengthOrScorchHeightValue = function(flameLengthOrScorchHeightValue, flameLengthOrScorchHeightUnits) { +SIGMortality.prototype['setFlameLengthOrScorchHeightValue'] = SIGMortality.prototype.setFlameLengthOrScorchHeightValue = /** @suppress {undefinedVars, duplicate} @this{Object} */function(flameLengthOrScorchHeightValue, flameLengthOrScorchHeightUnits) { var self = this.ptr; if (flameLengthOrScorchHeightValue && typeof flameLengthOrScorchHeightValue === 'object') flameLengthOrScorchHeightValue = flameLengthOrScorchHeightValue.ptr; if (flameLengthOrScorchHeightUnits && typeof flameLengthOrScorchHeightUnits === 'object') flameLengthOrScorchHeightUnits = flameLengthOrScorchHeightUnits.ptr; _emscripten_bind_SIGMortality_setFlameLengthOrScorchHeightValue_2(self, flameLengthOrScorchHeightValue, flameLengthOrScorchHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setMidFlameWindSpeed'] = SIGMortality.prototype.setMidFlameWindSpeed = function(midFlameWindSpeed, windSpeedUnits) { +SIGMortality.prototype['setMidFlameWindSpeed'] = SIGMortality.prototype.setMidFlameWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(midFlameWindSpeed, windSpeedUnits) { var self = this.ptr; if (midFlameWindSpeed && typeof midFlameWindSpeed === 'object') midFlameWindSpeed = midFlameWindSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGMortality_setMidFlameWindSpeed_2(self, midFlameWindSpeed, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setGACCRegion'] = SIGMortality.prototype.setGACCRegion = function(region) { +SIGMortality.prototype['setGACCRegion'] = SIGMortality.prototype.setGACCRegion = /** @suppress {undefinedVars, duplicate} @this{Object} */function(region) { var self = this.ptr; if (region && typeof region === 'object') region = region.ptr; _emscripten_bind_SIGMortality_setGACCRegion_1(self, region); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setScorchHeight'] = SIGMortality.prototype.setScorchHeight = function(scorchHeight, scorchHeightUnits) { +SIGMortality.prototype['setScorchHeight'] = SIGMortality.prototype.setScorchHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(scorchHeight, scorchHeightUnits) { var self = this.ptr; if (scorchHeight && typeof scorchHeight === 'object') scorchHeight = scorchHeight.ptr; if (scorchHeightUnits && typeof scorchHeightUnits === 'object') scorchHeightUnits = scorchHeightUnits.ptr; _emscripten_bind_SIGMortality_setScorchHeight_2(self, scorchHeight, scorchHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setSpeciesCode'] = SIGMortality.prototype.setSpeciesCode = function(speciesCode) { +SIGMortality.prototype['setSpeciesCode'] = SIGMortality.prototype.setSpeciesCode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speciesCode) { var self = this.ptr; ensureCache.prepare(); if (speciesCode && typeof speciesCode === 'object') speciesCode = speciesCode.ptr; else speciesCode = ensureString(speciesCode); _emscripten_bind_SIGMortality_setSpeciesCode_1(self, speciesCode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setSurfaceFireFirelineIntensity'] = SIGMortality.prototype.setSurfaceFireFirelineIntensity = function(value, firelineIntensityUnits) { +SIGMortality.prototype['setSurfaceFireFirelineIntensity'] = SIGMortality.prototype.setSurfaceFireFirelineIntensity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, firelineIntensityUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensity_2(self, value, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setSurfaceFireFirelineIntensityBacking'] = SIGMortality.prototype.setSurfaceFireFirelineIntensityBacking = function(value, firelineIntensityUnits) { +SIGMortality.prototype['setSurfaceFireFirelineIntensityBacking'] = SIGMortality.prototype.setSurfaceFireFirelineIntensityBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, firelineIntensityUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityBacking_2(self, value, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setSurfaceFireFirelineIntensityFlanking'] = SIGMortality.prototype.setSurfaceFireFirelineIntensityFlanking = function(value, firelineIntensityUnits) { +SIGMortality.prototype['setSurfaceFireFirelineIntensityFlanking'] = SIGMortality.prototype.setSurfaceFireFirelineIntensityFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, firelineIntensityUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (firelineIntensityUnits && typeof firelineIntensityUnits === 'object') firelineIntensityUnits = firelineIntensityUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFirelineIntensityFlanking_2(self, value, firelineIntensityUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setSurfaceFireFlameLength'] = SIGMortality.prototype.setSurfaceFireFlameLength = function(value, lengthUnits) { +SIGMortality.prototype['setSurfaceFireFlameLength'] = SIGMortality.prototype.setSurfaceFireFlameLength = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, lengthUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFlameLength_2(self, value, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setSurfaceFireFlameLengthBacking'] = SIGMortality.prototype.setSurfaceFireFlameLengthBacking = function(value, lengthUnits) { +SIGMortality.prototype['setSurfaceFireFlameLengthBacking'] = SIGMortality.prototype.setSurfaceFireFlameLengthBacking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, lengthUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthBacking_2(self, value, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setSurfaceFireFlameLengthFlanking'] = SIGMortality.prototype.setSurfaceFireFlameLengthFlanking = function(value, lengthUnits) { +SIGMortality.prototype['setSurfaceFireFlameLengthFlanking'] = SIGMortality.prototype.setSurfaceFireFlameLengthFlanking = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, lengthUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireFlameLengthFlanking_2(self, value, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setSurfaceFireScorchHeight'] = SIGMortality.prototype.setSurfaceFireScorchHeight = function(value, lengthUnits) { +SIGMortality.prototype['setSurfaceFireScorchHeight'] = SIGMortality.prototype.setSurfaceFireScorchHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(value, lengthUnits) { var self = this.ptr; if (value && typeof value === 'object') value = value.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SIGMortality_setSurfaceFireScorchHeight_2(self, value, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setTreeDensityPerUnitArea'] = SIGMortality.prototype.setTreeDensityPerUnitArea = function(numberOfTrees, areaUnits) { +SIGMortality.prototype['setTreeDensityPerUnitArea'] = SIGMortality.prototype.setTreeDensityPerUnitArea = /** @suppress {undefinedVars, duplicate} @this{Object} */function(numberOfTrees, areaUnits) { var self = this.ptr; if (numberOfTrees && typeof numberOfTrees === 'object') numberOfTrees = numberOfTrees.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; _emscripten_bind_SIGMortality_setTreeDensityPerUnitArea_2(self, numberOfTrees, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setTreeHeight'] = SIGMortality.prototype.setTreeHeight = function(treeHeight, treeHeightUnits) { +SIGMortality.prototype['setTreeHeight'] = SIGMortality.prototype.setTreeHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(treeHeight, treeHeightUnits) { var self = this.ptr; if (treeHeight && typeof treeHeight === 'object') treeHeight = treeHeight.ptr; if (treeHeightUnits && typeof treeHeightUnits === 'object') treeHeightUnits = treeHeightUnits.ptr; _emscripten_bind_SIGMortality_setTreeHeight_2(self, treeHeight, treeHeightUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setUserProvidedWindAdjustmentFactor'] = SIGMortality.prototype.setUserProvidedWindAdjustmentFactor = function(userProvidedWindAdjustmentFactor) { +SIGMortality.prototype['setUserProvidedWindAdjustmentFactor'] = SIGMortality.prototype.setUserProvidedWindAdjustmentFactor = /** @suppress {undefinedVars, duplicate} @this{Object} */function(userProvidedWindAdjustmentFactor) { var self = this.ptr; if (userProvidedWindAdjustmentFactor && typeof userProvidedWindAdjustmentFactor === 'object') userProvidedWindAdjustmentFactor = userProvidedWindAdjustmentFactor.ptr; _emscripten_bind_SIGMortality_setUserProvidedWindAdjustmentFactor_1(self, userProvidedWindAdjustmentFactor); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setWindHeightInputMode'] = SIGMortality.prototype.setWindHeightInputMode = function(windHeightInputMode) { +SIGMortality.prototype['setWindHeightInputMode'] = SIGMortality.prototype.setWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windHeightInputMode) { var self = this.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; _emscripten_bind_SIGMortality_setWindHeightInputMode_1(self, windHeightInputMode); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setWindSpeed'] = SIGMortality.prototype.setWindSpeed = function(windSpeed, windSpeedUnits) { +SIGMortality.prototype['setWindSpeed'] = SIGMortality.prototype.setWindSpeed = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeed, windSpeedUnits) { var self = this.ptr; if (windSpeed && typeof windSpeed === 'object') windSpeed = windSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; _emscripten_bind_SIGMortality_setWindSpeed_2(self, windSpeed, windSpeedUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['setWindSpeedAndWindHeightInputMode'] = SIGMortality.prototype.setWindSpeedAndWindHeightInputMode = function(windwindSpeed, windSpeedUnits, windHeightInputMode, userProvidedWindAdjustmentFactor) { +SIGMortality.prototype['setWindSpeedAndWindHeightInputMode'] = SIGMortality.prototype.setWindSpeedAndWindHeightInputMode = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windwindSpeed, windSpeedUnits, windHeightInputMode, userProvidedWindAdjustmentFactor) { var self = this.ptr; if (windwindSpeed && typeof windwindSpeed === 'object') windwindSpeed = windwindSpeed.ptr; if (windSpeedUnits && typeof windSpeedUnits === 'object') windSpeedUnits = windSpeedUnits.ptr; if (windHeightInputMode && typeof windHeightInputMode === 'object') windHeightInputMode = windHeightInputMode.ptr; if (userProvidedWindAdjustmentFactor && typeof userProvidedWindAdjustmentFactor === 'object') userProvidedWindAdjustmentFactor = userProvidedWindAdjustmentFactor.ptr; _emscripten_bind_SIGMortality_setWindSpeedAndWindHeightInputMode_4(self, windwindSpeed, windSpeedUnits, windHeightInputMode, userProvidedWindAdjustmentFactor); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGMortality.prototype['__destroy__'] = SIGMortality.prototype.__destroy__ = function() { + SIGMortality.prototype['__destroy__'] = SIGMortality.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGMortality___destroy___0(self); }; - -// Interface: WindSpeedUtility - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function WindSpeedUtility() { +// WindSpeedUtility +/** @suppress {undefinedVars, duplicate} @this{Object} */function WindSpeedUtility() { this.ptr = _emscripten_bind_WindSpeedUtility_WindSpeedUtility_0(); getCache(WindSpeedUtility)[this.ptr] = this; -}; - +};; WindSpeedUtility.prototype = Object.create(WrapperObject.prototype); WindSpeedUtility.prototype.constructor = WindSpeedUtility; WindSpeedUtility.prototype.__class__ = WindSpeedUtility; WindSpeedUtility.__cache__ = {}; Module['WindSpeedUtility'] = WindSpeedUtility; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WindSpeedUtility.prototype['windSpeedAtMidflame'] = WindSpeedUtility.prototype.windSpeedAtMidflame = function(windSpeedAtTwentyFeet, windAdjustmentFactor) { + +WindSpeedUtility.prototype['windSpeedAtMidflame'] = WindSpeedUtility.prototype.windSpeedAtMidflame = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedAtTwentyFeet, windAdjustmentFactor) { var self = this.ptr; if (windSpeedAtTwentyFeet && typeof windSpeedAtTwentyFeet === 'object') windSpeedAtTwentyFeet = windSpeedAtTwentyFeet.ptr; if (windAdjustmentFactor && typeof windAdjustmentFactor === 'object') windAdjustmentFactor = windAdjustmentFactor.ptr; return _emscripten_bind_WindSpeedUtility_windSpeedAtMidflame_2(self, windSpeedAtTwentyFeet, windAdjustmentFactor); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WindSpeedUtility.prototype['windSpeedAtTwentyFeetFromTenMeter'] = WindSpeedUtility.prototype.windSpeedAtTwentyFeetFromTenMeter = function(windSpeedAtTenMeters) { +WindSpeedUtility.prototype['windSpeedAtTwentyFeetFromTenMeter'] = WindSpeedUtility.prototype.windSpeedAtTwentyFeetFromTenMeter = /** @suppress {undefinedVars, duplicate} @this{Object} */function(windSpeedAtTenMeters) { var self = this.ptr; if (windSpeedAtTenMeters && typeof windSpeedAtTenMeters === 'object') windSpeedAtTenMeters = windSpeedAtTenMeters.ptr; return _emscripten_bind_WindSpeedUtility_windSpeedAtTwentyFeetFromTenMeter_1(self, windSpeedAtTenMeters); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -WindSpeedUtility.prototype['__destroy__'] = WindSpeedUtility.prototype.__destroy__ = function() { + WindSpeedUtility.prototype['__destroy__'] = WindSpeedUtility.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_WindSpeedUtility___destroy___0(self); }; - -// Interface: SIGFineDeadFuelMoistureTool - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGFineDeadFuelMoistureTool() { +// SIGFineDeadFuelMoistureTool +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGFineDeadFuelMoistureTool() { this.ptr = _emscripten_bind_SIGFineDeadFuelMoistureTool_SIGFineDeadFuelMoistureTool_0(); getCache(SIGFineDeadFuelMoistureTool)[this.ptr] = this; -}; - +};; SIGFineDeadFuelMoistureTool.prototype = Object.create(WrapperObject.prototype); SIGFineDeadFuelMoistureTool.prototype.constructor = SIGFineDeadFuelMoistureTool; SIGFineDeadFuelMoistureTool.prototype.__class__ = SIGFineDeadFuelMoistureTool; SIGFineDeadFuelMoistureTool.__cache__ = {}; Module['SIGFineDeadFuelMoistureTool'] = SIGFineDeadFuelMoistureTool; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['calculate'] = SIGFineDeadFuelMoistureTool.prototype.calculate = function() { + +SIGFineDeadFuelMoistureTool.prototype['calculate'] = SIGFineDeadFuelMoistureTool.prototype.calculate = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_calculate_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['setTimeOfDayIndex'] = SIGFineDeadFuelMoistureTool.prototype.setTimeOfDayIndex = function(timeOfDayIndex) { +SIGFineDeadFuelMoistureTool.prototype['setTimeOfDayIndex'] = SIGFineDeadFuelMoistureTool.prototype.setTimeOfDayIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(timeOfDayIndex) { var self = this.ptr; if (timeOfDayIndex && typeof timeOfDayIndex === 'object') timeOfDayIndex = timeOfDayIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setTimeOfDayIndex_1(self, timeOfDayIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['setSlopeIndex'] = SIGFineDeadFuelMoistureTool.prototype.setSlopeIndex = function(slopeIndex) { +SIGFineDeadFuelMoistureTool.prototype['setSlopeIndex'] = SIGFineDeadFuelMoistureTool.prototype.setSlopeIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeIndex) { var self = this.ptr; if (slopeIndex && typeof slopeIndex === 'object') slopeIndex = slopeIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setSlopeIndex_1(self, slopeIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['setShadingIndex'] = SIGFineDeadFuelMoistureTool.prototype.setShadingIndex = function(shadingIndex) { +SIGFineDeadFuelMoistureTool.prototype['setShadingIndex'] = SIGFineDeadFuelMoistureTool.prototype.setShadingIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(shadingIndex) { var self = this.ptr; if (shadingIndex && typeof shadingIndex === 'object') shadingIndex = shadingIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setShadingIndex_1(self, shadingIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['setAspectIndex'] = SIGFineDeadFuelMoistureTool.prototype.setAspectIndex = function(aspectIndex) { +SIGFineDeadFuelMoistureTool.prototype['setAspectIndex'] = SIGFineDeadFuelMoistureTool.prototype.setAspectIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspectIndex) { var self = this.ptr; if (aspectIndex && typeof aspectIndex === 'object') aspectIndex = aspectIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setAspectIndex_1(self, aspectIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['setRHIndex'] = SIGFineDeadFuelMoistureTool.prototype.setRHIndex = function(relativeHumidityIndex) { +SIGFineDeadFuelMoistureTool.prototype['setRHIndex'] = SIGFineDeadFuelMoistureTool.prototype.setRHIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(relativeHumidityIndex) { var self = this.ptr; if (relativeHumidityIndex && typeof relativeHumidityIndex === 'object') relativeHumidityIndex = relativeHumidityIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setRHIndex_1(self, relativeHumidityIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['setElevationIndex'] = SIGFineDeadFuelMoistureTool.prototype.setElevationIndex = function(elevationIndex) { +SIGFineDeadFuelMoistureTool.prototype['setElevationIndex'] = SIGFineDeadFuelMoistureTool.prototype.setElevationIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elevationIndex) { var self = this.ptr; if (elevationIndex && typeof elevationIndex === 'object') elevationIndex = elevationIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setElevationIndex_1(self, elevationIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['setDryBulbIndex'] = SIGFineDeadFuelMoistureTool.prototype.setDryBulbIndex = function(dryBulbIndex) { +SIGFineDeadFuelMoistureTool.prototype['setDryBulbIndex'] = SIGFineDeadFuelMoistureTool.prototype.setDryBulbIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dryBulbIndex) { var self = this.ptr; if (dryBulbIndex && typeof dryBulbIndex === 'object') dryBulbIndex = dryBulbIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setDryBulbIndex_1(self, dryBulbIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['setMonthIndex'] = SIGFineDeadFuelMoistureTool.prototype.setMonthIndex = function(monthIndex) { +SIGFineDeadFuelMoistureTool.prototype['setMonthIndex'] = SIGFineDeadFuelMoistureTool.prototype.setMonthIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(monthIndex) { var self = this.ptr; if (monthIndex && typeof monthIndex === 'object') monthIndex = monthIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_setMonthIndex_1(self, monthIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getFineDeadFuelMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getFineDeadFuelMoisture = function(desiredUnits) { +SIGFineDeadFuelMoistureTool.prototype['getFineDeadFuelMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getFineDeadFuelMoisture = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getFineDeadFuelMoisture_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getSlopeIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getSlopeIndexSize = function() { +SIGFineDeadFuelMoistureTool.prototype['getSlopeIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getSlopeIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getSlopeIndexSize_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getElevationIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getElevationIndexSize = function() { +SIGFineDeadFuelMoistureTool.prototype['getElevationIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getElevationIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getElevationIndexSize_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getMonthIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getMonthIndexSize = function() { +SIGFineDeadFuelMoistureTool.prototype['getMonthIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getMonthIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getMonthIndexSize_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getDryBulbTemperatureIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getDryBulbTemperatureIndexSize = function() { +SIGFineDeadFuelMoistureTool.prototype['getDryBulbTemperatureIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getDryBulbTemperatureIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getDryBulbTemperatureIndexSize_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getReferenceMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getReferenceMoisture = function(desiredUnits) { +SIGFineDeadFuelMoistureTool.prototype['getReferenceMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getReferenceMoisture = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getReferenceMoisture_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['calculateByIndex'] = SIGFineDeadFuelMoistureTool.prototype.calculateByIndex = function(aspectIndex, dryBulbIndex, elevationIndex, monthIndex, relativeHumidityIndex, shadingIndex, slopeIndex, timeOfDayIndex) { +SIGFineDeadFuelMoistureTool.prototype['calculateByIndex'] = SIGFineDeadFuelMoistureTool.prototype.calculateByIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(aspectIndex, dryBulbIndex, elevationIndex, monthIndex, relativeHumidityIndex, shadingIndex, slopeIndex, timeOfDayIndex) { var self = this.ptr; if (aspectIndex && typeof aspectIndex === 'object') aspectIndex = aspectIndex.ptr; if (dryBulbIndex && typeof dryBulbIndex === 'object') dryBulbIndex = dryBulbIndex.ptr; @@ -13988,555 +13040,467 @@ SIGFineDeadFuelMoistureTool.prototype['calculateByIndex'] = SIGFineDeadFuelMoist if (slopeIndex && typeof slopeIndex === 'object') slopeIndex = slopeIndex.ptr; if (timeOfDayIndex && typeof timeOfDayIndex === 'object') timeOfDayIndex = timeOfDayIndex.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool_calculateByIndex_8(self, aspectIndex, dryBulbIndex, elevationIndex, monthIndex, relativeHumidityIndex, shadingIndex, slopeIndex, timeOfDayIndex); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getTimeOfDayIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getTimeOfDayIndexSize = function() { +SIGFineDeadFuelMoistureTool.prototype['getTimeOfDayIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getTimeOfDayIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getTimeOfDayIndexSize_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getCorrectionMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getCorrectionMoisture = function(desiredUnits) { +SIGFineDeadFuelMoistureTool.prototype['getCorrectionMoisture'] = SIGFineDeadFuelMoistureTool.prototype.getCorrectionMoisture = /** @suppress {undefinedVars, duplicate} @this{Object} */function(desiredUnits) { var self = this.ptr; if (desiredUnits && typeof desiredUnits === 'object') desiredUnits = desiredUnits.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getCorrectionMoisture_1(self, desiredUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getAspectIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getAspectIndexSize = function() { +SIGFineDeadFuelMoistureTool.prototype['getAspectIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getAspectIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getAspectIndexSize_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getShadingIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getShadingIndexSize = function() { +SIGFineDeadFuelMoistureTool.prototype['getShadingIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getShadingIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getShadingIndexSize_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['getRelativeHumidityIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getRelativeHumidityIndexSize = function() { +SIGFineDeadFuelMoistureTool.prototype['getRelativeHumidityIndexSize'] = SIGFineDeadFuelMoistureTool.prototype.getRelativeHumidityIndexSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGFineDeadFuelMoistureTool_getRelativeHumidityIndexSize_0(self); -}; - +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGFineDeadFuelMoistureTool.prototype['__destroy__'] = SIGFineDeadFuelMoistureTool.prototype.__destroy__ = function() { + SIGFineDeadFuelMoistureTool.prototype['__destroy__'] = SIGFineDeadFuelMoistureTool.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGFineDeadFuelMoistureTool___destroy___0(self); }; - -// Interface: SIGSlopeTool - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SIGSlopeTool() { +// SIGSlopeTool +/** @suppress {undefinedVars, duplicate} @this{Object} */function SIGSlopeTool() { this.ptr = _emscripten_bind_SIGSlopeTool_SIGSlopeTool_0(); getCache(SIGSlopeTool)[this.ptr] = this; -}; - +};; SIGSlopeTool.prototype = Object.create(WrapperObject.prototype); SIGSlopeTool.prototype.constructor = SIGSlopeTool; SIGSlopeTool.prototype.__class__ = SIGSlopeTool; SIGSlopeTool.__cache__ = {}; Module['SIGSlopeTool'] = SIGSlopeTool; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getCentimetersPerKilometerAtIndex'] = SIGSlopeTool.prototype.getCentimetersPerKilometerAtIndex = function(index) { + +SIGSlopeTool.prototype['getCentimetersPerKilometerAtIndex'] = SIGSlopeTool.prototype.getCentimetersPerKilometerAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getCentimetersPerKilometerAtRepresentativeFraction'] = SIGSlopeTool.prototype.getCentimetersPerKilometerAtRepresentativeFraction = function(representativeFraction) { +SIGSlopeTool.prototype['getCentimetersPerKilometerAtRepresentativeFraction'] = SIGSlopeTool.prototype.getCentimetersPerKilometerAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getCentimetersPerKilometerAtRepresentativeFraction_1(self, representativeFraction); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistance'] = SIGSlopeTool.prototype.getHorizontalDistance = function(horizontalDistanceIndex, mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistance'] = SIGSlopeTool.prototype.getHorizontalDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(horizontalDistanceIndex, mapDistanceUnits) { var self = this.ptr; if (horizontalDistanceIndex && typeof horizontalDistanceIndex === 'object') horizontalDistanceIndex = horizontalDistanceIndex.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistance_2(self, horizontalDistanceIndex, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceAtIndex'] = SIGSlopeTool.prototype.getHorizontalDistanceAtIndex = function(index, mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceAtIndex'] = SIGSlopeTool.prototype.getHorizontalDistanceAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index, mapDistanceUnits) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceAtIndex_2(self, index, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceFifteen'] = SIGSlopeTool.prototype.getHorizontalDistanceFifteen = function(mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceFifteen'] = SIGSlopeTool.prototype.getHorizontalDistanceFifteen = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFifteen_1(self, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceFourtyFive'] = SIGSlopeTool.prototype.getHorizontalDistanceFourtyFive = function(mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceFourtyFive'] = SIGSlopeTool.prototype.getHorizontalDistanceFourtyFive = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceFourtyFive_1(self, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceMaxSlope'] = SIGSlopeTool.prototype.getHorizontalDistanceMaxSlope = function(slopeUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceMaxSlope'] = SIGSlopeTool.prototype.getHorizontalDistanceMaxSlope = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeUnits) { var self = this.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceMaxSlope_1(self, slopeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceNinety'] = SIGSlopeTool.prototype.getHorizontalDistanceNinety = function(mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceNinety'] = SIGSlopeTool.prototype.getHorizontalDistanceNinety = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceNinety_1(self, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceSeventy'] = SIGSlopeTool.prototype.getHorizontalDistanceSeventy = function(mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceSeventy'] = SIGSlopeTool.prototype.getHorizontalDistanceSeventy = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSeventy_1(self, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceSixty'] = SIGSlopeTool.prototype.getHorizontalDistanceSixty = function(mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceSixty'] = SIGSlopeTool.prototype.getHorizontalDistanceSixty = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceSixty_1(self, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceThirty'] = SIGSlopeTool.prototype.getHorizontalDistanceThirty = function(mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceThirty'] = SIGSlopeTool.prototype.getHorizontalDistanceThirty = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceThirty_1(self, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getHorizontalDistanceZero'] = SIGSlopeTool.prototype.getHorizontalDistanceZero = function(mapDistanceUnits) { +SIGSlopeTool.prototype['getHorizontalDistanceZero'] = SIGSlopeTool.prototype.getHorizontalDistanceZero = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistanceUnits) { var self = this.ptr; if (mapDistanceUnits && typeof mapDistanceUnits === 'object') mapDistanceUnits = mapDistanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getHorizontalDistanceZero_1(self, mapDistanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getInchesPerMileAtIndex'] = SIGSlopeTool.prototype.getInchesPerMileAtIndex = function(index) { +SIGSlopeTool.prototype['getInchesPerMileAtIndex'] = SIGSlopeTool.prototype.getInchesPerMileAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getInchesPerMileAtIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getInchesPerMileAtRepresentativeFraction'] = SIGSlopeTool.prototype.getInchesPerMileAtRepresentativeFraction = function(representativeFraction) { +SIGSlopeTool.prototype['getInchesPerMileAtRepresentativeFraction'] = SIGSlopeTool.prototype.getInchesPerMileAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getInchesPerMileAtRepresentativeFraction_1(self, representativeFraction); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getKilometersPerCentimeterAtIndex'] = SIGSlopeTool.prototype.getKilometersPerCentimeterAtIndex = function(index) { +SIGSlopeTool.prototype['getKilometersPerCentimeterAtIndex'] = SIGSlopeTool.prototype.getKilometersPerCentimeterAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getKilometersPerCentimeterAtRepresentativeFraction'] = SIGSlopeTool.prototype.getKilometersPerCentimeterAtRepresentativeFraction = function(representativeFraction) { +SIGSlopeTool.prototype['getKilometersPerCentimeterAtRepresentativeFraction'] = SIGSlopeTool.prototype.getKilometersPerCentimeterAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getKilometersPerCentimeterAtRepresentativeFraction_1(self, representativeFraction); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getMilesPerInchAtIndex'] = SIGSlopeTool.prototype.getMilesPerInchAtIndex = function(index) { +SIGSlopeTool.prototype['getMilesPerInchAtIndex'] = SIGSlopeTool.prototype.getMilesPerInchAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getMilesPerInchAtIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getMilesPerInchAtRepresentativeFraction'] = SIGSlopeTool.prototype.getMilesPerInchAtRepresentativeFraction = function(representativeFraction) { +SIGSlopeTool.prototype['getMilesPerInchAtRepresentativeFraction'] = SIGSlopeTool.prototype.getMilesPerInchAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getMilesPerInchAtRepresentativeFraction_1(self, representativeFraction); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getSlopeElevationChangeFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeElevationChangeFromMapMeasurements = function(elevationUnits) { +SIGSlopeTool.prototype['getSlopeElevationChangeFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeElevationChangeFromMapMeasurements = /** @suppress {undefinedVars, duplicate} @this{Object} */function(elevationUnits) { var self = this.ptr; if (elevationUnits && typeof elevationUnits === 'object') elevationUnits = elevationUnits.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeElevationChangeFromMapMeasurements_1(self, elevationUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getSlopeFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurements = function(slopeUnits) { +SIGSlopeTool.prototype['getSlopeFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurements = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slopeUnits) { var self = this.ptr; if (slopeUnits && typeof slopeUnits === 'object') slopeUnits = slopeUnits.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurements_1(self, slopeUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getSlopeHorizontalDistanceFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeHorizontalDistanceFromMapMeasurements = function(distanceUnits) { +SIGSlopeTool.prototype['getSlopeHorizontalDistanceFromMapMeasurements'] = SIGSlopeTool.prototype.getSlopeHorizontalDistanceFromMapMeasurements = /** @suppress {undefinedVars, duplicate} @this{Object} */function(distanceUnits) { var self = this.ptr; if (distanceUnits && typeof distanceUnits === 'object') distanceUnits = distanceUnits.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeHorizontalDistanceFromMapMeasurements_1(self, distanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getSlopeFromMapMeasurementsInDegrees'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurementsInDegrees = function() { +SIGSlopeTool.prototype['getSlopeFromMapMeasurementsInDegrees'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurementsInDegrees = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInDegrees_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getSlopeFromMapMeasurementsInPercent'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurementsInPercent = function() { +SIGSlopeTool.prototype['getSlopeFromMapMeasurementsInPercent'] = SIGSlopeTool.prototype.getSlopeFromMapMeasurementsInPercent = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSlopeTool_getSlopeFromMapMeasurementsInPercent_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getNumberOfHorizontalDistances'] = SIGSlopeTool.prototype.getNumberOfHorizontalDistances = function() { +SIGSlopeTool.prototype['getNumberOfHorizontalDistances'] = SIGSlopeTool.prototype.getNumberOfHorizontalDistances = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSlopeTool_getNumberOfHorizontalDistances_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getNumberOfRepresentativeFractions'] = SIGSlopeTool.prototype.getNumberOfRepresentativeFractions = function() { +SIGSlopeTool.prototype['getNumberOfRepresentativeFractions'] = SIGSlopeTool.prototype.getNumberOfRepresentativeFractions = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SIGSlopeTool_getNumberOfRepresentativeFractions_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getRepresentativeFractionAtIndex'] = SIGSlopeTool.prototype.getRepresentativeFractionAtIndex = function(index) { +SIGSlopeTool.prototype['getRepresentativeFractionAtIndex'] = SIGSlopeTool.prototype.getRepresentativeFractionAtIndex = /** @suppress {undefinedVars, duplicate} @this{Object} */function(index) { var self = this.ptr; if (index && typeof index === 'object') index = index.ptr; return _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtIndex_1(self, index); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['getRepresentativeFractionAtRepresentativeFraction'] = SIGSlopeTool.prototype.getRepresentativeFractionAtRepresentativeFraction = function(representativeFraction) { +SIGSlopeTool.prototype['getRepresentativeFractionAtRepresentativeFraction'] = SIGSlopeTool.prototype.getRepresentativeFractionAtRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(representativeFraction) { var self = this.ptr; if (representativeFraction && typeof representativeFraction === 'object') representativeFraction = representativeFraction.ptr; return _emscripten_bind_SIGSlopeTool_getRepresentativeFractionAtRepresentativeFraction_1(self, representativeFraction); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['calculateHorizontalDistance'] = SIGSlopeTool.prototype.calculateHorizontalDistance = function() { +SIGSlopeTool.prototype['calculateHorizontalDistance'] = SIGSlopeTool.prototype.calculateHorizontalDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSlopeTool_calculateHorizontalDistance_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['calculateSlopeFromMapMeasurements'] = SIGSlopeTool.prototype.calculateSlopeFromMapMeasurements = function() { +SIGSlopeTool.prototype['calculateSlopeFromMapMeasurements'] = SIGSlopeTool.prototype.calculateSlopeFromMapMeasurements = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSlopeTool_calculateSlopeFromMapMeasurements_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['setCalculatedMapDistance'] = SIGSlopeTool.prototype.setCalculatedMapDistance = function(calculatedMapDistance, distanceUnits) { +SIGSlopeTool.prototype['setCalculatedMapDistance'] = SIGSlopeTool.prototype.setCalculatedMapDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(calculatedMapDistance, distanceUnits) { var self = this.ptr; if (calculatedMapDistance && typeof calculatedMapDistance === 'object') calculatedMapDistance = calculatedMapDistance.ptr; if (distanceUnits && typeof distanceUnits === 'object') distanceUnits = distanceUnits.ptr; _emscripten_bind_SIGSlopeTool_setCalculatedMapDistance_2(self, calculatedMapDistance, distanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['setContourInterval'] = SIGSlopeTool.prototype.setContourInterval = function(contourInterval, contourUnits) { +SIGSlopeTool.prototype['setContourInterval'] = SIGSlopeTool.prototype.setContourInterval = /** @suppress {undefinedVars, duplicate} @this{Object} */function(contourInterval, contourUnits) { var self = this.ptr; if (contourInterval && typeof contourInterval === 'object') contourInterval = contourInterval.ptr; if (contourUnits && typeof contourUnits === 'object') contourUnits = contourUnits.ptr; _emscripten_bind_SIGSlopeTool_setContourInterval_2(self, contourInterval, contourUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['setMapDistance'] = SIGSlopeTool.prototype.setMapDistance = function(mapDistance, distanceUnits) { +SIGSlopeTool.prototype['setMapDistance'] = SIGSlopeTool.prototype.setMapDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapDistance, distanceUnits) { var self = this.ptr; if (mapDistance && typeof mapDistance === 'object') mapDistance = mapDistance.ptr; if (distanceUnits && typeof distanceUnits === 'object') distanceUnits = distanceUnits.ptr; _emscripten_bind_SIGSlopeTool_setMapDistance_2(self, mapDistance, distanceUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['setMapRepresentativeFraction'] = SIGSlopeTool.prototype.setMapRepresentativeFraction = function(mapRepresentativeFraction) { +SIGSlopeTool.prototype['setMapRepresentativeFraction'] = SIGSlopeTool.prototype.setMapRepresentativeFraction = /** @suppress {undefinedVars, duplicate} @this{Object} */function(mapRepresentativeFraction) { var self = this.ptr; if (mapRepresentativeFraction && typeof mapRepresentativeFraction === 'object') mapRepresentativeFraction = mapRepresentativeFraction.ptr; _emscripten_bind_SIGSlopeTool_setMapRepresentativeFraction_1(self, mapRepresentativeFraction); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['setMaxSlopeSteepness'] = SIGSlopeTool.prototype.setMaxSlopeSteepness = function(maxSlopeSteepness) { +SIGSlopeTool.prototype['setMaxSlopeSteepness'] = SIGSlopeTool.prototype.setMaxSlopeSteepness = /** @suppress {undefinedVars, duplicate} @this{Object} */function(maxSlopeSteepness) { var self = this.ptr; if (maxSlopeSteepness && typeof maxSlopeSteepness === 'object') maxSlopeSteepness = maxSlopeSteepness.ptr; _emscripten_bind_SIGSlopeTool_setMaxSlopeSteepness_1(self, maxSlopeSteepness); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['setNumberOfContours'] = SIGSlopeTool.prototype.setNumberOfContours = function(numberOfContours) { +SIGSlopeTool.prototype['setNumberOfContours'] = SIGSlopeTool.prototype.setNumberOfContours = /** @suppress {undefinedVars, duplicate} @this{Object} */function(numberOfContours) { var self = this.ptr; if (numberOfContours && typeof numberOfContours === 'object') numberOfContours = numberOfContours.ptr; _emscripten_bind_SIGSlopeTool_setNumberOfContours_1(self, numberOfContours); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SIGSlopeTool.prototype['__destroy__'] = SIGSlopeTool.prototype.__destroy__ = function() { + SIGSlopeTool.prototype['__destroy__'] = SIGSlopeTool.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SIGSlopeTool___destroy___0(self); }; - -// Interface: VaporPressureDeficitCalculator - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function VaporPressureDeficitCalculator() { +// VaporPressureDeficitCalculator +/** @suppress {undefinedVars, duplicate} @this{Object} */function VaporPressureDeficitCalculator() { this.ptr = _emscripten_bind_VaporPressureDeficitCalculator_VaporPressureDeficitCalculator_0(); getCache(VaporPressureDeficitCalculator)[this.ptr] = this; -}; - +};; VaporPressureDeficitCalculator.prototype = Object.create(WrapperObject.prototype); VaporPressureDeficitCalculator.prototype.constructor = VaporPressureDeficitCalculator; VaporPressureDeficitCalculator.prototype.__class__ = VaporPressureDeficitCalculator; VaporPressureDeficitCalculator.__cache__ = {}; Module['VaporPressureDeficitCalculator'] = VaporPressureDeficitCalculator; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -VaporPressureDeficitCalculator.prototype['runCalculation'] = VaporPressureDeficitCalculator.prototype.runCalculation = function() { + +VaporPressureDeficitCalculator.prototype['runCalculation'] = VaporPressureDeficitCalculator.prototype.runCalculation = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_VaporPressureDeficitCalculator_runCalculation_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -VaporPressureDeficitCalculator.prototype['setTemperature'] = VaporPressureDeficitCalculator.prototype.setTemperature = function(temperature, units) { +VaporPressureDeficitCalculator.prototype['setTemperature'] = VaporPressureDeficitCalculator.prototype.setTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperature, units) { var self = this.ptr; if (temperature && typeof temperature === 'object') temperature = temperature.ptr; if (units && typeof units === 'object') units = units.ptr; _emscripten_bind_VaporPressureDeficitCalculator_setTemperature_2(self, temperature, units); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -VaporPressureDeficitCalculator.prototype['setRelativeHumidity'] = VaporPressureDeficitCalculator.prototype.setRelativeHumidity = function(relativeHumidity, units) { +VaporPressureDeficitCalculator.prototype['setRelativeHumidity'] = VaporPressureDeficitCalculator.prototype.setRelativeHumidity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(relativeHumidity, units) { var self = this.ptr; if (relativeHumidity && typeof relativeHumidity === 'object') relativeHumidity = relativeHumidity.ptr; if (units && typeof units === 'object') units = units.ptr; _emscripten_bind_VaporPressureDeficitCalculator_setRelativeHumidity_2(self, relativeHumidity, units); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -VaporPressureDeficitCalculator.prototype['getVaporPressureDeficit'] = VaporPressureDeficitCalculator.prototype.getVaporPressureDeficit = function(units) { +VaporPressureDeficitCalculator.prototype['getVaporPressureDeficit'] = VaporPressureDeficitCalculator.prototype.getVaporPressureDeficit = /** @suppress {undefinedVars, duplicate} @this{Object} */function(units) { var self = this.ptr; if (units && typeof units === 'object') units = units.ptr; return _emscripten_bind_VaporPressureDeficitCalculator_getVaporPressureDeficit_1(self, units); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -VaporPressureDeficitCalculator.prototype['__destroy__'] = VaporPressureDeficitCalculator.prototype.__destroy__ = function() { + VaporPressureDeficitCalculator.prototype['__destroy__'] = VaporPressureDeficitCalculator.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_VaporPressureDeficitCalculator___destroy___0(self); }; - -// Interface: RelativeHumidityTool - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function RelativeHumidityTool() { +// RelativeHumidityTool +/** @suppress {undefinedVars, duplicate} @this{Object} */function RelativeHumidityTool() { this.ptr = _emscripten_bind_RelativeHumidityTool_RelativeHumidityTool_0(); getCache(RelativeHumidityTool)[this.ptr] = this; -}; - +};; RelativeHumidityTool.prototype = Object.create(WrapperObject.prototype); RelativeHumidityTool.prototype.constructor = RelativeHumidityTool; RelativeHumidityTool.prototype.__class__ = RelativeHumidityTool; RelativeHumidityTool.__cache__ = {}; Module['RelativeHumidityTool'] = RelativeHumidityTool; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['calculate'] = RelativeHumidityTool.prototype.calculate = function() { + +RelativeHumidityTool.prototype['calculate'] = RelativeHumidityTool.prototype.calculate = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_RelativeHumidityTool_calculate_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['getDryBulbTemperature'] = RelativeHumidityTool.prototype.getDryBulbTemperature = function(temperatureUnits) { +RelativeHumidityTool.prototype['getDryBulbTemperature'] = RelativeHumidityTool.prototype.getDryBulbTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperatureUnits) { var self = this.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getDryBulbTemperature_1(self, temperatureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['getSiteElevation'] = RelativeHumidityTool.prototype.getSiteElevation = function(lengthUnits) { +RelativeHumidityTool.prototype['getSiteElevation'] = RelativeHumidityTool.prototype.getSiteElevation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getSiteElevation_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['getWetBulbTemperature'] = RelativeHumidityTool.prototype.getWetBulbTemperature = function(temperatureUnits) { +RelativeHumidityTool.prototype['getWetBulbTemperature'] = RelativeHumidityTool.prototype.getWetBulbTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperatureUnits) { var self = this.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getWetBulbTemperature_1(self, temperatureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['getDewPointTemperature'] = RelativeHumidityTool.prototype.getDewPointTemperature = function(temperatureUnits) { +RelativeHumidityTool.prototype['getDewPointTemperature'] = RelativeHumidityTool.prototype.getDewPointTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperatureUnits) { var self = this.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getDewPointTemperature_1(self, temperatureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['getRelativeHumidity'] = RelativeHumidityTool.prototype.getRelativeHumidity = function(fractionUnits) { +RelativeHumidityTool.prototype['getRelativeHumidity'] = RelativeHumidityTool.prototype.getRelativeHumidity = /** @suppress {undefinedVars, duplicate} @this{Object} */function(fractionUnits) { var self = this.ptr; if (fractionUnits && typeof fractionUnits === 'object') fractionUnits = fractionUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getRelativeHumidity_1(self, fractionUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['getWetBulbDepression'] = RelativeHumidityTool.prototype.getWetBulbDepression = function(temperatureUnits) { +RelativeHumidityTool.prototype['getWetBulbDepression'] = RelativeHumidityTool.prototype.getWetBulbDepression = /** @suppress {undefinedVars, duplicate} @this{Object} */function(temperatureUnits) { var self = this.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; return _emscripten_bind_RelativeHumidityTool_getWetBulbDepression_1(self, temperatureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['setDryBulbTemperature'] = RelativeHumidityTool.prototype.setDryBulbTemperature = function(dryBulbTemperature, temperatureUnits) { +RelativeHumidityTool.prototype['setDryBulbTemperature'] = RelativeHumidityTool.prototype.setDryBulbTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(dryBulbTemperature, temperatureUnits) { var self = this.ptr; if (dryBulbTemperature && typeof dryBulbTemperature === 'object') dryBulbTemperature = dryBulbTemperature.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; _emscripten_bind_RelativeHumidityTool_setDryBulbTemperature_2(self, dryBulbTemperature, temperatureUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['setSiteElevation'] = RelativeHumidityTool.prototype.setSiteElevation = function(siteElevation, lengthUnits) { +RelativeHumidityTool.prototype['setSiteElevation'] = RelativeHumidityTool.prototype.setSiteElevation = /** @suppress {undefinedVars, duplicate} @this{Object} */function(siteElevation, lengthUnits) { var self = this.ptr; if (siteElevation && typeof siteElevation === 'object') siteElevation = siteElevation.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_RelativeHumidityTool_setSiteElevation_2(self, siteElevation, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.prototype.setWetBulbTemperature = function(wetBulbTemperature, temperatureUnits) { +RelativeHumidityTool.prototype['setWetBulbTemperature'] = RelativeHumidityTool.prototype.setWetBulbTemperature = /** @suppress {undefinedVars, duplicate} @this{Object} */function(wetBulbTemperature, temperatureUnits) { var self = this.ptr; if (wetBulbTemperature && typeof wetBulbTemperature === 'object') wetBulbTemperature = wetBulbTemperature.ptr; if (temperatureUnits && typeof temperatureUnits === 'object') temperatureUnits = temperatureUnits.ptr; _emscripten_bind_RelativeHumidityTool_setWetBulbTemperature_2(self, wetBulbTemperature, temperatureUnits); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -RelativeHumidityTool.prototype['__destroy__'] = RelativeHumidityTool.prototype.__destroy__ = function() { + RelativeHumidityTool.prototype['__destroy__'] = RelativeHumidityTool.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_RelativeHumidityTool___destroy___0(self); }; - -// Interface: SafeSeparationDistanceCalculator - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -function SafeSeparationDistanceCalculator() { +// SafeSeparationDistanceCalculator +/** @suppress {undefinedVars, duplicate} @this{Object} */function SafeSeparationDistanceCalculator() { this.ptr = _emscripten_bind_SafeSeparationDistanceCalculator_SafeSeparationDistanceCalculator_0(); getCache(SafeSeparationDistanceCalculator)[this.ptr] = this; -}; - +};; SafeSeparationDistanceCalculator.prototype = Object.create(WrapperObject.prototype); SafeSeparationDistanceCalculator.prototype.constructor = SafeSeparationDistanceCalculator; SafeSeparationDistanceCalculator.prototype.__class__ = SafeSeparationDistanceCalculator; SafeSeparationDistanceCalculator.__cache__ = {}; Module['SafeSeparationDistanceCalculator'] = SafeSeparationDistanceCalculator; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['calculate'] = SafeSeparationDistanceCalculator.prototype.calculate = function() { + +SafeSeparationDistanceCalculator.prototype['calculate'] = SafeSeparationDistanceCalculator.prototype.calculate = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SafeSeparationDistanceCalculator_calculate_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['getBurningCondition'] = SafeSeparationDistanceCalculator.prototype.getBurningCondition = function() { +SafeSeparationDistanceCalculator.prototype['getBurningCondition'] = SafeSeparationDistanceCalculator.prototype.getBurningCondition = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SafeSeparationDistanceCalculator_getBurningCondition_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['getSlopeClass'] = SafeSeparationDistanceCalculator.prototype.getSlopeClass = function() { +SafeSeparationDistanceCalculator.prototype['getSlopeClass'] = SafeSeparationDistanceCalculator.prototype.getSlopeClass = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SafeSeparationDistanceCalculator_getSlopeClass_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['getSpeedClass'] = SafeSeparationDistanceCalculator.prototype.getSpeedClass = function() { +SafeSeparationDistanceCalculator.prototype['getSpeedClass'] = SafeSeparationDistanceCalculator.prototype.getSpeedClass = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SafeSeparationDistanceCalculator_getSpeedClass_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['getSafeSeparationDistance'] = SafeSeparationDistanceCalculator.prototype.getSafeSeparationDistance = function(lengthUnits) { +SafeSeparationDistanceCalculator.prototype['getSafeSeparationDistance'] = SafeSeparationDistanceCalculator.prototype.getSafeSeparationDistance = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SafeSeparationDistanceCalculator_getSafeSeparationDistance_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['getSafetyZoneSize'] = SafeSeparationDistanceCalculator.prototype.getSafetyZoneSize = function(areaUnits) { +SafeSeparationDistanceCalculator.prototype['getSafetyZoneSize'] = SafeSeparationDistanceCalculator.prototype.getSafetyZoneSize = /** @suppress {undefinedVars, duplicate} @this{Object} */function(areaUnits) { var self = this.ptr; if (areaUnits && typeof areaUnits === 'object') areaUnits = areaUnits.ptr; return _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyZoneSize_1(self, areaUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['getVegetationHeight'] = SafeSeparationDistanceCalculator.prototype.getVegetationHeight = function(lengthUnits) { +SafeSeparationDistanceCalculator.prototype['getVegetationHeight'] = SafeSeparationDistanceCalculator.prototype.getVegetationHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(lengthUnits) { var self = this.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; return _emscripten_bind_SafeSeparationDistanceCalculator_getVegetationHeight_1(self, lengthUnits); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['getSafetyCondition'] = SafeSeparationDistanceCalculator.prototype.getSafetyCondition = function() { +SafeSeparationDistanceCalculator.prototype['getSafetyCondition'] = SafeSeparationDistanceCalculator.prototype.getSafetyCondition = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; return _emscripten_bind_SafeSeparationDistanceCalculator_getSafetyCondition_0(self); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['setBurningCondition'] = SafeSeparationDistanceCalculator.prototype.setBurningCondition = function(condition) { +SafeSeparationDistanceCalculator.prototype['setBurningCondition'] = SafeSeparationDistanceCalculator.prototype.setBurningCondition = /** @suppress {undefinedVars, duplicate} @this{Object} */function(condition) { var self = this.ptr; if (condition && typeof condition === 'object') condition = condition.ptr; _emscripten_bind_SafeSeparationDistanceCalculator_setBurningCondition_1(self, condition); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['setSlopeClass'] = SafeSeparationDistanceCalculator.prototype.setSlopeClass = function(slope) { +SafeSeparationDistanceCalculator.prototype['setSlopeClass'] = SafeSeparationDistanceCalculator.prototype.setSlopeClass = /** @suppress {undefinedVars, duplicate} @this{Object} */function(slope) { var self = this.ptr; if (slope && typeof slope === 'object') slope = slope.ptr; _emscripten_bind_SafeSeparationDistanceCalculator_setSlopeClass_1(self, slope); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['setSpeedClass'] = SafeSeparationDistanceCalculator.prototype.setSpeedClass = function(speed) { +SafeSeparationDistanceCalculator.prototype['setSpeedClass'] = SafeSeparationDistanceCalculator.prototype.setSpeedClass = /** @suppress {undefinedVars, duplicate} @this{Object} */function(speed) { var self = this.ptr; if (speed && typeof speed === 'object') speed = speed.ptr; _emscripten_bind_SafeSeparationDistanceCalculator_setSpeedClass_1(self, speed); -}; +};; -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['setVegetationHeight'] = SafeSeparationDistanceCalculator.prototype.setVegetationHeight = function(height, lengthUnits) { +SafeSeparationDistanceCalculator.prototype['setVegetationHeight'] = SafeSeparationDistanceCalculator.prototype.setVegetationHeight = /** @suppress {undefinedVars, duplicate} @this{Object} */function(height, lengthUnits) { var self = this.ptr; if (height && typeof height === 'object') height = height.ptr; if (lengthUnits && typeof lengthUnits === 'object') lengthUnits = lengthUnits.ptr; _emscripten_bind_SafeSeparationDistanceCalculator_setVegetationHeight_2(self, height, lengthUnits); -}; +};; - -/** @suppress {undefinedVars, duplicate} @this{Object} */ -SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistanceCalculator.prototype.__destroy__ = function() { + SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistanceCalculator.prototype.__destroy__ = /** @suppress {undefinedVars, duplicate} @this{Object} */function() { var self = this.ptr; _emscripten_bind_SafeSeparationDistanceCalculator___destroy___0(self); }; - (function() { function setupEnums() { -// $AreaUnits_AreaUnitsEnum + + // AreaUnits_AreaUnitsEnum Module['AreaUnits']['SquareFeet'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareFeet(); @@ -14551,21 +13515,24 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['AreaUnits']['SquareKilometers'] = _emscripten_enum_AreaUnits_AreaUnitsEnum_SquareKilometers(); -// $BasalAreaUnits_BasalAreaUnitsEnum + + // BasalAreaUnits_BasalAreaUnitsEnum Module['BasalAreaUnits']['SquareFeetPerAcre'] = _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareFeetPerAcre(); Module['BasalAreaUnits']['SquareMetersPerHectare'] = _emscripten_enum_BasalAreaUnits_BasalAreaUnitsEnum_SquareMetersPerHectare(); -// $FractionUnits_FractionUnitsEnum + + // FractionUnits_FractionUnitsEnum Module['FractionUnits']['Fraction'] = _emscripten_enum_FractionUnits_FractionUnitsEnum_Fraction(); Module['FractionUnits']['Percent'] = _emscripten_enum_FractionUnits_FractionUnitsEnum_Percent(); -// $LengthUnits_LengthUnitsEnum + + // LengthUnits_LengthUnitsEnum Module['LengthUnits']['Feet'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Feet(); @@ -14584,7 +13551,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['LengthUnits']['Kilometers'] = _emscripten_enum_LengthUnits_LengthUnitsEnum_Kilometers(); -// $LoadingUnits_LoadingUnitsEnum + + // LoadingUnits_LoadingUnitsEnum Module['LoadingUnits']['PoundsPerSquareFoot'] = _emscripten_enum_LoadingUnits_LoadingUnitsEnum_PoundsPerSquareFoot(); @@ -14595,7 +13563,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['LoadingUnits']['KilogramsPerSquareMeter'] = _emscripten_enum_LoadingUnits_LoadingUnitsEnum_KilogramsPerSquareMeter(); -// $SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum + + // SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum Module['SurfaceAreaToVolumeUnits']['SquareFeetOverCubicFeet'] = _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareFeetOverCubicFeet(); @@ -14606,7 +13575,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['SurfaceAreaToVolumeUnits']['SquareCentimetersOverCubicCentimeters'] = _emscripten_enum_SurfaceAreaToVolumeUnits_SurfaceAreaToVolumeUnitsEnum_SquareCentimetersOverCubicCentimeters(); -// $SpeedUnits_SpeedUnitsEnum + + // SpeedUnits_SpeedUnitsEnum Module['SpeedUnits']['FeetPerMinute'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_FeetPerMinute(); @@ -14621,7 +13591,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['SpeedUnits']['KilometersPerHour'] = _emscripten_enum_SpeedUnits_SpeedUnitsEnum_KilometersPerHour(); -// $PressureUnits_PressureUnitsEnum + + // PressureUnits_PressureUnitsEnum Module['PressureUnits']['Pascal'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_Pascal(); @@ -14642,35 +13613,40 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['PressureUnits']['PoundPerSquareInch'] = _emscripten_enum_PressureUnits_PressureUnitsEnum_PoundPerSquareInch(); -// $SlopeUnits_SlopeUnitsEnum + + // SlopeUnits_SlopeUnitsEnum Module['SlopeUnits']['Degrees'] = _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Degrees(); Module['SlopeUnits']['Percent'] = _emscripten_enum_SlopeUnits_SlopeUnitsEnum_Percent(); -// $DensityUnits_DensityUnitsEnum + + // DensityUnits_DensityUnitsEnum Module['DensityUnits']['PoundsPerCubicFoot'] = _emscripten_enum_DensityUnits_DensityUnitsEnum_PoundsPerCubicFoot(); Module['DensityUnits']['KilogramsPerCubicMeter'] = _emscripten_enum_DensityUnits_DensityUnitsEnum_KilogramsPerCubicMeter(); -// $HeatOfCombustionUnits_HeatOfCombustionUnitsEnum + + // HeatOfCombustionUnits_HeatOfCombustionUnitsEnum Module['HeatOfCombustionUnits']['BtusPerPound'] = _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_BtusPerPound(); Module['HeatOfCombustionUnits']['KilojoulesPerKilogram'] = _emscripten_enum_HeatOfCombustionUnits_HeatOfCombustionUnitsEnum_KilojoulesPerKilogram(); -// $HeatSinkUnits_HeatSinkUnitsEnum + + // HeatSinkUnits_HeatSinkUnitsEnum Module['HeatSinkUnits']['BtusPerCubicFoot'] = _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_BtusPerCubicFoot(); Module['HeatSinkUnits']['KilojoulesPerCubicMeter'] = _emscripten_enum_HeatSinkUnits_HeatSinkUnitsEnum_KilojoulesPerCubicMeter(); -// $HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum + + // HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum Module['HeatPerUnitAreaUnits']['BtusPerSquareFoot'] = _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_BtusPerSquareFoot(); @@ -14679,7 +13655,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['HeatPerUnitAreaUnits']['KilowattSecondsPerSquareMeter'] = _emscripten_enum_HeatPerUnitAreaUnits_HeatPerUnitAreaUnitsEnum_KilowattSecondsPerSquareMeter(); -// $HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum + + // HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum Module['HeatSourceAndReactionIntensityUnits']['BtusPerSquareFootPerMinute'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_BtusPerSquareFootPerMinute(); @@ -14692,7 +13669,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['HeatSourceAndReactionIntensityUnits']['KilowattsPerSquareMeter'] = _emscripten_enum_HeatSourceAndReactionIntensityUnits_HeatSourceAndReactionIntensityUnitsEnum_KilowattsPerSquareMeter(); -// $FirelineIntensityUnits_FirelineIntensityUnitsEnum + + // FirelineIntensityUnits_FirelineIntensityUnitsEnum Module['FirelineIntensityUnits']['BtusPerFootPerSecond'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_BtusPerFootPerSecond(); @@ -14705,7 +13683,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['FirelineIntensityUnits']['KilowattsPerMeter'] = _emscripten_enum_FirelineIntensityUnits_FirelineIntensityUnitsEnum_KilowattsPerMeter(); -// $TemperatureUnits_TemperatureUnitsEnum + + // TemperatureUnits_TemperatureUnitsEnum Module['TemperatureUnits']['Fahrenheit'] = _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Fahrenheit(); @@ -14714,7 +13693,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['TemperatureUnits']['Kelvin'] = _emscripten_enum_TemperatureUnits_TemperatureUnitsEnum_Kelvin(); -// $TimeUnits_TimeUnitsEnum + + // TimeUnits_TimeUnitsEnum Module['TimeUnits']['Minutes'] = _emscripten_enum_TimeUnits_TimeUnitsEnum_Minutes(); @@ -14723,14 +13703,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['TimeUnits']['Hours'] = _emscripten_enum_TimeUnits_TimeUnitsEnum_Hours(); -// $ContainTactic_ContainTacticEnum + + // ContainTactic_ContainTacticEnum Module['HeadAttack'] = _emscripten_enum_ContainTactic_ContainTacticEnum_HeadAttack(); Module['RearAttack'] = _emscripten_enum_ContainTactic_ContainTacticEnum_RearAttack(); -// $ContainStatus_ContainStatusEnum + + // ContainStatus_ContainStatusEnum Module['Unreported'] = _emscripten_enum_ContainStatus_ContainStatusEnum_Unreported(); @@ -14751,7 +13733,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['TimeLimitExceeded'] = _emscripten_enum_ContainStatus_ContainStatusEnum_TimeLimitExceeded(); -// $ContainFlank_ContainFlankEnum + + // ContainFlank_ContainFlankEnum Module['LeftFlank'] = _emscripten_enum_ContainFlank_ContainFlankEnum_LeftFlank(); @@ -14762,14 +13745,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['NeitherFlank'] = _emscripten_enum_ContainFlank_ContainFlankEnum_NeitherFlank(); -// $ContainMode + + // ContainMode Module['Default'] = _emscripten_enum_ContainMode_Default(); Module['ComputeWithOptimalResource'] = _emscripten_enum_ContainMode_ComputeWithOptimalResource(); -// $IgnitionFuelBedType_IgnitionFuelBedTypeEnum + + // IgnitionFuelBedType_IgnitionFuelBedTypeEnum Module['PonderosaPineLitter'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PonderosaPineLitter(); @@ -14788,7 +13773,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['PeatMoss'] = _emscripten_enum_IgnitionFuelBedType_IgnitionFuelBedTypeEnum_PeatMoss(); -// $LightningCharge_LightningChargeEnum + + // LightningCharge_LightningChargeEnum Module['Negative'] = _emscripten_enum_LightningCharge_LightningChargeEnum_Negative(); @@ -14797,14 +13783,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['Unknown'] = _emscripten_enum_LightningCharge_LightningChargeEnum_Unknown(); -// $SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum + + // SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum Module['CLOSED'] = _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_CLOSED(); Module['OPEN'] = _emscripten_enum_SpotDownWindCanopyMode_SpotDownWindCanopyModeEnum_OPEN(); -// $SpotTreeSpecies_SpotTreeSpeciesEnum + + // SpotTreeSpecies_SpotTreeSpeciesEnum Module['ENGELMANN_SPRUCE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_ENGELMANN_SPRUCE(); @@ -14835,7 +13823,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['LOBLOLLY_PINE'] = _emscripten_enum_SpotTreeSpecies_SpotTreeSpeciesEnum_LOBLOLLY_PINE(); -// $SpotFireLocation_SpotFireLocationEnum + + // SpotFireLocation_SpotFireLocationEnum Module['MIDSLOPE_WINDWARD'] = _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_MIDSLOPE_WINDWARD(); @@ -14846,14 +13835,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['RIDGE_TOP'] = _emscripten_enum_SpotFireLocation_SpotFireLocationEnum_RIDGE_TOP(); -// $FuelLifeState_FuelLifeStateEnum + + // FuelLifeState_FuelLifeStateEnum Module['Dead'] = _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Dead(); Module['Live'] = _emscripten_enum_FuelLifeState_FuelLifeStateEnum_Live(); -// $FuelConstantsEnum_FuelConstantsEnum + + // FuelConstantsEnum_FuelConstantsEnum Module['MaxLifeStates'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxLifeStates(); @@ -14868,14 +13859,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['MaxFuelModels'] = _emscripten_enum_FuelConstantsEnum_FuelConstantsEnum_MaxFuelModels(); -// $AspenFireSeverity_AspenFireSeverityEnum + + // AspenFireSeverity_AspenFireSeverityEnum Module['Low'] = _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Low(); Module['Moderate'] = _emscripten_enum_AspenFireSeverity_AspenFireSeverityEnum_Moderate(); -// $ChaparralFuelType_ChaparralFuelTypeEnum + + // ChaparralFuelType_ChaparralFuelTypeEnum Module['NotSet'] = _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_NotSet(); @@ -14884,14 +13877,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['MixedBrush'] = _emscripten_enum_ChaparralFuelType_ChaparralFuelTypeEnum_MixedBrush(); -// $ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum + + // ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum Module['DirectFuelLoad'] = _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_DirectFuelLoad(); Module['FuelLoadFromDepthAndChaparralType'] = _emscripten_enum_ChaparralFuelLoadInputMode_ChaparralFuelInputLoadModeEnum_FuelLoadFromDepthAndChaparralType(); -// $MoistureInputMode_MoistureInputModeEnum + + // MoistureInputMode_MoistureInputModeEnum Module['BySizeClass'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_BySizeClass(); @@ -14904,7 +13899,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['MoistureScenario'] = _emscripten_enum_MoistureInputMode_MoistureInputModeEnum_MoistureScenario(); -// $MoistureClassInput_MoistureClassInputEnum + + // MoistureClassInput_MoistureClassInputEnum Module['OneHour'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_OneHour(); @@ -14921,14 +13917,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['LiveAggregate'] = _emscripten_enum_MoistureClassInput_MoistureClassInputEnum_LiveAggregate(); -// $SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum + + // SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum Module['FromIgnitionPoint'] = _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromIgnitionPoint(); Module['FromPerimeter'] = _emscripten_enum_SurfaceFireSpreadDirectionMode_SurfaceFireSpreadDirectionModeEnum_FromPerimeter(); -// $TwoFuelModelsMethod_TwoFuelModelsMethodEnum + + // TwoFuelModelsMethod_TwoFuelModelsMethodEnum Module['NoMethod'] = _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_NoMethod(); @@ -14939,14 +13937,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['TwoDimensional'] = _emscripten_enum_TwoFuelModelsMethod_TwoFuelModelsMethodEnum_TwoDimensional(); -// $WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum + + // WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum Module['Unsheltered'] = _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Unsheltered(); Module['Sheltered'] = _emscripten_enum_WindAdjustmentFactorShelterMethod_WindAdjustmentFactorShelterMethodEnum_Sheltered(); -// $WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum + + // WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum Module['UserInput'] = _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_UserInput(); @@ -14955,14 +13955,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['DontUseCrownRatio'] = _emscripten_enum_WindAdjustmentFactorCalculationMethod_WindAdjustmentFactorCalculationMethodEnum_DontUseCrownRatio(); -// $WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum + + // WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum Module['RelativeToUpslope'] = _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToUpslope(); Module['RelativeToNorth'] = _emscripten_enum_WindAndSpreadOrientationMode_WindAndSpreadOrientationModeEnum_RelativeToNorth(); -// $WindHeightInputMode_WindHeightInputModeEnum + + // WindHeightInputMode_WindHeightInputModeEnum Module['DirectMidflame'] = _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_DirectMidflame(); @@ -14971,14 +13973,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['TenMeter'] = _emscripten_enum_WindHeightInputMode_WindHeightInputModeEnum_TenMeter(); -// $WindUpslopeAlignmentMode + + // WindUpslopeAlignmentMode Module['NotAligned'] = _emscripten_enum_WindUpslopeAlignmentMode_NotAligned(); Module['Aligned'] = _emscripten_enum_WindUpslopeAlignmentMode_Aligned(); -// $SurfaceRunInDirectionOf + + // SurfaceRunInDirectionOf Module['MaxSpread'] = _emscripten_enum_SurfaceRunInDirectionOf_MaxSpread(); @@ -14987,7 +13991,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['HeadingBackingFlanking'] = _emscripten_enum_SurfaceRunInDirectionOf_HeadingBackingFlanking(); -// $FireType_FireTypeEnum + + // FireType_FireTypeEnum Module['Surface'] = _emscripten_enum_FireType_FireTypeEnum_Surface(); @@ -14998,7 +14003,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['Crowning'] = _emscripten_enum_FireType_FireTypeEnum_Crowning(); -// $BeetleDamage + + // BeetleDamage Module['not_set'] = _emscripten_enum_BeetleDamage_not_set(); @@ -15007,14 +14013,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['yes'] = _emscripten_enum_BeetleDamage_yes(); -// $CrownFireCalculationMethod + + // CrownFireCalculationMethod Module['rothermel'] = _emscripten_enum_CrownFireCalculationMethod_rothermel(); Module['scott_and_reinhardt'] = _emscripten_enum_CrownFireCalculationMethod_scott_and_reinhardt(); -// $CrownDamageEquationCode + + // CrownDamageEquationCode Module['not_set'] = _emscripten_enum_CrownDamageEquationCode_not_set(); @@ -15041,7 +14049,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['douglas_fir'] = _emscripten_enum_CrownDamageEquationCode_douglas_fir(); -// $CrownDamageType + + // CrownDamageType Module['not_set'] = _emscripten_enum_CrownDamageType_not_set(); @@ -15052,7 +14061,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['crown_kill'] = _emscripten_enum_CrownDamageType_crown_kill(); -// $EquationType + + // EquationType Module['not_set'] = _emscripten_enum_EquationType_not_set(); @@ -15063,7 +14073,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['crown_damage'] = _emscripten_enum_EquationType_crown_damage(); -// $FireSeverity + + // FireSeverity Module['not_set'] = _emscripten_enum_FireSeverity_not_set(); @@ -15072,14 +14083,16 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['low'] = _emscripten_enum_FireSeverity_low(); -// $FlameLengthOrScorchHeightSwitch + + // FlameLengthOrScorchHeightSwitch Module['flame_length'] = _emscripten_enum_FlameLengthOrScorchHeightSwitch_flame_length(); Module['scorch_height'] = _emscripten_enum_FlameLengthOrScorchHeightSwitch_scorch_height(); -// $GACC + + // GACC Module['NotSet'] = _emscripten_enum_GACC_NotSet(); @@ -15102,7 +14115,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['Southwest'] = _emscripten_enum_GACC_Southwest(); -// $RequiredFieldNames + + // RequiredFieldNames Module['region'] = _emscripten_enum_RequiredFieldNames_region(); @@ -15133,7 +14147,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['num_inputs'] = _emscripten_enum_RequiredFieldNames_num_inputs(); -// $FDFMToolAspectIndex_AspectIndexEnum + + // FDFMToolAspectIndex_AspectIndexEnum Module['NORTH'] = _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_NORTH(); @@ -15144,7 +14159,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['WEST'] = _emscripten_enum_FDFMToolAspectIndex_AspectIndexEnum_WEST(); -// $FDFMToolDryBulbIndex_DryBulbIndexEnum + + // FDFMToolDryBulbIndex_DryBulbIndexEnum Module['TEN_TO_TWENTY_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_TEN_TO_TWENTY_NINE_DEGREES_F(); @@ -15159,7 +14175,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F'] = _emscripten_enum_FDFMToolDryBulbIndex_DryBulbIndexEnum_GREATER_THAN_ONE_HUNDRED_NINE_DEGREES_F(); -// $FDFMToolElevationIndex_ElevationIndexEnum + + // FDFMToolElevationIndex_ElevationIndexEnum Module['BELOW_1000_TO_2000_FT'] = _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_BELOW_1000_TO_2000_FT(); @@ -15168,7 +14185,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['ABOVE_1000_TO_2000_FT'] = _emscripten_enum_FDFMToolElevationIndex_ElevationIndexEnum_ABOVE_1000_TO_2000_FT(); -// $FDFMToolMonthIndex_MonthIndexEnum + + // FDFMToolMonthIndex_MonthIndexEnum Module['MAY_JUNE_JULY'] = _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_MAY_JUNE_JULY(); @@ -15177,7 +14195,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['NOV_DEC_JAN'] = _emscripten_enum_FDFMToolMonthIndex_MonthIndexEnum_NOV_DEC_JAN(); -// $FDFMToolRHIndex_RHIndexEnum + + // FDFMToolRHIndex_RHIndexEnum Module['ZERO_TO_FOUR_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ZERO_TO_FOUR_PERCENT(); @@ -15222,21 +14241,24 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['ONE_HUNDRED_PERCENT'] = _emscripten_enum_FDFMToolRHIndex_RHIndexEnum_ONE_HUNDRED_PERCENT(); -// $FDFMToolShadingIndex_ShadingIndexEnum + + // FDFMToolShadingIndex_ShadingIndexEnum Module['EXPOSED'] = _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_EXPOSED(); Module['SHADED'] = _emscripten_enum_FDFMToolShadingIndex_ShadingIndexEnum_SHADED(); -// $FDFMToolSlopeIndex_SlopeIndexEnum + + // FDFMToolSlopeIndex_SlopeIndexEnum Module['ZERO_TO_THIRTY_PERCENT'] = _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_ZERO_TO_THIRTY_PERCENT(); Module['GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT'] = _emscripten_enum_FDFMToolSlopeIndex_SlopeIndexEnum_GREATER_THAN_OR_EQUAL_TO_THIRTY_ONE_PERCENT(); -// $FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum + + // FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum Module['EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHT_HUNDRED_HOURS_TO_NINE_HUNDRED_FIFTY_NINE(); @@ -15251,7 +14273,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET'] = _emscripten_enum_FDFMToolTimeOfDayIndex_TimeOfDayIndexEnum_EIGHTTEEN_HUNDRED_HOURS_TO_SUNSET(); -// $RepresentativeFraction_RepresentativeFractionEnum + + // RepresentativeFraction_RepresentativeFractionEnum Module['NINTEEN_HUNDRED_EIGHTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_NINTEEN_HUNDRED_EIGHTY(); @@ -15290,7 +14313,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY'] = _emscripten_enum_RepresentativeFraction_RepresentativeFractionEnum_ONE_MILLION_THIRTEEN_THOUSAND_SEVEN_HUNDRED_SIXTY(); -// $HorizontalDistanceIndex_HorizontalDistanceIndexEnum + + // HorizontalDistanceIndex_HorizontalDistanceIndexEnum Module['UPSLOPE_ZERO_DEGREES'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_UPSLOPE_ZERO_DEGREES(); @@ -15307,7 +14331,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['CROSS_SLOPE_NINETY_DEGREES'] = _emscripten_enum_HorizontalDistanceIndex_HorizontalDistanceIndexEnum_CROSS_SLOPE_NINETY_DEGREES(); -// $BurningCondition_BurningConditionEnum + + // BurningCondition_BurningConditionEnum Module['Low'] = _emscripten_enum_BurningCondition_BurningConditionEnum_Low(); @@ -15316,7 +14341,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['Extreme'] = _emscripten_enum_BurningCondition_BurningConditionEnum_Extreme(); -// $SlopeClass_SlopeClassEnum + + // SlopeClass_SlopeClassEnum Module['Flat'] = _emscripten_enum_SlopeClass_SlopeClassEnum_Flat(); @@ -15325,7 +14351,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['Steep'] = _emscripten_enum_SlopeClass_SlopeClassEnum_Steep(); -// $SpeedClass_SpeedClassEnum + + // SpeedClass_SpeedClassEnum Module['Light'] = _emscripten_enum_SpeedClass_SpeedClassEnum_Light(); @@ -15334,7 +14361,8 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan Module['High'] = _emscripten_enum_SpeedClass_SpeedClassEnum_High(); -// $SafetyCondition_SafetyConditionEnum + + // SafetyCondition_SafetyConditionEnum Module['Low'] = _emscripten_enum_SafetyCondition_SafetyConditionEnum_Low(); @@ -15346,5 +14374,6 @@ SafeSeparationDistanceCalculator.prototype['__destroy__'] = SafeSeparationDistan if (runtimeInitialized) setupEnums(); else addOnInit(setupEnums); })(); -// end include: /Users/rsheperd/code/sig/behave-app/behave-lib/include/js/glue.js + +// end include: /home/kcheung/work/code/behave-polylith/behave-lib/include/js/glue.js diff --git a/projects/behave/resources/public/js/behave-min.wasm b/projects/behave/resources/public/js/behave-min.wasm index eabe2817..458ed1a6 100755 Binary files a/projects/behave/resources/public/js/behave-min.wasm and b/projects/behave/resources/public/js/behave-min.wasm differ diff --git a/projects/behave/src/cljs/behave/tool/subs.cljs b/projects/behave/src/cljs/behave/tool/subs.cljs index 7d627cbb..9f956847 100644 --- a/projects/behave/src/cljs/behave/tool/subs.cljs +++ b/projects/behave/src/cljs/behave/tool/subs.cljs @@ -1,6 +1,7 @@ (ns behave.tool.subs (:require [behave.vms.store :as s] [clojure.set :refer [rename-keys]] + [behave.translate :refer [translated-name + (fn [_ [_ subtool-variable-uuid]] + (when-let [translation-key (->> (d/entity @@s/vms-conn [:bp/uuid subtool-variable-uuid]) + :subtool-variable/translation-key)] + @(translated-name sv-uuid]) domain @(rf/subscribe [:vms/entity-from-uuid domain-uuid]) unit-uuid @(rf/subscribe [:tool/input-units tool-uuid subtool-uuid sv-uuid]) value @(rf/subscribe [:tool/input-value tool-uuid subtool-uuid sv-uuid]) @@ -136,7 +138,7 @@ [:div.tool-input__input {:on-mouse-over #(rf/dispatch [:help/highlight-section help-key])} [c/number-input {:id sv-uuid - :label var-name + :label (or translated-name var-name) :value-atom value-atom :required? true :on-change #(reset! value-atom (input-value %)) @@ -170,17 +172,17 @@ help-key :subtool-variable/help-key v-list :variable/list} variable selected @(rf/subscribe [:tool/input-value - tool-uuid - subtool-uuid - sv-uuid]) + tool-uuid + subtool-uuid + sv-uuid]) options (:list/options v-list) default-option (first (filter #(true? (:list-option/default %)) options)) on-change #(rf/dispatch [:tool/upsert-input-value - tool-uuid - subtool-uuid - sv-uuid - (input-value %) - auto-compute?]) + tool-uuid + subtool-uuid + sv-uuid + (input-value %) + auto-compute?]) num-options (count options) ->option (fn [{value :list-option/value t-key :list-option/translation-key @@ -237,6 +239,7 @@ metric-unit-uuid :variable/metric-unit-uuid dynamic-units? :subtool-variable/dynamic-units? help-key :subtool-variable/help-key} variable + translated-name @(rf/subscribe [:tool/sv->translated-name sv-uuid]) domain @(rf/subscribe [:vms/entity-from-uuid domain-uuid]) output-value @(rf/subscribe [:tool/output-value tool-uuid subtool-uuid sv-uuid]) value (when output-value (to-precision (parse-float output-value) (or (:domain/decimals domain) native-decimals)))] @@ -246,7 +249,7 @@ {:on-mouse-over #(prn [:help/highlight-section help-key])} [c/text-input {:id sv-uuid :disabled? true - :label var-name + :label (or translated-name var-name) :value (or value "")}]] [unit-display domain-uuid @@ -269,6 +272,7 @@ var-name :variable/name list :variable/list help-key :subtool-variable/help-key} variable + translated-name @(rf/subscribe [:tool/sv->translated-name sv-uuid]) value @(rf/subscribe [:tool/output-value tool-uuid subtool-uuid sv-uuid]) list-options (index-by :list-option/value (:list/options list)) matching-option (get list-options value) @@ -284,7 +288,7 @@ {:on-mouse-over #(prn [:help/highlight-section help-key])} [c/text-input {:id sv-uuid :disabled? true - :label var-name + :label (or translated-name var-name) :background background :font-color font-color :value (get matching-option :list-option/name "")}]]]]))