Walk Through for Autodesk

181 Views Asked by At

My Team has created a walk through in their Revit software as its been shown in this video [here][1]. We are looking for a way to render this walk through in Forge Viewer.

1

There are 1 best solutions below

4
On

Regarding #1: I'm afraid the walkthrough information is not extracted by the Model Derivative service, so it will not be available automatically in Forge Viewer.

Regarding #2: This is more a question for the Revit API forum but I believe that it should be possible to extract the walkthrough from your Revit model programmatically. And if it is possible, you could even automate this process by running your Revit plugin in the Forge Design Automation service.

Regarding #3 and #4: If you are able to extract the walkthrough camera data, let's say into a JSON file, you can definitely implement a similar walkthrough in Forge Viewer, for example, using the viewer.navigation.setView method, or using something like viewer.navigation.setRequestTransition(state, pos, coi, fov, reorient, pivot). This is the docs for the individual arguments:

/**
 * Issue a request to transition the current cameras view to that specified by the parameters.
 *  @param {boolean} state - value of the request. Set to true in order to request the change of view.
 *  @param {THREE.Vector3} pos - the new camera position in world space
 *  @param {THREE.Vector3} coi - the point in world space that the camera should look towards.
 *  @param {number} fov - vertical field of view in degrees
 *  @param {boolean} reorient - set to true to recalculate up vector
 *  @param {THREE.Vector3} pivot - the new pivot point
 */