We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I launched the optimizer on the test file and I realized that it deleted materials. Ifc2x3_SampleCastle
using IfcToolbox.Tools.Configurations; using IfcToolbox.Tools.Processors; Console.WriteLine("Optimizing the IFC file"); var filePath = args[0]; IConfigOptimize config = ConfigFactory.CreateConfigOptimize(); config.PrecisionOpen = true; config.Precision = 4; config.OptimizePoint = true; config.OptimizePointList = true; config.MergeOpen = true; config.MergeOnlyResources = true; config.MergeReversedEntities = true; var result = OptimizerProcessor.Process(filePath, config, true); Console.WriteLine(result.Success ? "Optimized successfully": "Could not optimized" );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I launched the optimizer on the test file and I realized that it deleted materials.
Ifc2x3_SampleCastle
The text was updated successfully, but these errors were encountered: