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
A general idea of usage:
import {Viewer, XKTLoaderPlugin, DeviationAnalysisPlugin} from "xeokit-sdk.es.js"; const viewer = new Viewer({ canvasId: "myCanvas", transparent: true }); const xktLoader = new XKTLoaderPlugin(viewer); const model = xktLoader.load({ id: "myModel", src: "./models/xkt/Schependomlaan.xkt", edges: true }); const pointCloud = xktLoader.load({ id: "myPointCloud", src: "./models/xkt/Schependomlaan.laz.xkt" }); const deviationAnalysis = new DeviationAnalysisPlugin(viewer, { }); const analysis = deviationAnalysis.analyze({ model: model, pointCloud: pointCloud }); // Rough idea const deviationFactor = analysis.objectDeviationFactors["2hExBg8jj4NRG6zzD0RZML"]; if (deviationFactor > 0) { viewer.scene.objects["2hExBg8jj4NRG6zzD0RZML"].highlighted = true; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A general idea of usage:
The text was updated successfully, but these errors were encountered: