translateObj {AutoDeskR} | R Documentation |
Translate an uploaded file into OBJ format using the Model Derivative API.
translateObj(urn = NULL, token = NULL)
urn |
A string. Source URN (objectId) for the file. Note the URN must be
Base64 encoded. To encode the URN, see, for example, the
|
token |
A string. Token generated with |
An object containing the result
, urn
, and additional
activity information.
https://developer.autodesk.com/en/docs/model-derivative/v2/overview/
## Not run: # Translate the "aerial.dwg" file into a obj file resp <- translateObj(urn <- myEncodedUrn, token = myToken) ## End(Not run)