I want to convert the points in the drawing to the corresponding model space

41 Views Asked by At

There is a feature in the acc viewer that allows you to jump to the corresponding position in the model by selecting a point and direction on the screen enter image description here enter image description here

This seems to involve a method of converting the points on the drawing to the model space, and I have tried many times, such as focusing the model through dbid, but I have not achieved this effect.

 let viewer = this.viewer;
    if (param) {
      viewer.clearSelection()
      viewer.isolate(param.dbIdArray)
      viewer.fitToView(param.dbIdArray)
    }
    this.viewer.addEventListener(window.Autodesk.Viewing.SELECTION_CHANGED_EVENT, function(selected) {
      console.log(selected)
      viewer.selectedDbIdArray = selected.dbIdArray;
      viewer.model.getProperties(selected.dbIdArray[0], function(props) {
        console.log(props)
      });
    });

Is there anyone who can help me.

0

There are 0 best solutions below