
AutoCAD is a CAD (Computer Aided Design or Computer Aided Drafting) software application for 2D and 3D design and drafting, developed and sold by Autodesk, Inc. Initially released in late 1982, AutoCAD was one of the first CAD programs to run on personal computers, and notably the IBM PC. Most CAD software at the time ran on graphics terminals connected to mainframe computers or mini-computers.
In earlier releases, AutoCAD used primitive entities — such as lines, polylines, circles, arcs, and text — as the foundation for more complex objects. Since the mid-1990s, AutoCAD has supported custom objects through its C++ API. Modern AutoCAD includes a full set of basic solid modeling and 3D tools. With the release of AutoCAD 2007 came improved 3D modeling functionality, which meant better navigation when working in 3D. Moreover, it became easier to edit 3D models. The mental ray engine was included in rendering, it was now possible to do quality renderings. AutoCAD 2010 introduced parametric functionality and mesh modeling.
AutoCAD supports a number of application programming interfaces (APIs) for customization and automation. These include AutoLISP, Visual LISP, VBA, .NET and ObjectARX. ObjectARX is a C++ class library, which was also the base for products extending AutoCAD functionality to specific fields, to create products such as AutoCAD Architecture, AutoCAD Electrical, AutoCAD Civil 3D, or third-party AutoCAD-based applications.
AutoCAD currently runs exclusively on Microsoft Windows desktop operating systems. It is available in 32-bit and in native 64-bit versions. Versions for Unix and Mac OS were released in the 1980s and 1990s, but these were later dropped. AutoCAD can run on an emulator or compatibility layer like VMware Workstation or Wine, albeit subject to various performance issues that can often arise when working with 3D objects or large drawings.
AutoCAD and AutoCAD LT are available for English, German, French, Italian, Spanish, Japanese, Korean, Chinese Simplified, Chinese Traditional, Russian, Czech, Polish, Hungarian, Brazilian Portuguese, Danish, Dutch, Swedish, Finnish, Norwegian and Vietnamese. The extent of localization varies from full translation of the product to documentation only. The AutoCAD command set is localized as a part of the software localization.
Source: https://en.wikipedia.org/wiki/AutoCAD
In earlier releases, AutoCAD used primitive entities — such as lines, polylines, circles, arcs, and text — as the foundation for more complex objects. Since the mid-1990s, AutoCAD has supported custom objects through its C++ API. Modern AutoCAD includes a full set of basic solid modeling and 3D tools. With the release of AutoCAD 2007 came improved 3D modeling functionality, which meant better navigation when working in 3D. Moreover, it became easier to edit 3D models. The mental ray engine was included in rendering, it was now possible to do quality renderings. AutoCAD 2010 introduced parametric functionality and mesh modeling.
AutoCAD supports a number of application programming interfaces (APIs) for customization and automation. These include AutoLISP, Visual LISP, VBA, .NET and ObjectARX. ObjectARX is a C++ class library, which was also the base for products extending AutoCAD functionality to specific fields, to create products such as AutoCAD Architecture, AutoCAD Electrical, AutoCAD Civil 3D, or third-party AutoCAD-based applications.
AutoCAD currently runs exclusively on Microsoft Windows desktop operating systems. It is available in 32-bit and in native 64-bit versions. Versions for Unix and Mac OS were released in the 1980s and 1990s, but these were later dropped. AutoCAD can run on an emulator or compatibility layer like VMware Workstation or Wine, albeit subject to various performance issues that can often arise when working with 3D objects or large drawings.
AutoCAD and AutoCAD LT are available for English, German, French, Italian, Spanish, Japanese, Korean, Chinese Simplified, Chinese Traditional, Russian, Czech, Polish, Hungarian, Brazilian Portuguese, Danish, Dutch, Swedish, Finnish, Norwegian and Vietnamese. The extent of localization varies from full translation of the product to documentation only. The AutoCAD command set is localized as a part of the software localization.
Source: https://en.wikipedia.org/wiki/AutoCAD

In software development, a domain-specific language (DSL) is a programming language or specification language dedicated to a particular problem domain, a particular problem representation technique, and/or a particular solution technique. The concept isn't new—special-purpose programming languages and all kinds of modeling/specification languages have always existed, but the term has become more popular due to the rise of domain-specific modeling.The opposite is:a general-purpose programming language, such as C or Java, or a general-purpose modeling language such as the Unified Modeling Language (UML). Examples of domain-specific languages include spreadsheet formulas and macros, YACC grammars for creating parsers, regular expressions for specifying lexers, the Generic Eclipse Modeling System for creating diagramming languages, Csound, a language for digital synthesis, and the input languages of GraphViz and GrGen, software packages used for graph layout and graph rewriting.Creating a domain-specific language (with software to support it) can be worthwhile if the language allows a particular type of problems or solutions to them to be expressed more clearly than pre-existing languages would allow, and the type of problem in question reappears sufficiently often. Language Oriented Programming considers the creation of special-purpose languages for expressing problems a standard part of the problem solving process.


