void HexoticPlugin_Hypothesis::SetMinSize(double theVal) {
if (theVal != _minSize) {
- _minSize = theVal;
+ _minSize = theVal;
NotifySubMeshesHypothesisModification();
}
}
void HexoticPlugin_Hypothesis::SetMaxSize(double theVal) {
if (theVal != _maxSize) {
- _maxSize = theVal;
+ _maxSize = theVal;
NotifySubMeshesHypothesisModification();
}
}
{
if ( _hexoticWorkingDirectory != path ) {
_hexoticWorkingDirectory = path;
+ if ( !path.empty() )
+ {
+#ifdef WIN32
+ if( path[ path.size()-1 ] != '\\')
+ _hexoticWorkingDirectory += '\\';
+#else
+ if( path[ path.size()-1 ] != '/')
+ _hexoticWorkingDirectory += '/';
+#endif
+ }
NotifySubMeshesHypothesisModification();
}
}