Menu
  • HOME
  • TAGS

Convert autodesk .dwg and .dwf files to three.js json format

json,three.js,autodesk,dwg

In fact Autodesk already have a converter & wegbl viewer. Go to http://developer.autodesk.com and get a key for View & Data API. There is a server side REST API that allow you to upload a CAD file and convert to a JSON stream. You can hook to it and get...

Send curl with Expect --upload-file header -> Node.js

node.js,http,express,request,autodesk

Just in case, you may also check the documentation at https://developer.autodesk.com/api/view-and-data-api/#oss-bucket-and-object-api-v1-0

Autocad scaling

autocad,cad,autodesk

The scale factor only controls the scale of the linetype. To change the way the lineweight displays on the screen, right click on the "Show/Hide Lineweight" toggle at the very bottom, click "Settings..." and adjust the slider labelled "Adjust Display Scale". Note that this will not change the printed weight...

What does the ISAVEPERCENT variable do in AutoCad?

autocad,cad,autodesk,autocad-plugin,autolisp

It is in essence the difference between qsave (quick save) and Save (full save). If Isavepercent is at 50 the qsave command saves changes to the dwq by "Appending" it to the database. Ones the wasted space is at 50% the next save will be a Full save. This used...

Does accoreconsole.exe depends on AutoCAD?

autocad,autodesk,dwg

Yes, AutoCAD console is part of AutoCAD (full install). But you can use the webservice AutoCAD I/O to batch process drawings, check at http://developer.autodesk.com...

How do you get Maya to communicate through the localhost IP?

maya,autodesk

Maya includes the commandPort command which will listen for incoming connections on a socket and run either mel or python scripts on the incoming data examples: http://fredrik.averpil.com/post/55507118045 Opening a commandPort in standalone maya for unit testing use external python script to open maya and run another script inside maya...