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.
Full documentation of viewer object
121 Views Asked by Rohit Bohara At
2
There are 2 best solutions below
0

viewer.toolController
is 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.
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.