Full documentation of viewer object

121 Views Asked by At

I am following transform tutorial . At many places in the code, viewer.impl, viewer.toolController are used. I checked documentation of Viewer but I don't find all the information.

2

There are 2 best solutions below

0
On BEST ANSWER

Transforming components is not exposed to the public API unfortunately, so the blog post relies on some undocumented members and methods of the viewer. Those are accessed through viewer.impl.XXX and you won't find those in the documentation. If you have any questions on how to get something done take a look at our blog or feel free to post your questions on StackOverflow.

0
On

viewer.toolControlleris an instance of another separated class called ToolController. Here is the documentation:

https://developer.autodesk.com/en/docs/viewer/v2/reference/javascript/toolcontroller/

Hope it help.