Is it possible to save edits applied in Web Toolkit?

Is it possible to save edits applied in Web Toolkit?

Web Toolkit add-on provides functionalities for visualization, analysis and export of 3D data in web browsers.
However unfortunately since it's mostly a visualization tool, it doesn't allow editing. A user will be able to manipulate parts of the model, change its colors, add notes, etc., but such changes won't be written into the visualized file.
The only way to save them would be to translate the changes from Web Toolkit on the frontend to CAD Exchanger SDK on the backend, and export (or continue to modify) the model from there. For more information on how applications can be built with our Web Toolkit please see this tutorial.
    • Related Articles

    • Web Toolkit

      CAD Exchanger Web Toolkit is a set of JavaScript libraries to visualize, explore and analyze 3D CAD models. Unlike Autodesk Forge, Web Toolkit can be used to develop web applications running entirely on premise (i.e. inside a corporate network) ...
    • How to import and visualize 2D drawings in Web Toolkit

      We have a ready-made Drawing Viewer Example that shows drawings: sheets, layers, elements in a browser. Its source code is available here on GitHub. It can be implemented into your solution. In order for the Web Toolkit to display the drawing, the ...
    • How to measure distance between Shapes, lengths of Edges and surface area in Web Toolkit

      To measure the minimal distance between two selected Shapes, use createDistanceFromShapes method of ModelPrs_MeasurementFactory class. To measure the length of an Edge, use computeEdgeLength method of ModelAlgo_CurveLength class. It will be computed ...
    • Visualization Toolkit

      The CAD Exchanger SDK visualization component enables creation of highly-interactive high-performance 3D CAD/CAE applications. The visualization component provides an efficient API to create scene graph from the SDK data objects (such as ...
    • Screenshot generation

      At the moment Web Toolkit has no API that allows to make screenshots, but a screenshot can be made using standard web API - HTMLCanvasElement: toBlob() method.