IfcLoader.useWebworkers
简介:
IfcLoader.useWebworkers是IfcLoader的一个静态方法,用于设置是否使用Web Workers来解析IFC文件。
方法原型:
静态方法 IfcLoader.useWebworkers(value)
参数介绍:
value:Boolean类型,true表示使用Web Workers来解析IFC文件,false表示不使用。
示例代码:
// 实例化IfcLoader对象 var ifcLoader = new IfcLoader();
// 设置使用Web Workers来解析IFC文件 IfcLoader.useWebworkers(true);
// 加载IFC文件 ifcLoader.load('model.ifc', function(ifcModel){ // 成功加载IFC文件后的回调函数 }, function(error){ // 加载IFC文件失败后的回调函数 });
// 使用完毕后重置为不使用Web Workers来解析IFC文件 IfcLoader.useWebworkers(false);
说明: