000

Index Labels

Log AutoCAD's Plotting

.
One of the technical issues CAD managers oftern ask thenself is how do I tracking plottings done through AutoCAD.

There are many ways to do that. AutoCAD itself provides plot and publish logging (via Options dialog box->Plot and Publish tab). There be other software that can monitor printing tasks sent to one or more printers...

With AutoCD .NET API, we can fairly easily to build a custom plotting logging application, which is the topic of this article.

The Autodesk.AutoCAD.PlottingServices.PlotReactorManager class provides all the functionalities needed to track plotting from an running AutoCAD session. This class exposes a series of events that fire from the beginning of plotting to the end of plotting. Some plotting information that would be the interest of plot tracking is exposed through various EventArgs. Therefore, simply handling approriate events and retrieving needed plotting information, then saving the information into some sort of data store, these all a custom plot tracking application needs to do.

Let's look at the code.

First, I define a data class that hold plotting information I want to track when AutoCAD does a plotting:

using System;
using Autodesk.AutoCAD.DatabaseServices;
 
namespace TrackAcadPlotting
{
    public class PlotLog
    {
        public string DwgName { set; get; }
        public string DwgPath { set; get; }
        public int CopyCount { set; get; }
        public string PlotterName { set; get; }
        public DateTime PlottingTime { set; get; }
        public PlotPaperUnit PaperUnit { set; get; }
        public double PaperWidth { set; get; }
        public double PaperHeight { set; get; }
        public string MediaName { set; get; }
        public string UserName { set; get; }
        public string ComputerName { set; get; }
    }
}

The data store used to save plot tracking data can be different, from file (plain text, Xml...), to database. AutoCAD built-in plotting log is a plain text file, usually saved where the the plotted drawing is, if enabled. Of course these kind of plotting logs are not convenient for plotting management: they scattered everywhere. In general, file based store is not very ideal solution with this custom plot tracking application: the user who runs AutoCAD, thus the plot tracking application, must have read/write permission to the log file. So, it could be a security hole, if you want this plot tracking to be a serious CAD management tool. Ideally, the data store would be some sort of central database.

In order for this custom plot tracking application to be able to save plotting log to different data store, I created an Interface called IPlottingLogWriter. For different data store, we can write different code to save the plotting log, as long as the IPlottingLogWriter is implemented. In this article, the the simplicity, I implemented an file data store, called PlottingLogFileWriter to save plotting log to a text file. As aforementioned, I could implement the IPlottingLogWriter to save the data to database, or send the plotting log data to a WCF service to be saved somewhere. This way, no matter what data storage mechanism the application uses, the code to track plotting will not have to be changed.
Here is the Interface and its implementing:

The interface:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace TrackAcadPlotting
{
    public interface IPlottingLogWriter
    {
        void SavePlottingLog(PlotLog log);
    }
}


The interface implementing:


using System;
using System.IO;
 
namespace TrackAcadPlotting
{
    public class PlottingLogFileWriter : IPlottingLogWriter
    {
        private string _logFolder;
 
        public PlottingLogFileWriter(string folderPath)
        {
            _logFolder = folderPath;
 
            //Create log folder:
            if (!Directory.Exists(_logFolder))
            {
                Directory.CreateDirectory(_logFolder);
            }
        }
 
        #region IPlottingLogWriter Members
 
        public void SavePlottingLog(PlotLog log)
        {
            string fileName = _logFolder + 
                        "\\PlotTracking_" + 
                        DateTime.Today.ToString("yyyy-MM-dd") + 
                        ".txt";
 
            using (FileStream st = new FileStream(
                fileName, FileMode.Append, FileAccess.Write, FileShare.Write))
            {
                using (StreamWriter writer = new StreamWriter(st))
                {
                    writer.WriteLine(
                        "-------------Log begins------------------");
 
                    writer.WriteLine("Drawing: {0}", 
                        log.DwgName);
                    writer.WriteLine("File path: {0}", 
                        log.DwgPath);
                    writer.WriteLine("Plotting copy: {0}", 
                        log.CopyCount);
                    writer.WriteLine("Plotter name: {0}", 
                        log.PlotterName);
                    writer.WriteLine("Paper unit: {0}", 
                        log.PaperUnit.ToString());
                    writer.WriteLine("Paper width: {0}", 
                        log.PaperWidth.ToString("#######0.00") + "mm");
                    writer.WriteLine("Paper hight: {0}", 
                        log.PaperHeight.ToString("#######0.00") + "mm");
                    writer.WriteLine("Media name: {0}", 
                        log.MediaName);
                    writer.WriteLine("User name: {0}", 
                        log.UserName);
                    writer.WriteLine("CAD computer: {0}", 
                        log.ComputerName);
 
                    writer.WriteLine(
                        "-------------Log ends--------------------");
 
                    writer.Flush();
                    writer.Close();
                }
            }
        }
 
        #endregion
    }
}

Finally, this is the class "TrackPlotting" that does the actual work:

    1 using System;
    2 using System.Collections.Generic;
    3 using System.IO;
    4 
    5 using Autodesk.AutoCAD.ApplicationServices;
    6 using Autodesk.AutoCAD.EditorInput;
    7 using Autodesk.AutoCAD.PlottingServices;
    8 using Autodesk.AutoCAD.Geometry;
    9 using Autodesk.AutoCAD.Runtime;
   10 
   11 [assembly: CommandClass(typeof(TrackAcadPlotting.TrackPlotting))]
   12 [assembly: ExtensionApplication(typeof(TrackAcadPlotting.TrackPlotting))]
   13 
   14 namespace TrackAcadPlotting
   15 {
   16     public class TrackPlotting: IExtensionApplication
   17     {
   18         private static PlotReactorManager _plotManager;
   19         private static IPlottingLogWriter _logWriter;
   20         private static bool _cancelled=false;
   21         private static PlotLog _log=null;
   22 
   23         #region IExtensionApplication Members
   24 
   25         private List<string> _plotters = null;
   26 
   27         public void Initialize()
   28         {
   29             Document dwg = Autodesk.AutoCAD.ApplicationServices.
   30                 Application.DocumentManager.MdiActiveDocument;
   31 
   32             //Get plotter names to track
   33             _plotters = GetPlotterNames();
   34 
   35             try
   36             {
   37                 //Hard-coded log file folder path.
   38                 //In production, the file path could be
   39                 //set in acad.exe.confg or using other 
   40                 //configuing technique
   41                 //Note: here I instantiated an PlottingLogFileWriter
   42                 //I can also instantiate an PlottingLogSqlServerWriter, 
   43                 //if it is available
   44                 _logWriter = new PlottingLogFileWriter("E:\\Temp\\PlottingTrack");
   45             }
   46             catch
   47             {
   48                 if (dwg != null)
   49                 {
   50                     dwg.Editor.WriteMessage(
   51                         "\nInitializing plot tracking log writer faailed.");
   52                 }
   53 
   54                 return;
   55             }
   56 
   57             //Hook up event handlers
   58             _plotManager = new PlotReactorManager();
   59 
   60             _plotManager.BeginPlot += 
   61                 new BeginPlotEventHandler(PlotManager_BeginPlot);
   62 
   63             _plotManager.BeginDocument += 
   64                 new BeginDocumentEventHandler(PlotManager_BeginDocument);
   65 
   66             _plotManager.BeginPage += 
   67                 new BeginPageEventHandler(PlotManager_BeginPage);
   68 
   69             _plotManager.EndPage += 
   70                 new EndPageEventHandler(PlotManager_EndPage);
   71 
   72             _plotManager.EndDocument += 
   73                 new EndDocumentEventHandler(PlotManager_EndDocument);
   74 
   75             _plotManager.EndPlot += 
   76                 new EndPlotEventHandler(PlotManager_EndPlot);
   77 
   78             _plotManager.PageCancelled += 
   79                 new PageCancelledEventHandler(PlotManager_PageCancelled);
   80 
   81             _plotManager.PlotCancelled += 
   82                 new PlotCancelledEventHandler(PlotManager_PlotCancelled);
   83 
   84             if (dwg != null)
   85             {
   86                 dwg.Editor.WriteMessage("\nPlot tracking has been initialized.");
   87             }
   88         }
   89 
   90         public void Terminate()
   91         {
   92             //Remove event handlers
   93             _plotManager.BeginPlot -= 
   94                 new BeginPlotEventHandler(PlotManager_BeginPlot);
   95 
   96             _plotManager.BeginDocument -= 
   97                 new BeginDocumentEventHandler(PlotManager_BeginDocument);
   98 
   99             _plotManager.BeginPage -= 
  100                 new BeginPageEventHandler(PlotManager_BeginPage);
  101 
  102             _plotManager.EndPage -= 
  103                 new EndPageEventHandler(PlotManager_EndPage);
  104 
  105             _plotManager.EndDocument -= 
  106                 new EndDocumentEventHandler(PlotManager_EndDocument);
  107 
  108             _plotManager.EndPlot += 
  109                 new EndPlotEventHandler(PlotManager_EndPlot);
  110 
  111             _plotManager.PageCancelled -= 
  112                 new PageCancelledEventHandler(PlotManager_PageCancelled);
  113 
  114             _plotManager.PlotCancelled -= 
  115                 new PlotCancelledEventHandler(PlotManager_PlotCancelled);
  116         }
  117 
  118         #endregion
  119 
  120         #region private methods
  121 
  122         private List<string> GetPlotterNames()
  123         {
  124             List<string> plotters = new List<string>();
  125 
  126             //A plotter name list could be stored somewhere
  127             //and loaded in, such as acad.exe.config (user may change it!)
  128             //Or centrally stored in a DB (so only manager can set/change it)
  129             //Here I simply hard-coded one plotter name
  130             plotters.Add("CutePDF Writer");
  131 
  132             return plotters;
  133         }
  134 
  135         private void GetUserComputerName(
  136             out string userName, out string computerName)
  137         {
  138             userName = "";
  139             computerName = "";
  140 
  141             string domain = System.Environment.UserDomainName;
  142             string user = System.Environment.UserName;
  143 
  144             userName = domain + "\\" + user;
  145             computerName = System.Environment.MachineName;
  146         }
  147 
  148         private bool IsTracedDevice(string plotterName)
  149         {
  150             foreach (string plt in _plotters)
  151             {
  152                 if (plt.Equals(plotterName,
  153                     StringComparison.CurrentCultureIgnoreCase))
  154                 {
  155                     return true;
  156                 }
  157             }
  158 
  159             return false;
  160         }
  161 
  162         #endregion
  163 
  164         #region Private methods: plotting event handlers
  165 
  166         private void PlotManager_BeginPlot(object sender, BeginPlotEventArgs e)
  167         {
  168             _cancelled = false;
  169 
  170             if (e.PlotType == Autodesk.AutoCAD.
  171                 PlottingServices.PlotType.BackgroundPlot
  172                 || e.PlotType == Autodesk.AutoCAD.
  173                 PlottingServices.PlotType.Plot)
  174             {
  175 
  176                 _log = new PlotLog();
  177 
  178                 string user;
  179                 string comp;
  180                 GetUserComputerName(out user, out comp);
  181 
  182                 _log.UserName = user;
  183                 _log.ComputerName = comp;
  184             }
  185             else
  186             {
  187                 _log = null;
  188             }
  189         }
  190 
  191         private void PlotManager_BeginDocument(
  192             object sender, BeginDocumentEventArgs e)
  193         {
  194             if (e.PlotToFile)
  195             {
  196                 _log = null;
  197                 return;
  198             }
  199 
  200             _log.DwgName = Path.GetFileName(e.DocumentName);
  201             _log.DwgPath = Path.GetDirectoryName(e.DocumentName);
  202             _log.CopyCount = e.Copies;
  203         }
  204 
  205         private void PlotManager_BeginPage(
  206             object sender, BeginPageEventArgs e)
  207         {
  208             if (_log == null) return;
  209 
  210             if (e.PlotInfo.ValidatedConfig != null)
  211             {
  212                 if (e.PlotInfo.ValidatedConfig.IsPlotToFile)
  213                 {
  214                     _log = null;
  215                     return;
  216                 }
  217 
  218                 _log.PlotterName = e.PlotInfo.ValidatedConfig.DeviceName;
  219             }
  220 
  221             if (e.PlotInfo.ValidatedSettings != null)
  222             {
  223                 _log.PaperUnit = e.PlotInfo.ValidatedSettings.PlotPaperUnits;
  224                 _log.MediaName = e.PlotInfo.ValidatedSettings.CanonicalMediaName;
  225 
  226                 Point2d pt = e.PlotInfo.ValidatedSettings.PlotPaperSize;
  227                 if (pt.X > pt.Y)
  228                 {
  229                     _log.PaperWidth = pt.X;
  230                     _log.PaperHeight = pt.Y;
  231                 }
  232                 else
  233                 {
  234                     _log.PaperWidth = pt.Y;
  235                     _log.PaperHeight = pt.X;
  236                 }
  237             }
  238         }
  239 
  240         private void PlotManager_EndPage(
  241             object sender, EndPageEventArgs e)
  242         {
  243             if (e.Status != SheetCancelStatus.Continue) _cancelled = true;
  244         }
  245 
  246         private void PlotManager_EndDocument(
  247             object sender, EndDocumentEventArgs e)
  248         {
  249             if (e.Status != PlotCancelStatus.Continue) _cancelled = true;
  250         }
  251 
  252         private void PlotManager_EndPlot(
  253             object sender, EndPlotEventArgs e)
  254         {
  255             if (e.Status != PlotCancelStatus.Continue) _cancelled = true;
  256 
  257             if (_cancelled)
  258             {
  259                 _log = null;
  260                 _cancelled = false;
  261                 return;
  262             }
  263 
  264             if (_log == null) return;
  265 
  266             _log.PlottingTime = DateTime.Now;
  267 
  268             //Debug code here
  269             Document dwg = Autodesk.AutoCAD.ApplicationServices.
  270                 Application.DocumentManager.MdiActiveDocument;
  271             Editor ed = dwg.Editor;
  272 
  273             ed.WriteMessage("\nPlotted by: {0}", _log.UserName);
  274             ed.WriteMessage("\nPlotted on: {0}", _log.PlotterName);
  275             ed.WriteMessage("\nDwg Location: {0}", _log.DwgPath);
  276             ed.WriteMessage("\nPlotted Dwg: {0}", _log.DwgName);
  277             ed.WriteMessage("\nMedia: {0}", _log.MediaName);
  278             ed.WriteMessage("\nMedia size: " + 
  279                 _log.PaperWidth.ToString("#####0.00") + 
  280                 " (W) x " + 
  281                 _log.PaperHeight.ToString("#####0.00") + " (H)");
  282             ed.WriteMessage("\nCopy Count: {0}", _log.CopyCount);
  283 
  284             //Save Plotting log, if the plotting plotter is on printer list;
  285             if (IsTracedDevice(_log.PlotterName))
  286             {
  287                 _logWriter.SavePlottingLog(_log);
  288             }
  289         }
  290 
  291         private void PlotManager_PlotCancelled(object sender, EventArgs e)
  292         {
  293             _cancelled = true;
  294         }
  295 
  296         private void PlotManager_PageCancelled(object sender, EventArgs e)
  297         {
  298             _cancelled = true;
  299         }
  300 
  301         #endregion
  302     }
  303 }

Some descriptions of the code:

Line 16: this class implements IExtensionApplication. That means, as soon as the assembly is loaded, the code starts monitoring plotting done in the AutoCAD session.

Line 25 and Line 122 - 133: these lines of code defines a list of plotter/printer name that I want to track. The name should be the same as I can see in the printer dropdown list of AutoCAD's plot dialog box. Only plotters in this list is tracked.

Line 44: Notice the variable _logWriter is declared as IPlottingLogWriter, but here it points to a PlottingLogFileWriter (new PlottingLogFileWriter()). It is possible to declare the differently implemented IPlottingLogWriter in acad.exe.config, so that this class will be truly not affected when a new implemented log-writer is available/changed.

The rest of code would be quite obvious, no extra explanation is necessary.

This video clip shows how it works. Note, since I used CutePDF virtual plotter, each time after the plotting is done (e.g. the PDF has been produced), I simply cancelled the "Save As" dialog box. By then the plotting from AutoCAD has already completed, thus cancelling saving PDF file has no affect to the plot tracking process.

At my work, similar code is used to monitor AutoCAD plotting to some expensive color plotters office-wide. The plotting logs are saved to database and can be browsed by managers through a web application.

Finally, I'd like to thank Kean Walmsley for recommending me the VS addin tool CopySourceToHtml, which solves my code posting issue.

Blog Archive

Labels

.NET Programming 2D Drafting 3D Animation 3D Art 3D Artist 3D design 3D effects 3D Engineering 3D Materials 3D Modeling 3D models 3D presentation 3D Printing 3D rendering 3D scanning 3D scene 3D simulation 3D Sketch Inventor 3D Texturing 3D visualization 3D Web App 3ds Max 4D Simulation ACC Adaptive Clearing adaptive components Add-in Development Additive Manufacturing Advanced CAD features Advanced Modeling AEC Technology AEC Tools affordable Autodesk tools AI AI animation AI Assistance AI collaboration AI Design AI Design Tools AI Experts AI for Revit AI Guide AI in CAD AI in CNC AI in design AI in Manufacturing AI in Revit AI insights AI lighting AI rigging AI Tips AI Tools AI troubleshooting AI workflow AI-assisted AI-assisted rendering AI-enhanced Animation animation pipeline animation tips Animation workflow annotation AR architectural design architectural modeling architectural preservation architectural visualization Architecture architecture design Architecture Engineering Architecture Firm Architecture Productivity architecture software architecture technology Architecture Workflow Arnold Renderer Arnold Shader Artificial Intelligence As-Built Model Asset Management augmented reality AutoCAD AutoCAD advice AutoCAD API AutoCAD Basics AutoCAD Beginner AutoCAD Beginners AutoCAD Civil 3D AutoCAD Civil3D AutoCAD commands AutoCAD efficiency AutoCAD Expert Advice AutoCAD features AutoCAD File Management AutoCAD Layer AutoCAD Layers AutoCAD learning AutoCAD print settings AutoCAD productivity AutoCAD Teaching AutoCAD Techniques AutoCAD tips AutoCAD tools AutoCAD training. AutoCAD tricks AutoCAD Tutorial AutoCAD workflow AutoCAD Xref Autodesk Autodesk 2025 Autodesk 2026 Autodesk 3ds Max Autodesk AI Autodesk AI Tools Autodesk Alias Autodesk AutoCAD Autodesk BIM Autodesk BIM 360 Autodesk Certification Autodesk Civil 3D Autodesk Cloud Autodesk community forums Autodesk Construction Cloud Autodesk Docs Autodesk Dynamo Autodesk features Autodesk for Education Autodesk Forge Autodesk FormIt Autodesk Fusion Autodesk Fusion 360 Autodesk help Autodesk InfraWorks Autodesk Inventor Autodesk Inventor Frame Generator Autodesk Inventor iLogic Autodesk Knowledge Network Autodesk License Autodesk Maya Autodesk mistakes Autodesk Navisworks Autodesk news Autodesk plugins Autodesk productivity Autodesk Recap Autodesk resources Autodesk Revit Autodesk Software Autodesk support ecosystem Autodesk Takeoff Autodesk Tips Autodesk training Autodesk tutorials Autodesk update Autodesk Upgrade Autodesk Vault Autodesk Video Autodesk Viewer Automated Design Automation Automation Tutorial automotive design automotive visualization Backup Basic Commands Basics Batch Plot Beginner Beginner Tips beginner tutorial beginners guide Big Data BIM BIM 360 BIM Challenges BIM collaboration BIM Compliance BIM Coordination BIM Data BIM Design BIM Efficiency BIM for Infrastructure BIM Implementation BIM Library BIM Management BIM modeling BIM software BIM Standards BIM technology BIM tools BIM Trends BIM workflow Block Editor Block Management Block Organization Building Design Software Building Maintenance building modeling Building Systems Building Technology ByLayer CAD CAD API CAD assembly CAD Automation CAD Blocks CAD CAM CAD commands CAD comparison CAD Customization CAD Data Management CAD Design CAD errors CAD Evolution CAD File Size Reduction CAD Integration CAD Learning CAD line thickness CAD management CAD Migration CAD mistakes CAD modeling CAD Optimization CAD plugins CAD Productivity CAD Rendering CAD Security CAD Skills CAD software CAD software 2026 CAD software training CAD standards CAD technology CAD Tips CAD Tools CAD tricks CAD Tutorial CAD workflow CAM car design software Case Study CEO Guide CGI design Character Rig cinematic lighting Civil 3D Civil 3D hidden gems Civil 3D productivity Civil 3D tips civil design software civil engineering Civil engineering software Clash Detection Class-A surfacing clean CAD file cleaning command client engagement Cloud CAD Cloud Collaboration Cloud design platform Cloud Engineering Cloud Management Cloud Storage Cloud-First CNC CNC machining collaboration command abbreviations Complex Renovation concept car conceptual workflow Connected Design construction Construction Analytics Construction Automation Construction BIM Construction Cloud Construction Planning Construction Scheduling Construction Technology contractor tools Contractor Workflow Contraints corridor design Cost Effective Design cost estimation Create resizable blocks Creative Teams CTB STB Custom visual styles Cutting Parameters Cybersecurity Data Backup data management Data Protection Data Reference Data Security Data Shortcut Design Automation Design Career Design Collaboration Design Comparison Design Coordination design efficiency Design Engineering Design Hacks Design Innovation design optimization Design Options design productivity design review Design Rules design software design software tips Design Technology design tips Design Tools Design Workflow design-to-construction Designer Designer Tools Digital Art Digital Assets Digital Construction Digital Construction Technology Digital Content Digital Design Digital engineering digital fabrication Digital Manufacturing digital marketing digital takeoff Digital Thread Digital Tools Digital Transformation Digital Twin Digital Twins digital workflow dimension dimensioning Disaster Recovery drafting Drafting Efficiency Drafting Shortcuts Drafting Standards Drafting Tips Drawing Drawing Automation drawing tips Dref Dynamic Block Dynamic Block AutoCAD Dynamic Blocks Dynamic doors Dynamic windows Dynamo Dynamo automation early stage design eco design editing commands Electrical Systems Emerging Features Energy Analysis energy efficiency Engineering Engineering Automation engineering data Engineering Design Engineering Innovation Engineering Productivity Engineering Skills engineering software Engineering Technology engineering tools Engineering Tools 2025 Engineering Workflow Excel Export Workflow Express Tools External Reference facial animation Facial Rigging Facility Management Families Fast Structural Design Field Documentation File Optimization File Recovery Flame flange tips flat pattern Forge Development Forge Viewer FreeCAD Fusion 360 Fusion 360 API Fusion 360 tutorial Future of Design Future Skills Game Development Gamification Generative Design Geospatial Data GIS Global design teams global illumination grading optimization green building Green Technology Grips Handoff HDRI health check Healthcare Facilities heavy CAD file Heavy CAD Files heritage building conservation hidden commands Hospital Design HVAC HVAC Design Tools HVAC Engineering Hydraulic Modeling IK/FK iLogic Import Workflow Industry 4.0 Infrastructure infrastructure design Infrastructure Monitoring Infrastructure Planning Infrastructure Technology InfraWorks innovation Insight intelligent modeling Interactive Design interactive presentation Interior Design Inventor Inventor API Inventor Drawing Template Inventor Frame Generator Inventor Graphics Issues Inventor IDW Inventor Tips Inventor Tutorial IoT ISO 19650 joints Keyboard Shortcuts keyframe animation Keyframe generation Landscape Design Large Projects Laser Scan Layer Management Layer Organization Learn AutoCAD Legacy CAD Licensing light techniques Lighting and shading Lighting Techniques Linked Models Machine Learning Machine Learning in CAD Machine Optimization Machining Efficiency maintenance command Management manufacturing Manufacturing Innovation Manufacturing Technology Mapping Technology marketing visuals Material Creation Maya Maya character animation Maya lighting Maya Shader Maya Tips Maya tutorial measurement Mechanical Design Mechanical Engineering Media & Entertainment MEP Modeling Mesh-to-BIM Metal Structure modal analysis Model Management Model Optimization Modeling Secrets Modular Housing Motion capture motion graphics motion simulation MotionBuilder Multi Office Workflow Multi-User Environment multileader Navisworks Navisworks Best Practices Net Zero Design ObjectARX .NET API Open Source CAD Organization OVERKILL OVERKILL AutoCAD Page Setup Palette Parametric Components parametric design parametric family Parametric Modeling particle effects particle systems PDF PDM system Personal Brand Phasing PlanGrid Plot Settings Plot Style Plot Style AutoCAD Plotting Plugin Tutorial Plumbing Design point cloud Portfolio Post Construction Post-Processing Practice Drawing preconstruction workflow predictive analysis predictive animation Predictive Maintenance Predictive rigging Prefabrication Presentation-ready visuals Printing Printing Quality Procedural animation procedural motion Procedural Rig Procedural Textures Product Design Product Development product lifecycle product rendering Productivity productivity tools Professional 3D design Professional CAD Professional Drawings professional printing Professional Tips Project Documentation project efficiency project management Project Management Tools Project Visualization PTC Creo PURGE PURGE AutoCAD Rail Transit Rapid Prototyping realistic rendering ReCap Redshift Shader reduce CAD file size Render Render Passes Render Quality Render Settings Rendering rendering engine Rendering Engines Rendering Optimization rendering software Rendering Tips Rendering Workflow RenderMan Renewable Energy Renovation Project Renovation Workflow Reports Resizable Block restoration workflow Revit Revit add-ins Revit API Revit automation Revit Best Practices Revit Collaboration Revit Documentation Revit Family Revit integration Revit MEP Revit Performance Revit Phasing Revit Plugins Revit Scripting Revit skills Revit Standards Revit Template Revit Tips Revit tutorial Revit Workflow Ribbon Rigging robotics ROI Scale Autodesk Schedules screen Sculpting Secure Collaboration Sensor Data Shader Networks Sheet Metal Design Sheet Metal Tricks Sheet Set Manager shortcut keys Shortcuts Siemens NX Simulation simulation tools Sketch Sketching Tricks Small Firms Smart Architecture Smart Block Smart Building Design Smart City Smart Design Smart Engineering Smart Factory Smart Infrastructur Software Compliance software ecosystem Software Management Software Trends software troubleshooting Software Update Solar Energy Solar Panels SolidWorks Startup Design static stress Steel Structure Design Structural Optimization subscription model Subscription Value Surface Modeling sustainability sustainable design Sustainable Manufacturing system performance T-Spline team training guide Technical Drawing technical support Template Setup text style Texture Mapping Texturing thermal analysis Time Management time saving tools Title Blocks toolbar Toolpath Optimization Toolpaths Topography Troubleshooting Tutorial Tutorials urban planning User Interface (UI) UV Mapping UV Unwrap V-Ray Vault Best Practices Vault Lifecycle Vault Mistakes Vector Plotting vehicle modeling VFX Viewport configuration Virtual Environments virtual reality visual effects visualization workflow VR VR Tools VRED Water Infrastructure Water Management Weight Painting What’s New in Autodesk Wind Energy Wind Turbines Workbook workflow Workflow Automation workflow efficiency Workflow Optimization Workflow Tips Worksets Worksharing Workspace XLS Xref Xrefs เขียนแบบ