I realizd that when leveraging Cognite REVEAL in application development, can we not have Point Cloud/360 Images annd 3D in one REVEAL? Why do i have to select which one? is that not embedded within the same where i can turn on or off the Point Cloud or 360 Images?
Solved
COGNITE REVEAL SDK: POINT CLOUD AND 3D
Best answer by Christopher Tannum
Reveal supports adding 360 images, point clouds and CAD models together in one view. Simply call relevant methods in succession.
Example:
const viewer = new Cognite3DViewer(...);
const myCadModel = viewer.addModel(...); // Options for CAD model
const myPointCloudModel = viewer.addModel(...); // Options for Point Cloud model
const my360ImageSet = viewer.add360ImageSet(...); // Options for 360 images
// Note that if the different resources are not aligned,
// you can translate / rotate your models as such:
myCadModel.setModelTransformation(...); // Passing in any transformation you like
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.