home *** CD-ROM | disk | FTP | other *** search
/ gondwana.ecr.mu.oz.au/pub/ / Graphics.tar / Graphics / graphics.formats / DXF.ascii.Z / DXF.ascii
Internet Message Format  |  1991-09-24  |  81KB

  1. From thinman@netcom.com Thu Jul 11 21:51:51 1991
  2. X-Mailer: Mail User's Shell (7.2.3 5/22/91)
  3. To: koziol@ncsa.uiuc.edu (Quincey Koziol)
  4. Subject: Re: DXF format
  5.  
  6. Here is the format description:
  7.  
  8. [ This file is an excerpt from the AutoCAD Release 10 Reference Manual.
  9.   Copyright (C) 1988 Autodesk, Inc.  All rights reserved. ]
  10.  
  11.                                Appendix C
  12.                    Drawing Interchange and File Formats
  13.  
  14.  
  15. AutoCAD can be used by itself as a complete drawing editor.  In some appli-
  16. cations, however, other programs must examine drawings created by AutoCAD
  17. or generate drawings to be viewed, modified, or plotted with AutoCAD.
  18.  
  19. For example, if you've made an architectural drawing with AutoCAD, using
  20. INSERTed parts to represent windows, doors, and so on, you can process the
  21. drawing file and produce a bill of materials of all the items used in the
  22. drawing, or even make energy use calculations based on the area and the
  23. number and type of windows used.  Another possible application is to use
  24. AutoCAD to describe structures that are then sent to a large computer for
  25. finite element structural analysis.  You can compute stresses and displace-
  26. ments and send back information to display the deformed structure as an
  27. AutoCAD drawing.
  28.  
  29. Since the AutoCAD drawing database (.dwg file) is written in a very compact
  30. format that changes significantly from time to time as new features are
  31. added, we do not document its format and do not recommend that you attempt
  32. to write programs to read it directly.  To assist in interchanging drawings
  33. between AutoCAD and other programs, a "Drawing Interchange" file format
  34. (DXF(tm)) has been defined.  All implementations of AutoCAD accept this
  35. format and are able to convert it to and from their internal drawing file
  36. representation.
  37.  
  38. AutoCAD also supports the Initial Graphics Exchange Standard (IGES) file
  39. format.  The information comprising an AutoCAD drawing can be written out
  40. in IGES format, and IGES files can be read and converted to AutoCAD's
  41. internal format.
  42.  
  43.  
  44. C.1  ASCII Drawing Interchange (DXF) Files
  45.  
  46. This section describes AutoCAD's DXF (drawing interchange) file format and
  47. the commands provided to read and write these files.  DXF files are stan-
  48. dard ASCII text files.  They can easily be translated to the formats of
  49. other CAD systems, or submitted to other programs for specialized analysis.
  50.  
  51.  
  52. C.1.1  DXFOUT Command - Writing a DXF File
  53.  
  54. You can generate a drawing interchange file from an existing drawing by
  55. means of the Drawing Editor's DXFOUT command.  The command format is:
  56.  
  57.     Command:  DXFOUT   File name <default>:  (name or RETURN)
  58.  
  59. The default name for the output file is the same as that of the current
  60. drawing, but with a file type of ".dxf".  If you specify an explicit file
  61. name, do not include a file type; ".dxf" is assumed.  If a file with the
  62. same name already exists, it is deleted.  Next, DXFOUT asks what precision
  63.  
  64.                                                                           1
  65. AutoCAD Reference Manual
  66.  
  67. you want for floating-point numbers and permits output of a partial DXF
  68. file containing only selected objects.
  69.  
  70.     Enter decimal places of accuracy (0 to 16)/Entities/Binary <6>:
  71.  
  72. The "Binary" option is described later in this appendix. If you respond
  73. with "Entities" (or just "E"), DXFOUT will ask you to select the objects
  74. you want written to the DXF file.  Only the objects you select will be
  75. included in the output file - symbol tables (including Block Definitions)
  76. will not be included.  Once you've selected the desired objects, AutoCAD
  77. will prompt again for the numeric precision:
  78.  
  79.     Enter decimal places of accuracy (0 to 16)/Binary <6>:
  80.  
  81.  
  82. C.1.2  DXFIN Command - Loading a DXF File
  83.  
  84. A drawing interchange file can be converted into an AutoCAD drawing by
  85. means of the DXFIN command.  First enter the Drawing Editor using the
  86. "Create new drawing" task from the Main Menu.  Then issue the DXFIN com-
  87. mand.
  88.  
  89.     Command:  DXFIN   File name:  (name)
  90.  
  91. Enter the name of the drawing interchange file to be loaded.
  92.  
  93.  
  94. Full DXFIN
  95.  
  96. To load a complete DXF file, you must use DXFIN in an empty drawing, before
  97. any entities have been drawn and before any additional Block definitions,
  98. layers, linetypes, text styles, named views, named coordinate systems, or
  99. named viewport configurations have been created.  (If your prototype draw-
  100. ing contains any such items, use Main Menu Task 1's "name=" technique to
  101. create a new drawing without a prototype.)
  102.  
  103. If any errors are detected during the input, the new drawing is discarded.
  104. Otherwise, an automatic "ZOOM All" is performed to set the drawing extents.
  105.  
  106.  
  107. Partial DXFIN
  108.  
  109. If the current drawing is not empty, DXFIN loads only the ENTITIES section
  110. of the DXF file, adding the entities found there to the current drawing.
  111. In this case, DXFIN displays the message:
  112.  
  113.     Not a new drawing -- only ENTITIES section will be input.
  114.  
  115. If errors are detected during such partial DXF input, the drawing is
  116. returned to the state it was in before the DXFIN command.  Otherwise, the
  117. newly added entities are drawn.
  118.  
  119.  
  120.  
  121. 2
  122.                                    (C) Drawing Interchange and File Formats
  123.  
  124. C.1.3  DXF File Format
  125.  
  126. This section describes the format of a DXF file in detail.  It contains a
  127. great deal of technical information that you need only if you're writing
  128. your own program to process DXF files.  Otherwise, you can skip this sec-
  129. tion.
  130.  
  131. It would probably be helpful to produce a DXF file from a small drawing,
  132. print it out, and refer to it occasionally while reading the information
  133. presented below.
  134.  
  135.  
  136. C.1.3.1  General File Structure
  137.  
  138. A Drawing Interchange File is simply an ASCII text file with a file type of
  139. ".dxf" and specially-formatted text.  The overall organization of a DXF
  140. file is as follows:
  141.  
  142.   1. HEADER section - General information about the drawing is found in
  143.      this section of the DXF file.  Each parameter has a variable name
  144.      and an associated value.
  145.  
  146.   2. TABLES section -- This section contains definitions of named
  147.      items.
  148.  
  149.        o  Linetype (LTYPE) table
  150.        o  Layer table
  151.        o  Text style (STYLE) table
  152.        o  View table
  153.        o  User Coordinate System (UCS) table
  154.        o  Viewport configuration (VPORT) table
  155.        o  Drawing manager (DWGMGR) table (for future use)
  156.  
  157.   3. BLOCKS section - This section contains Block Definition entities
  158.      describing the entities comprising each Block in the drawing.
  159.  
  160.   4. ENTITIES section - This section contains the drawing entities,
  161.      including any Block References.
  162.  
  163.   5. END OF FILE
  164.  
  165. If you use DXFOUT's "Entities" option, the resulting DXF file will contain
  166. only the ENTITIES and END OF FILE sections, and the ENTITIES section will
  167. reflect only the objects you select for output.
  168.  
  169. A DXF file is composed of a multiplicity of groups, each of which occupies
  170. two lines in the DXF file.  The first line of a group is a group code,
  171. which is a positive nonzero integer output in FORTRAN "I3" format (that is,
  172. right justified and blank filled in a three character field).  The second
  173. line of the group is the group value, in a format which depends on the type
  174. of the group as specified by the group code.
  175.  
  176.  
  177.  
  178.                                                                           3
  179. AutoCAD Reference Manual
  180.  
  181. The specific assignment of group codes depends upon the item being
  182. described in the file.  However, the type of the value this group supplies
  183. is derived from the group code in the following way:
  184.  
  185.                     Group code range   Following value
  186.                           0 - 9       String
  187.                          10 - 59      Floating-point
  188.                          60 - 79      Integer
  189.                         210 - 239     Floating-point
  190.                            999        Comment (string)
  191.  
  192. Thus a program can easily read the value following a group code without
  193. knowing the particular use of this group in an item in the file.  The
  194. appearance of values in the DXF file is not affected by the setting of the
  195. UNITS command: coordinates are always represented as decimal (or possibly
  196. scientific notation if very large) numbers, and angles are always repre-
  197. sented in decimal degrees with zero degrees to the east of origin.
  198.  
  199. Variables, table entries, and entities are described by a group that intro-
  200. duces the item, giving its type and/or name, followed by multiple groups
  201. that supply the values associated with the item.  In addition, special
  202. groups are used for file separators such as markers for the beginning and
  203. end of sections, tables, and the file itself.
  204.  
  205. Entities, table entries, and file separators are always introduced with a 0
  206. group code that is followed by a name describing the item.
  207.  
  208.  
  209. C.1.3.2  Group Codes
  210.  
  211. Group codes are used both to indicate the type of the value of the group,
  212. as explained above, and to indicate the general use of the group.  The spe-
  213. cific function of the group code depends on the actual variable, table
  214. item, or entity description.  This section indicates the general use of
  215. groups, noting as "(fixed)" any that always have the same function.
  216.  
  217.    Group code                           Value type
  218.        0        Identifies the start of an entity, table entry, or file
  219.                 separator.  The text value that follows indicates which.
  220.        1        The primary text value for an entity.
  221.        2        A name; Attribute tag, Block name, etc.
  222.       3-4       Other textual or name values.
  223.        5        Entity handle expressed as a hexadecimal string.
  224.        6        Line type name (fixed).
  225.        7        Text style name (fixed).
  226.        8        Layer name (fixed).
  227.        9        Variable name identifier (used only in HEADER section of
  228.                 the DXF file).
  229.        10       Primary X coordinate (start point of a Line or Text
  230.                 entity, center of a Circle, etc.).
  231.      11-18      Other X coordinates.
  232.                                                              continued ...
  233.  
  234.  
  235. 4
  236.                                    (C) Drawing Interchange and File Formats
  237.  
  238.    Group code                           Value type
  239.        20       Primary Y coordinate.  2n values always correspond to 1n
  240.                 values and immediately follow them in the file.
  241.      21-28      Other Y coordinates.
  242.        30       Primary Z coordinate.  3n values always correspond to 1n
  243.                 and 2n values and immediately follow them in the file.
  244.      31-37      Other Z coordinates.
  245.        38       This entity's elevation if nonzero (fixed).  Output only
  246.                 if system variable FLATLAND is set to 1.
  247.        39       This entity's thickness if nonzero (fixed).
  248.      40-48      Floating-point values (text height, scale factors, etc.).
  249.        49       Repeated value - multiple 49 groups may appear in one
  250.                 entity for variable length tables (such as the dash
  251.                 lengths in the LTYPE table).  A 7x group always appears
  252.                 before the first 49 group to specify the table length.
  253.      50-58      Angles.
  254.        62       Color number (fixed).
  255.        66       "Entities follow" flag (fixed).
  256.      70-78      Integer values, such as repeat counts, flag bits, or
  257.                 modes.
  258.  210, 220, 230  X, Y, and Z components of extrusion direction.
  259.       999       Comments
  260.  
  261.  
  262. C.1.4  Comments
  263.  
  264. The 999 group code indicates that the following line is a comment string.
  265. DXFOUT does not currently include such groups in its output file, but DXFIN
  266. honors them and ignores the comments.  Thus, you can use the 999 group to
  267. include comments in a DXF file you've edited.  For example:
  268.  
  269.     999
  270.     This is a comment.
  271.     999
  272.     This is another comment.
  273.  
  274.  
  275. C.1.5  File Sections
  276.  
  277. The DXF file is subdivided into four sections.  File separator groups are
  278. used to delimit these file sections.  The following is an example of a void
  279. DXF file with only the section markers and table headers present.
  280.  
  281.       0                           (Begin HEADER section)
  282.     SECTION
  283.       2
  284.     HEADER
  285.         <<<<Header variable items go here>>>>
  286.       0
  287.     ENDSEC                        (End HEADER section)
  288.       0                           (Begin TABLES section)
  289.     SECTION
  290.       2
  291.  
  292.                                                                           5
  293. AutoCAD Reference Manual
  294.  
  295.     TABLES
  296.       0
  297.     TABLE
  298.       2
  299.     VPORT
  300.      70
  301.     (viewport table maximum item count)
  302.         <<<<viewport table items go here>>>>
  303.       0
  304.     ENDTAB
  305.       0
  306.     TABLE
  307.       2
  308.     LTYPE, LAYER, STYLE, VIEW, UCS, or DWGMGR
  309.      70
  310.     (Table maximum item count)
  311.         <<<<Table items go here>>>>
  312.       0
  313.     ENDTAB
  314.       0
  315.     ENDSEC                        (End TABLES section)
  316.       0                           (Begin BLOCKS section)
  317.     SECTION
  318.       2
  319.     BLOCKS
  320.         <<<<Block definition entities go here>>>>
  321.       0
  322.     ENDSEC                        (End BLOCKS section)
  323.       0                           (Begin ENTITIES section)
  324.     SECTION
  325.       2
  326.     ENTITIES
  327.         <<<<Drawing entities go here>>>>
  328.       0
  329.     ENDSEC                        (End ENTITIES section)
  330.       0
  331.     EOF                           (End of file)
  332.  
  333.  
  334. C.1.5.1  HEADER Section
  335.  
  336. The HEADER section of the DXF file contains settings of variables
  337. associated with the drawing.  These variables are set with various commands
  338. and are the type of information displayed by the STATUS command.  Each
  339. variable is specified in the header section by a 9 group giving its name,
  340. followed by groups that supply its value.  The header variables, the groups
  341. that follow, and their meanings are listed below.
  342.  
  343. Although this list is very similar to the list of system variables in
  344. Appendix A, the two lists are not identical.  Be sure you're referring to
  345. the proper list.
  346.  
  347.  
  348.  
  349. 6
  350.                                    (C) Drawing Interchange and File Formats
  351.  
  352.   $ACADVER       1     the AutoCAD drawing database version number.
  353.   $ANGBASE      50     Angle 0 direction.
  354.   $ANGDIR       70     1=clockwise angles, 0=counterclockwise.
  355.   $ATTDIA       70     Attribute entry dialogues, 1 = on, 0 = off
  356.   $ATTMODE      70     Attribute visibility: 0=none, 1=normal, 2=all.
  357.   $ATTREQ       70     Attribute prompting during INSERT, 1 = on, 0 = off
  358.   $AUNITS       70     UNITS format for angles.
  359.   $AUPREC       70     UNITS precision for angles.
  360.   $AXISMODE     70     axis on if nonzero.
  361.   $AXISUNIT   10,20    axis X and Y tick spacing.
  362.   $BLIPMODE     70     blip mode on if nonzero.
  363.   $CECOLOR      62     entity color number; 0 = BYBLOCK, 256 = BYLAYER.
  364.   $CELTYPE       6     entity linetype name, or BYBLOCK or BYLAYER.
  365.   $CHAMFERA     40     first chamfer distance.
  366.   $CHAMFERB     40     second chamfer distance.
  367.   $CLAYER        8     current layer name.
  368.   $COORDS       70     0=static coordinate display, 1=continuous update,
  369.                        2="d<a" format.
  370.   $DIMALT       70     alternate unit dimensioning performed if nonzero.
  371.   $DIMALTD      70     alternate unit decimal places.
  372.   $DIMALTF      40     alternate unit scale factor.
  373.   $DIMAPOST      1     alternate dimensioning suffix
  374.   $DIMASO       70     1=create associative dimensioning, 0=draw
  375.                        individual entities.
  376.   $DIMASZ       40     dimensioning arrow size.
  377.   $DIMBLK        2     arrow block name.
  378.   $DIMBLK1       1     first arrow block name.
  379.   $DIMBLK2       1     second arrow block name.
  380.   $DIMCEN       40     size of center mark/lines.
  381.   $DIMDLE       40     dimension line extension.
  382.   $DIMDLI       40     dimension line increment.
  383.   $DIMEXE       40     extension line extension.
  384.   $DIMEXO       40     extension line offset.
  385.   $DIMLFAC      40     linear measurements scale factor.
  386.   $DIMLIM       70     dimension limits generated if nonzero.
  387.   $DIMPOST       1     general dimensioning suffix
  388.   $DIMRND       40     rounding value for dimension distances.
  389.   $DIMSAH       70     use separate arrow blocks if nonzero.
  390.   $DIMSCALE     40     overall dimensioning scale factor.
  391.   $DIMSE1       70     first extension line suppressed if nonzero.
  392.   $DIMSE2       70     second extension line suppressed if nonzero.
  393.   $DIMSHO       70     1=Recompute dimensions while dragging,
  394.                        0=drag original image.
  395.   $DIMSOXD      70     suppress outside-extensions dimension lines
  396.                        if nonzero.
  397.   $DIMTAD       70     text above dimension line if nonzero.
  398.   $DIMTIH       70     text inside horizontal if nonzero.
  399.   $DIMTIX       70     force text inside extensions if nonzero.
  400.   $DIMTM        40     minus tolerance.
  401.   $DIMTOFL      70     if text outside extensions, force line between
  402.                        extensions if nonzero.
  403.   $DIMTOH       70     text outside horizontal if nonzero.
  404.  
  405.  
  406.                                                                           7
  407. AutoCAD Reference Manual
  408.  
  409.   $DIMTOL       70     dimension tolerances generated if nonzero.
  410.   $DIMTP        40     plus tolerance.
  411.   $DIMTSZ       40     dimensioning tick size: 0=no ticks.
  412.   $DIMTVP       40     text vertical position.
  413.   $DIMTXT       40     dimensioning text height.
  414.   $DIMZIN       70     zero suppression for "feet & inch" dimensions.
  415.   $DRAGMODE     70     0=off, 1=on, 2=auto.
  416.   $ELEVATION    40     current elevation set by ELEV command.
  417.   $EXTMAX    10,20,30  XY drawing extents upper right corner (in WCS).
  418.   $EXTMIN    10,20,30  XY drawing extents lower left corner (in WCS).
  419.   $FILLETRAD    40     fillet radius.
  420.   $FILLMODE     70     FILL mode on if nonzero.
  421.   $FLATLAND     70     force compatibility with older versions if nonzero.
  422.   $HANDLING     70     handles enabled if nonzero.
  423.   $HANDSEED      5     next available handle.
  424.   $INSBASE   10,20,30  insertion base set by BASE command (in WCS).
  425.   $LIMCHECK     70     nonzero if limits checking is on.
  426.   $LIMMAX     10,20    XY drawing limits upper right corner (in WCS).
  427.   $LIMMIN     10,20    XY drawing limits lower left corner (in WCS).
  428.   $LTSCALE      40     global linetype scale.
  429.   $LUNITS       70     UNITS format for coordinates and distances.
  430.   $LUPREC       70     UNITS precision for coordinates and distances.
  431.   $MENU          1     name of menu file.
  432.   $MIRRTEXT     70     MIRROR text if nonzero.
  433.   $ORTHOMODE    70     ORTHO mode on if nonzero.
  434.   $OSMODE       70     running object snap modes.
  435.   $PDMODE       70     point display mode.
  436.   $PDSIZE       40     point display size.
  437.   $PLINEWID     40     default Polyline width.
  438.   $QTEXTMODE    70     quick text mode on if nonzero.
  439.   $REGENMODE    70     REGENAUTO mode on if nonzero.
  440.   $SKETCHINC    40     sketch record increment.
  441.   $SKPOLY       70     0=sketch lines, 1=sketch polylines.
  442.   $SPLFRAME     70     spline control polygon display, 1 = on, 0 = off.
  443.   $SPLINESEGS   70     number of line segments per spline patch.
  444.   $SPLINETYPE   70     spline curve type for "PEDIT Spline"
  445.                        (see Appendix A).
  446.   $SURFTAB1     70     number of mesh tabulations in first direction.
  447.   $SURFTAB2     70     number of mesh tabulations in second direction.
  448.   $SURFTYPE     70     surface type for "PEDIT Smooth" (see Appendix A).
  449.   $SURFU        70     surface density (for "PEDIT Smooth") in M direction.
  450.   $SURFV        70     surface density (for "PEDIT Smooth") in N direction.
  451.   $TDCREATE     40     date/time of drawing creation.
  452.   $TDINDWG      40     cumulative editing time for this drawing.
  453.   $TDUPDATE     40     date/time of last drawing update.
  454.   $TDUSRTIMER   40     user elapsed timer.
  455.   $TEXTSIZE     40     default text height.
  456.   $TEXTSTYLE     7     current text style name.
  457.   $THICKNESS    40     current thickness set by ELEV command.
  458.   $TRACEWID     40     default Trace width.
  459.   $UCSNAME       1     Name of current UCS.
  460.   $UCSORG    10,20,30  origin of current UCS (in WCS).
  461.  
  462.  
  463. 8
  464.                                    (C) Drawing Interchange and File Formats
  465.  
  466.   $UCSXDIR   10,20,30  direction of current UCS's X axis
  467.                        (in World coordinates).
  468.   $UCSYDIR   10,20,30  direction of current UCS's Y axis
  469.                        (in World coordinates).
  470.   $USERI1 - 5   70     Five integer variables intended for use by
  471.                        third-party developers.
  472.   $USERR1 - 5   40     Five real variables intended for use by
  473.                        third-party developers.
  474.   $USRTIMER     70     0=timer off, 1=timer on.
  475.   $WORLDVIEW    70     1=set UCS to WCS during DVIEW/VPOINT,
  476.                        0=don't change UCS
  477.  
  478. The header variables listed below existed prior to AutoCAD Release 10 but
  479. now have independent settings for each active viewport.  They are not
  480. output by DXFOUT unless system variable FLATLAND is set to 1.  DXFIN honors
  481. these variables when read from DXF files, but if a VPORT symbol table with
  482. "*ACTIVE" entries is present (as is true for any DXF file produced by
  483. Release 10 or higher), the values in the VPORT table entries will override
  484. the values of these header variables.
  485.  
  486.   $FASTZOOM     70     fast zoom enabled if nonzero.
  487.   $GRIDMODE     70     grid mode on if nonzero.
  488.   $GRIDUNIT   10,20    grid X and Y spacing.
  489.   $SNAPANG      50     snap grid rotation angle.
  490.   $SNAPBASE   10,20    snap/grid base point (in UCS).
  491.   $SNAPISOPAIR  70     isometric plane: 0=left, 1=top, 2=right.
  492.   $SNAPMODE     70     snap mode on if nonzero.
  493.   $SNAPSTYLE    70     snap style: 0=standard, 1=isometric.
  494.   $SNAPUNIT   10,20    snap grid X and Y spacing.
  495.   $VIEWCTR    10,20    XY center of current view on screen.
  496.   $VIEWDIR   10,20,30  viewing direction (direction from target, in WCS).
  497.   $VIEWSIZE     40     height of view.
  498.  
  499. The date/time variables ($TDCREATE and $TDUPDATE) are output as real num-
  500. bers in the format:
  501.  
  502.     <Julian date>.<Fraction>
  503.  
  504. The elapsed time variables ($TDINDWG and $TDUSRTIMER) have a similar
  505. format:
  506.  
  507.     <Number of days>.<Fraction>
  508.  
  509.  
  510. C.1.5.2  TABLES Section
  511.  
  512. The TABLES section contains several tables, each of which in turn contains
  513. a variable number of table entries. The order of the tables may change, but
  514. the LTYPE table will always precede the LAYER table.  Each table is intro-
  515. duced with a 0 group with the label "TABLE".  This is followed by a 2 group
  516. identifying the particular table (VPORT, LTYPE, LAYER, STYLE, VIEW, UCS, or
  517. DWGMGR) and a 70 group that specifies the maximum number of table entries
  518.  
  519.                                                                           9
  520. AutoCAD Reference Manual
  521.  
  522. that may follow. The tables in a drawing may contain deleted items, but
  523. these are not written to the DXF file.  Thus, fewer table entries may
  524. follow the table header than are indicated by the 70 group, so don't use
  525. the count in the 70 group as an index to read in the table.  It is provided
  526. so that your program to read DXF files can allocate an array in advance
  527. large enough to hold all the table entries that follow.
  528.  
  529. Following this header for each table are the table entries.  Each table
  530. item consists of a 0 group identifying the item type (same as table name,
  531. e.g., "LTYPE" or "LAYER"), a 2 group giving the name of the table entry, a
  532. 70 group specifying flags relevant to the table entry (defined for each
  533. table below), and additional groups that give the value of the table entry.
  534. The end of each table is indicated by a 0 group with the value "ENDTAB".
  535.  
  536. If any table entry has bit value 64 set in its group 70 flags, the table
  537. entry was referenced by at least one entity in the drawing the last time
  538. the drawing editor was entered to edit this drawing.  This "referenced"
  539. flag is for the benefit of the PURGE command; it can be ignored by most
  540. programs that read DXF files, and need not be set by programs that write
  541. DXF files.
  542.  
  543. The following are the groups used for each type of table item.  All groups
  544. are present for each table item.
  545.  
  546.   LTYPE    3 (descriptive text for linetype), 72 (alignment code), 73
  547.            (number of dash length items), 40 (total pattern length), 49
  548.            (dash length 1), 49 (dash length 2), . . .
  549.  
  550.   LAYER    62 (color number, negative if layer is off), 6 (linetype
  551.            name).  The 1 bit is set in the 70 group flags if the layer is
  552.            frozen.
  553.  
  554.   STYLE    40 (fixed text height; 0 if not fixed), 41 (width factor), 50
  555.            (obliquing angle), 71 (text generation flags), 42 (last height
  556.            used), 3 (primary font file name), 4 ("bigfont" file name;
  557.            blank if none).  If the third bit (4) is set in the 70 group
  558.            flags, this is a vertically-oriented text style.
  559.  
  560.            A STYLE table item is used to record shape file LOAD requests
  561.            also.  In this case the first bit (1) is set in the 70 group
  562.            flags and only the 3 group (shape file name) is meaningful
  563.            (all the other groups are output, however).
  564.  
  565.            The "text generation flags" are a bit-coded field with the
  566.            following bit meanings:
  567.  
  568.                 Flag bit value                Meaning
  569.                        2        Text is backwards (mirrored in X)
  570.                        4        Text is upside down (mirrored in Y)
  571.  
  572.  
  573.  
  574.  
  575.  
  576. 10
  577.                                    (C) Drawing Interchange and File Formats
  578.  
  579.   VIEW     40 and 41 (view height and width), 10 and 20 (view center
  580.            point), 11, 21, 31 (view direction from target, in WCS), 12,
  581.            22, 32 (target point, in WCS), 42 (lens length), 43 and 44
  582.            (front and back clipping planes-offsets from target point), 50
  583.            (twist angle), 71 view mode (see VIEWMODE system variable
  584.            Appendix A).
  585.  
  586.   UCS      10, 20, 30 (origin), 11, 21, 31 (X axis direction), 12, 22, 32
  587.            (Y axis direction).  All in World coordinates.
  588.  
  589.   VPORT    10 and 20 (lower left corner of viewport; 0.0 to 1.0), 11 and
  590.            21 (upper right corner), 12 and 22 (view center point), 13 and
  591.            23 (snap base point), 14 and 24 (snap spacing, X and Y), 15
  592.            and 25 (grid spacing, X and Y), 16, 26, 36 (view direction
  593.            from target point), 17, 27, 37 (view target point), 40 (view
  594.            height), 41 (viewport aspect ratio), 42 (lens length), 43 and
  595.            44 (front and back clipping planes; offsets from target
  596.            point), 50 (snap rotation angle), 51 (view twist angle), 71
  597.            (view mode; see VIEWMODE system variable in Appendix A), 72
  598.            (circle zoom percent), 73 (fast zoom setting), 74 (UCSICON
  599.            setting), 75 (snap on/off), 76 (grid on/off), 77 (snap style),
  600.            78 (snap isopair).
  601.  
  602.            The VPORT table is unique in that it may contain several
  603.            entries with the same name (indicating a multiple-viewport
  604.            configuration).  The entries corresponding to the active view-
  605.            port configuration all have the name "*ACTIVE".  The first
  606.            such entry describes the current viewport.
  607.  
  608.   DWGMGR   For future use.  Fields not yet defined.
  609.  
  610.  
  611. C.1.5.3  BLOCKS Section
  612.  
  613. The BLOCKS section of the DXF file contains all the Block Definitions.
  614. This section contains the entities that make up the Blocks used in the
  615. drawing, including "anonymous" Blocks generated by the HATCH command and by
  616. associative dimensioning.  The format of the entities in this section is
  617. identical to those in the ENTITIES section described below, so refer to
  618. that section for details.  All entities in the BLOCKS section appear
  619. between BLOCK and ENDBLK entities.  BLOCK and ENDBLK entities appear only
  620. in the BLOCKS section.  Block definitions are never nested (that is, no
  621. BLOCK or ENDBLK entity ever appears within another BLOCK-ENDBLK pair).
  622.  
  623.  
  624. C.1.5.4  ENTITIES Section
  625.  
  626. Entity items appear in both the BLOCK and ENTITIES sections of the DXF
  627. file.  The appearance of entities in the two sections is identical, with
  628. the exception that entities in the BLOCK section never have handles. The
  629. following gives the format of each entity as it appears in the file.  Some
  630. groups that define an entity always appear, and some are optional and
  631. appear only if they differ from their default values.  In the following
  632.  
  633.                                                                          11
  634. AutoCAD Reference Manual
  635.  
  636. discussion, groups that always occur are given by their group number and
  637. function, while optional groups are indicated by "-optional N" following
  638. the group description.  "N" is the default value if the group is omitted.
  639.  
  640. Programs that read DXF files should not assume that the groups describing
  641. an entity occur in the order given here.  The end of the groups that make
  642. up an entity is indicated by the next 0 group, beginning the next entity or
  643. indicating the end of the section.
  644.  
  645. Remember that a DXF file is a complete representation of the drawing data-
  646. base, and that as AutoCAD is further enhanced, new groups will be added to
  647. entities to accommodate additional features.  Writing your DXF processing
  648. program in a table-driven way, making no assumptions about the order of
  649. groups in an entity, and ignoring any groups not presently defined, will
  650. make it much easier to accommodate DXF files from future releases of
  651. AutoCAD.
  652.  
  653. Each entity begins with a 0 group identifying the entity type.  The names
  654. used for the entities are given in the table that follows.  Every entity
  655. contains an 8 group that gives the name of the layer on which the entity
  656. resides.  Each entity may have elevation, thickness, linetype, or color
  657. information associated with it. If handles are enabled, every entity has a
  658. 5 group containing its handle (as a string representing a hexadecimal
  659. number). The following groups are included only if the entity has nonde-
  660. fault values for these properties.
  661.  
  662.   Group code                         Meaning
  663.        6      Linetype name (if not "BYLAYER").  The special name "BYBLOCK"
  664.               indicates a floating linetype.
  665.  
  666.       38      Elevation (if nonzero).  Output only if system variable
  667.               FLATLAND is 1.  Otherwise, Z coordinates are supplied as
  668.               3x-groups as part of each of the entity's defining points.
  669.  
  670.       39      Thickness (if nonzero).
  671.  
  672.       62      Color number (if not "BYLAYER").  Zero indicates the
  673.               "BYBLOCK" (floating) color.
  674.  
  675.      210,     These groups are included for each Line, Point, Circle, Shape,
  676.      220,     Text, Arc, Trace, Solid, Block Reference, Polyline, Dimension,
  677.      230      Attribute, and Attribute Definition entity if its extrusion
  678.               direction is not parallel to the World Z axis.  The indicate
  679.               the X, Y, and Z components of the entity's extrusion direction.
  680.  
  681. The rest of the groups that make up an entity item are described below.
  682. Many of the entities include "flag" groups.  These are integer codes (6x or
  683. 7x groups) that encode various pieces of information regarding the entity,
  684. and are specific to the particular entity type.  In the following descrip-
  685. tions, the term "bit-coded" means that the flag contains various true/false
  686. values coded as the sum of the bit values given.  Any bits not defined in
  687. the following section should be ignored in these fields and set to zero
  688. when constructing a DXF file.
  689.  
  690. 12
  691.                                    (C) Drawing Interchange and File Formats
  692.  
  693.   LINE      10, 20, 30 (start point), 11, 21, 31 (end point).
  694.  
  695.   POINT     10, 20, 30 (point), 50 (angle of X axis for the UCS in effect
  696.             when the Point was drawn -optional 0, for use when PDMODE is
  697.             nonzero).
  698.  
  699.   CIRCLE    10, 20, 30 (center), 40 (radius).
  700.  
  701.   ARC       10, 20, 30 (center), 40 (radius), 50 (start angle), 51 (end
  702.             angle).
  703.  
  704.   TRACE     Four points defining the corners of the trace: (10, 20, 30),
  705.             (11, 21, 31), (12, 22, 32), and (13, 23, 33).
  706.  
  707.   SOLID     Four points defining the corners of the solid: (10, 20, 30),
  708.             (11, 21, 31), (12, 22, 32), and (13, 23, 33).  If only three
  709.             points were entered (forming a triangular solid), the third
  710.             and fourth points will be the same.
  711.  
  712.   TEXT      10, 20, 30 (insertion point), 40 (height), 1 (text value), 50
  713.             (rotation angle -optional 0), 41 (relative X scale factor
  714.             -optional 1), 51 (obliquing angle -optional 0), 7 (text style
  715.             name -optional "STANDARD"), 71 (text generation flags
  716.             -optional 0), 72 (justification type -optional 0), 11, 21, 31
  717.             (alignment point -optional, appears only if 72 group is
  718.             present and nonzero).
  719.  
  720.             The "text generation flags" are a bit-coded field with mean-
  721.             ings as follows:
  722.  
  723.                  Flag bit value                Meaning
  724.                        2         Text is backwards (mirrored in X)
  725.                        4         Text is upside down (mirrored in Y)
  726.  
  727.             The "justification type" value (not bit-coded) indicates the
  728.             text justification style used on this entity, as shown in the
  729.             following table.
  730.  
  731.               Value                       Meaning
  732.                 0    Text is left justified
  733.                 1    Text is centered along its baseline
  734.                 2    Text is right justified
  735.                 3    Text is aligned between two points (height varies)
  736.                 4    Text is "middle" (fully) centered
  737.                 5    Text is fit between two points (width varies)
  738.  
  739.             If the justification is anything other than 0 (left justi-
  740.             fied), 11, 21, and 31 groups will also appear in the entity
  741.             to specify the alignment point of the text (center, right-
  742.             most, or second alignment point).
  743.  
  744.             DXFOUT handles ASCII control characters in text strings by
  745.             expanding the character into a "^" (caret) followed by the
  746.  
  747.                                                                          13
  748. AutoCAD Reference Manual
  749.  
  750.             appropriate letter.  For example, an ASCII Control-G (BEL,
  751.             decimal code 7) is output as "^G".  If the text itself con-
  752.             tains a caret character, it is expanded to "^ " (caret,
  753.             space).  DXFIN performs the complementary conversion.
  754.  
  755.   SHAPE     10, 20, 30 (insertion point), 40 (size), 2 (shape name), 50
  756.             (rotation angle -optional 0), 41 (relative X scale factor
  757.             -optional 1), 51 (obliquing angle -optional 0).
  758.  
  759.   BLOCK     2 (Block name), 70 (Block type flags), 10, 20, 30 (Block base
  760.             point).  Appears only in BLOCKS section.  The "Block type
  761.             flags" are bit-coded, with the following bit meanings:
  762.  
  763.               Flag bit value                   Meaning
  764.                     1         This is an "anonymous" Block generated by
  765.                               hatching, associative dimensioning, or
  766.                               other internal operations.
  767.                     2         This Block has Attributes.
  768.  
  769.   ENDBLK    No groups.  Appears only in BLOCKS section.
  770.  
  771.   INSERT    66 ("Attributes follow" flag -optional 0), 2 (Block name),
  772.             10, 20, 30 (insertion point), 41 (X scale factor -optional
  773.             1), 42 (Y scale factor -optional 1), 43 (Z scale factor
  774.             -optional 1), 50 (rotation angle -optional 0), 70 and 71
  775.             (column and row counts -optional 1), 44 and 45 (column and
  776.             row spacing -optional 0).
  777.  
  778.             If the value of the "Attributes follow" flag is 1, a series
  779.             of Attribute (ATTRIB) entities is expected to follow the
  780.             INSERT, terminated by a sequence end (SEQEND) entity.
  781.  
  782.   ATTDEF    10, 20, 30 (text start), 40 (text height), 1 (default value,
  783.             see TEXT above for handling of ASCII control characters), 3
  784.             (prompt string), 2 (tag string), 70 (Attribute flags), 73
  785.             (field length -optional 0), 50 (text rotation -optional 0),
  786.             41 (relative X scale factor -optional 1), 51 (obliquing angle
  787.             -optional 0), 7 (text style name -optional "STANDARD"), 71
  788.             (text generation flags -optional 0, see TEXT above), 72 (text
  789.             justification type -optional 0, see TEXT above)), 11, 21, 31
  790.             (alignment point -optional, appears only if 72 group is
  791.             present and nonzero).
  792.  
  793.             The "Attribute flags" are a bit-coded field in which the bits
  794.             have the following meanings:
  795.  
  796.               Flag bit value                   Meaning
  797.                     1         Attribute is invisible (does not display)
  798.                     2         This is a constant Attribute
  799.                     4         Verification is required on input of this
  800.                               Attribute.
  801.                     8         Attribute is preset (no prompt during
  802.                               insertion)
  803.  
  804. 14
  805.                                    (C) Drawing Interchange and File Formats
  806.  
  807.   ATTRIB    10, 20, 30 (text start), 40 (text height), 1 (value, see TEXT
  808.             above for handling of ASCII control characters), 2 (Attribute
  809.             tag), 70 (Attribute flags; see ATTDEF above), 73 (field
  810.             length -optional 0), 50 (text rotation -optional 0), 41 (rel-
  811.             ative X scale factor -optional 1), 51 (obliquing angle
  812.             -optional 0), 7 (text style name -optional "STANDARD"), 71
  813.             (text generation flags -optional 0, see TEXT above), 72 (text
  814.             justification type -optional 0, see TEXT above), 11, 21, 31
  815.             (alignment point -optional, appears only if 72 group is
  816.             present and nonzero).
  817.  
  818.   POLYLINE  66 ("vertices follow flag"), 70 (Polyline flags), 40 (default
  819.             starting width), 41 (default ending width), 71 and 72 (poly-
  820.             gon mesh M and N vertex counts -optional 0), 73 and 74
  821.             (smooth surface M and N densities -optional 0), 75 (smooth
  822.             surface type -optional 0).  The default widths apply to any
  823.             vertex that doesn't supply widths (see below).
  824.  
  825.             The "vertices follow" flag is always 1, indicating that a
  826.             series of VERTEX entities is expected to follow the POLYLINE,
  827.             terminated by a sequence end (SEQEND) entity.  The "polyline
  828.             flags" group is a bit-coded field with bits defined as fol-
  829.             lows:
  830.  
  831.              Flag bit value                    Meaning
  832.                     1        This is a closed Polyline (or a polygon
  833.                              mesh closed in the M direction)
  834.                     2        Curve-fit vertices have been added
  835.                     4        Spline-fit vertices have been added
  836.                     8        This is a 3D Polyline
  837.                    16        This is a 3D polygon mesh.  Group 75 indi-
  838.                              cates the smooth surface type, as follows:
  839.  
  840.                                0 = no smooth surface fitted
  841.                                5 = quadratic B-spline surface
  842.                                6 = cubic B-spline surface
  843.                                8 = Bezier surface
  844.  
  845.                    32        The polygon mesh is closed in the N direc-
  846.                              tion
  847.  
  848.   VERTEX    10, 20, 30 (location), 40 (starting width -optional, see
  849.             above), 41 (ending width -optional, see above), 42 (bulge),
  850.             70 (vertex flags), 50 (curve fit tangent direction
  851.             -optional).  The bulge is the tangent of 1/4 the included
  852.             angle for an arc segment, made negative if the arc goes
  853.             clockwise from the start point to the end point; a bulge of 0
  854.             indicates a straight segment, and a bulge of 1 is a semicir-
  855.             cle.  The meanings of the bit-coded "vertex flags" are shown
  856.             in the following table.
  857.  
  858.  
  859.  
  860.  
  861.                                                                          15
  862. AutoCAD Reference Manual
  863.  
  864.              Flag bit value                    Meaning
  865.                    1         Extra vertex created by curve fitting
  866.                    2         Curve fit tangent defined for this vertex.
  867.                              A curve fit tangent direction of 0 may be
  868.                              omitted from the DXF output, but is signif-
  869.                              icant if this bit is set.
  870.                    4         Unused (never set in DXF files)
  871.                    8         Spline vertex created by spline fitting
  872.                    16        Spline frame control point
  873.                    32        3D Polyline vertex
  874.                    64        3D polygon mesh vertex
  875.  
  876.   SEQEND    No fields.  This entity marks the end of vertices (VERTEX
  877.             type name) for a Polyline, or the end of Attribute entities
  878.             (ATTRIB type name) for an INSERT entity that has Attributes
  879.             (indicated by 66 group present and nonzero in INSERT entity).
  880.  
  881.   3DLINE    10, 20, 30 (start point), 11, 21, 31 (end point).
  882.  
  883.   3DFACE    Four points defining the corners of the face: (10, 20, 30),
  884.             (11, 21, 31), (12, 22, 32), and (13, 23, 33).  70 (invisible
  885.             edge flags -optional 0).  If only three points were entered
  886.             (forming a triangular face), the third and fourth points will
  887.             be the same.  The meanings of the bit-coded "invisible edge
  888.             flags" are shown in the following table.
  889.  
  890.                       Flag bit value           Meaning
  891.                              1        First edge is invisible
  892.                              2        Second edge is invisible
  893.                              4        Third edge is invisible
  894.                              8        Fourth edge is invisible
  895.  
  896.   DIMENSION 2 (name of pseudo-Block containing the current dimension pic-
  897.             ture), 10, 20, 30 (definition point for all dimension types),
  898.             11, 21, 31 (middle point of dimension text), 12, 22, 32
  899.             (insertion point for clones of a dimension (for BASELINE and
  900.             CONTINUE), 70 (Dimension type; 0=rotated, horizontal, or ver-
  901.             tical; 1=aligned; 2=angular; 3=diameter; 4=radius - the value
  902.             128 is added to this field if the dimension text has been
  903.             positioned at a user-defined location rather than at the
  904.             default location), 1 (dimension text explicitly entered by
  905.             the user.  If null, the dimension measurement is drawn as the
  906.             text.  Otherwise, this text is drawn (but if it includes the
  907.             sequence "<>", the dimension measurement is drawn in place of
  908.             the "<>")), 13, 23, 33 (definition point for linear and angu-
  909.             lar dimensions), 14, 24, 34 (definition point for linear and
  910.             angular dimensions), 15, 25, 35 (definition point for diame-
  911.             ter, radius, and angular dimensions), 16, 26, 36 (point
  912.             defining dimension arc for angular dimensions), 40 (leader
  913.             length for radius and diameter dimensions), 50 (angle of
  914.             rotated, horizontal, or vertical linear dimensions).
  915.  
  916.  
  917.  
  918. 16
  919.                                    (C) Drawing Interchange and File Formats
  920.  
  921.             In addition, all dimension types have an optional group (code
  922.             51) that indicates the "horizontal" direction for the Dimen-
  923.             sion entity.  This determines the orientation of dimension
  924.             text and dimension lines for horizontal, vertical and rotated
  925.             linear dimensions.  The group value is the negative of the
  926.             ECS angle of the UCS X axis in effect when the Dimension was
  927.             drawn.  In other words, the X axis of the UCS in effect when
  928.             the Dimension was drawn is always parallel to the XY plane
  929.             for the Dimension's ECS, and the angle between the UCS X axis
  930.             and the ECS X axis is a single 2D angle.  The value in group
  931.             51 is the angle from "horizontal" (the effective X axis) to
  932.             the ECS X axis.  Entity Coordinate Systems (ECS) are
  933.             described later in this section.
  934.  
  935.             For all dimension types, the following groups represent 3D
  936.             WCS points, regardless of the FLATLAND setting.
  937.  
  938.                 10, 20, 30
  939.                 13, 23, 33
  940.                 14, 24, 34
  941.                 15, 25, 35
  942.  
  943.             For all dimension types, the following groups represent ECS
  944.             points, and are 2D or 3D depending on the FLATLAND setting.
  945.  
  946.                 11, 21(, 31)
  947.                 12, 22(, 32)
  948.                 16, 26(, 36)
  949.  
  950.   Linear    (13,23,33)   The point used to specify the first extension line.
  951.             (14,24,34)   The point used to specify the second extension line.
  952.             (10,20,30)   The point used to specify the dimension line.
  953.  
  954.   Angular   (13,23,33) and (14,24,34)  The endpoints of the first line
  955.             (10,20,30) and (15,25,35)  The endpoints of the second line
  956.             (16,26,36)                 The point used to specify the dimen-
  957.                                        sion line arc
  958.  
  959.   Diameter  (15,25,35)   The point used to pick the circle/arc to dimension
  960.             (10,20,30)   The point on that circle directly across from the
  961.                          pick point.
  962.  
  963.   Radius    (15,25,35)   The point used to pick the circle/arc to dimension
  964.             (10,20,30)   The center of that circle.
  965.  
  966.  
  967.  
  968.  
  969.  
  970.  
  971.  
  972.  
  973.  
  974.  
  975.                                                                          17
  976. AutoCAD Reference Manual
  977.  
  978. Entity Coordinate Systems (ECS)
  979.  
  980. To save space in the drawing database (and in the DXF file), the points
  981. associated with each entity are expressed in terms of its own Entity Coor-
  982. dinate System (ECS).  The Entity Coordinate System allows AutoCAD to use a
  983. much more compact means of representation for entities.  With ECS, the only
  984. additional information needed to describe its position in 3D space is the
  985. 3D vector describing the Z axis of the ECS, and the elevation value.
  986.  
  987. For a given Z axis (or extrusion) direction, there is an infinite number of
  988. coordinate systems, defined by translating the origin in 3D space and by
  989. rotating the X and Y axes around the Z axis.  However, for the same Z axis
  990. direction, there is only one Entity Coordinate System.  It has the follow-
  991. ing properties:
  992.  
  993.   o  Its origin coincides with the WCS origin.
  994.   o  The orientation of the X and Y axes within the XY plane are calcu-
  995.      lated in an arbitrary, but consistent manner.  AutoCAD performs
  996.      this calculation using the "arbitrary axis" algorithm described
  997.      below.
  998.  
  999. For some entities, the ECS is equivalent to the World Coordinate System and
  1000. all points (DXF groups 10-37) are expressed in World coordinates.  See the
  1001. following table.
  1002.  
  1003.                   Entities                        Notes
  1004.         LINE, POINT, 3DFACE, 3D       These entities do not lie in
  1005.         Polyline, 3D Vertex, 3D       a particular plane.  All
  1006.         Mesh, 3D Mesh vertex          points are expressed in
  1007.                                       World coordinates.  Of these
  1008.                                       entities, only Lines and
  1009.                                       Points can be extruded;
  1010.                                       their extrusion direction can
  1011.                                       differ from the World Z axis.
  1012.  
  1013.         CIRCLE, ARC, SOLID, TRACE,    These entities are planar in
  1014.         TEXT, ATTRIB, ATTDEF, SHAPE,  nature.  All points are
  1015.         INSERT, 2D Polyline, 2D       expressed in Entity coordi-
  1016.         Vertex                        nates.  All these entities
  1017.                                       can be extruded; their
  1018.                                       extrusion direction can
  1019.                                       differ from the World Z axis.
  1020.  
  1021.         DIMENSION                     Some of a Dimension's points are
  1022.                                       expressed in WCS, and some in ECS.
  1023.  
  1024.         Others                        The remaining entities have
  1025.                                       no point data and their
  1026.                                       coordinate systems are
  1027.                                       therefore irrelevant.
  1028.  
  1029. Once AutoCAD has established the ECS for a given entity, here's how it
  1030. works:
  1031.  
  1032. 18
  1033.                                    (C) Drawing Interchange and File Formats
  1034.  
  1035.   o  The elevation value stored with an entity indicates how far along
  1036.      the Z axis to shift the XY plane from the WCS origin to make it
  1037.      coincide with the plane that the entity is in.  How much of this
  1038.      is the user-defined elevation is unimportant.
  1039.   o  Any 2D points describing the entity that were entered through the
  1040.      UCS are transformed into the corresponding 2D points in the ECS,
  1041.      which (more often than not) is shifted and rotated with respect to
  1042.      the UCS.
  1043.  
  1044. A few ramifications of this process are:
  1045.  
  1046.   o  You can not reliably find out what UCS was in effect when an
  1047.      entity was acquired.  You can only find out where the entity is in
  1048.      the current UCS if the current UCS has the same Z axis direction
  1049.      as the original UCS (i.e., they both reduce to the same ECS).
  1050.   o  When you enter the XY coordinates of an entity in a given UCS and
  1051.      then do a DXFOUT, you probably won't recognize those XY coordi-
  1052.      nates in the DXF file.  You'll have to know the method by which
  1053.      AutoCAD calculates the X and Y axes in order to work with these
  1054.      values.
  1055.   o  The elevation value stored with an entity and output in DXF files
  1056.      will be a sum of the Z coordinate difference between the UCS XY
  1057.      plane and the ECS XY plane, and the elevation value that the user
  1058.      specified at the time the entity was drawn.
  1059.  
  1060.  
  1061. Arbitrary Axis Algorithm
  1062.  
  1063. The arbitrary axis algorithm is used by AutoCAD internally to implement the
  1064. "arbitrary but consistent" generation of Entity Coordinate Systems for all
  1065. entities except Lines, Points, 3D Faces, and 3D Polylines, which contain
  1066. points in World coordinates.
  1067.  
  1068. Given a unit-length vector to be used as the Z axis of a coordinate system,
  1069. the arbitrary axis algorithm generates a corresponding X axis for the coor-
  1070. dinate system.  The Y axis follows by application of the right hand rule.
  1071.  
  1072. The method is to examine the given Z axis (also called the normal vector)
  1073. and see if it is close to the positive or negative World Z axis.  If it is,
  1074. cross the World Y axis with the given Z axis to arrive at the arbitrary X
  1075. axis.  If not, cross the World Z axis with the given Z axis to arrive at
  1076. the arbitrary X axis.  The boundary at which the decision is made was
  1077. chosen to be both inexpensive to calculate and completely portable across
  1078. machines.  This is achieved by having a sort of "square" polar cap, the
  1079. bounds of which is 1/64, which is precisely specifiable in 6 decimal frac-
  1080. tion digits and in 6 binary fraction bits.
  1081.  
  1082. In mathematical terms, the algorithm does the following (all "vectors" are
  1083. assumed to be in 3D space, specified in the World Coordinate System).
  1084.  
  1085.     Let the given normal vector be called N.
  1086.     Let the World Y axis be called Wy, which is always (0,1,0).
  1087.     Let the World Z axis be called Wz, which is always (0,0,1).
  1088.  
  1089.                                                                          19
  1090. AutoCAD Reference Manual
  1091.  
  1092. We are looking for the arbitrary X and Y axes to go with the normal N.
  1093. They'll be called Ax and Ay.  N could also be called Az (the arbitrary Z
  1094. axis).
  1095.  
  1096.     If (Nx < 1/64) and (Ny < 1/64) then
  1097.        Ax = Wy * N      (where "*" is the cross-product operator).
  1098.     Otherwise,
  1099.        Ax = Wz * N.
  1100.     Scale Ax to unit length.
  1101.  
  1102. The method of getting the Ay vector would be:
  1103.  
  1104.     Ay = N * Ax.
  1105.     Scale Ay to unit length.
  1106.  
  1107.  
  1108. C.1.6  Writing DXF Interface Programs
  1109.  
  1110. Writing a program that communicates with AutoCAD via the DXF mechanism
  1111. often appears far more difficult than it really is.  The DXF file contains
  1112. a seemingly overwhelming amount of information, and examining a DXF file
  1113. manually may lead to the conclusion that the task is hopeless.
  1114.  
  1115. However, the DXF file has been designed to be easy to process by program,
  1116. not manually.  The format was constructed with the deliberate intention of
  1117. making it easy to ignore information you don't care about while easily
  1118. reading the information you need.  Just remember to handle the groups in
  1119. any order and ignore any group you don't care about, and you'll be home
  1120. free.
  1121.  
  1122. As an example, the following is a Microsoft BASIC program that reads a DXF
  1123. file and extracts all the LINE entities from the drawing (ignoring lines
  1124. that appear inside Blocks).  It prints the endpoints of these lines on the
  1125. screen.  As an exercise you might try entering this program into your com-
  1126. puter, running it on a DXF file from one of your drawings, then enhancing
  1127. it to print the center point and radius of any circles it encounters.  This
  1128. program is not put forward as an example of clean programming technique nor
  1129. the way a general DXF processor should be written; it is presented as an
  1130. example of just how simple a DXF-reading program can be.
  1131.  
  1132.     1000 REM
  1133.     1010 REM Extract lines from DXF file
  1134.     1020 REM
  1135.     1030 G1% = 0
  1136.     1040 LINE INPUT "DXF file name: "; A$
  1137.     1050 OPEN "i", 1, A$ + ".dxf"
  1138.     1060 REM
  1139.     1070 REM Ignore until section start encountered
  1140.     1080 REM
  1141.     1090 GOSUB 2000
  1142.     1100 IF G% <> 0 THEN 1090
  1143.     1110 IF S$ <> "SECTION" THEN 1090
  1144.  
  1145.  
  1146. 20
  1147.                                    (C) Drawing Interchange and File Formats
  1148.  
  1149.     1120 GOSUB 2000
  1150.     1130 REM
  1151.     1140 REM Skip unless ENTITIES section
  1152.     1150 REM
  1153.     1160 IF S$ <> "ENTITIES" THEN 1090
  1154.     1170 REM
  1155.     1180 REM Scan until end of section, processing LINEs
  1156.     1190 REM
  1157.     1200 GOSUB 2000
  1158.     1210 IF G% = 0 AND S$ = "ENDSEC" THEN 2200
  1159.     1220 IF G% = 0 AND S$ = "LINE" THEN GOSUB 1400 : GOTO 1210
  1160.     1230 GOTO 1200
  1161.     1400 REM
  1162.     1410 REM Accumulate LINE entity groups
  1163.     1420 REM
  1164.     1430 GOSUB 2000
  1165.     1440 IF G% = 10 THEN X1 = X : Y1 = Y : Z1 = Z
  1166.     1450 IF G% = 11 THEN X2 = X : Y2 = Y : Z2 = Z
  1167.     1460 IF G% = 0 THEN PRINT "Line from (";X1;",";Y1;",";Z1;") to (";X2;
  1168.                               ",";Y2;",";Z2;")
  1169.     1470 GOTO 1430
  1170.     2000 REM
  1171.     2010 REM Read group code and following value
  1172.     2020 REM For X coordinates, read Y and possibly Z also
  1173.     2030 REM
  1174.     2040 IF G1% < 0 THEN G% = -G1% : G1% = 0 ELSE INPUT #1, G%
  1175.     2050 IF G% <   10 OR  G% =  999 THEN LINE INPUT #1, S$ : RETURN
  1176.     2060 IF G% >=  38 AND G% <=  49 THEN INPUT #1, V : RETURN
  1177.     2080 IF G% >=  50 AND G% <=  59 THEN INPUT #1, A : RETURN
  1178.     2090 IF G% >=  60 AND G% <=  69 THEN INPUT #1, P% : RETURN
  1179.     2100 IF G% >=  70 AND G% <=  79 THEN INPUT #1, F% : RETURN
  1180.     2110 IF G% >= 210 AND G% <= 219 THEN 2130
  1181.     2120 IF G% >=  20 THEN PRINT "Invalid group code";G% : STOP
  1182.     2130 INPUT #1, X
  1183.     2140 INPUT #1, G1%
  1184.     2150 IF G1% <> (G%+10) THEN PRINT "Invalid Y coord code";G1% : STOP
  1185.     2160 INPUT #1, Y
  1186.     2170 INPUT #1, G1%
  1187.     2180 IF G1% <> (G%+20) THEN G1% = -G1% ELSE INPUT #1, Z
  1188.     2190 RETURN
  1189.     2200 CLOSE 1
  1190.  
  1191. Writing a program that constructs a DXF file is more difficult, because you
  1192. must maintain consistency within the drawing in order for AutoCAD to find
  1193. it acceptable.  AutoCAD allows you to omit many items in a DXF file and
  1194. still obtain a usable drawing.  The entire HEADER section can be omitted if
  1195. you don't need to set any header variables.  Any of the tables in the
  1196. TABLES section can be omitted if you don't need to make any entries, and in
  1197. fact the entire TABLES section can be dropped if nothing in it is required.
  1198. If you define any linetypes in the LTYPE table, this table must appear
  1199. before the LAYER table.  If no Block Definitions are used in the drawing,
  1200. the BLOCKS section can be omitted.  If present, however, it must appear
  1201. before the ENTITIES section.  Within the ENTITIES section, you can refer-
  1202. ence layer names even though you haven't defined them in the LAYER table.
  1203.  
  1204.                                                                          21
  1205. AutoCAD Reference Manual
  1206.  
  1207. Such layers will be automatically created with color 7 and the CONTINUOUS
  1208. linetype.  The EOF item must be present at the end of file.
  1209.  
  1210. The following Microsoft BASIC program constructs a DXF file representing a
  1211. polygon with a specified number of sides, leftmost origin point, and side
  1212. length.  This program supplies only the ENTITIES section of the DXF file,
  1213. and places all entities generated on the default layer "0".  This may be
  1214. taken as an example of a minimum DXF generation program.  Since this pro-
  1215. gram doesn't create the drawing header, the drawing limits, extents, and
  1216. current view will be invalid after performing a DXFIN on the drawing gener-
  1217. ated by this program.  You can do a "ZOOM E" to fill the screen with the
  1218. drawing generated.  Then adjust the limits manually.
  1219.  
  1220.     1000 REM
  1221.     1010 REM Polygon generator
  1222.     1020 REM
  1223.     1030 LINE INPUT "Drawing (DXF) file name: "; A$
  1224.     1040 OPEN "o", 1, A$ + ".dxf"
  1225.     1050 PRINT #1, 0
  1226.     1060 PRINT #1, "SECTION"
  1227.     1070 PRINT #1, 2
  1228.     1080 PRINT #1, "ENTITIES"
  1229.     1090 PI = ATN(1) * 4
  1230.     1100 INPUT "Number of sides for polygon: "; S%
  1231.     1110 INPUT "Starting point (X,Y): "; X, Y
  1232.     1120 INPUT "Polygon side: "; D
  1233.     1130 A1 = (2 * PI) / S%
  1234.     1140 A = PI / 2
  1235.     1150 FOR I% = 1 TO S%
  1236.     1160 PRINT #1, 0
  1237.     1170 PRINT #1, "LINE"
  1238.     1180 PRINT #1, 8
  1239.     1190 PRINT #1, "0"
  1240.     1200 PRINT #1, 10
  1241.     1210 PRINT #1, X
  1242.     1220 PRINT #1, 20
  1243.     1230 PRINT #1, Y
  1244.     1240 PRINT #1, 30
  1245.     1250 PRINT #1, 0.0
  1246.     1260 NX = D * COS(A) + X
  1247.     1270 NY = D * SIN(A) + Y
  1248.     1280 PRINT #1, 11
  1249.     1290 PRINT #1, NX
  1250.     1300 PRINT #1, 21
  1251.     1310 PRINT #1, NY
  1252.     1320 PRINT #1, 31
  1253.     1330 PRINT #1, 0.0
  1254.     1340 X = NX
  1255.     1350 Y = NY
  1256.     1360 A = A + A1
  1257.     1370 NEXT I%
  1258.     1380 PRINT #1, 0
  1259.     1390 PRINT #1, "ENDSEC"
  1260.  
  1261. 22
  1262.                                    (C) Drawing Interchange and File Formats
  1263.  
  1264.     1400 PRINT #1, 0
  1265.     1410 PRINT #1, "EOF"
  1266.     1420 CLOSE 1
  1267.  
  1268. The DXFIN command is relatively forgiving with respect to the format of
  1269. data items.  As long as a properly formatted item appears on the line on
  1270. which the data is expected, DXFIN will accept it (of course, string items
  1271. should not have leading spaces unless these are intended to be part of the
  1272. string).  The above program takes advantage of this flexibility in input
  1273. format, and does not go to great effort to generate a file appearing
  1274. exactly like one generated by AutoCAD.
  1275.  
  1276. In the case of error loading a DXF file using DXFIN, AutoCAD reports the
  1277. error with a message indicating the nature of the error detected and the
  1278. last line processed in the DXF file before the error was detected.  This
  1279. may not be the line on which the error occurred, especially in the case of
  1280. such errors as omission of required groups.
  1281.  
  1282.  
  1283.  
  1284. C.2  Binary Drawing Interchange Files
  1285.  
  1286. The ASCII DXF file format described in the preceding sections of this
  1287. appendix is a complete representation of an AutoCAD drawing in an ASCII
  1288. text form easily processed by other programs.  In addition, AutoCAD can
  1289. produce or read a binary form of the full DXF file, and accepts limited
  1290. input in another binary file format.  These binary files are described in
  1291. the following sections.
  1292.  
  1293.  
  1294. C.2.1  Binary DXF Files
  1295.  
  1296. The DXFOUT command provides a "Binary" option that writes binary DXF files.
  1297. Such a file contains all of the information present in an ASCII DXF file,
  1298. but in a much more compact form that takes, typically, 25% less file space
  1299. and can be read and written more quickly (typically 5 times faster) by
  1300. AutoCAD.  Unlike ASCII DXF files, which entail a trade-off between size and
  1301. floating-point accuracy, binary DXF files preserve all of the accuracy in
  1302. the drawing database.  AutoCAD Release 10 is the first version to support
  1303. this form of DXF file; it cannot be read by older versions.
  1304.  
  1305. A binary DXF file begins with a 22-byte sentinel consisting of:
  1306.  
  1307.     "AutoCAD Binary DXF<CR><LF><SUB><NUL>"
  1308.  
  1309. Following the sentinel are (group,value) pairs as in an ASCII DXF file, but
  1310. represented in binary form.  The group code is a single-byte binary value,
  1311. and the value that follows is one of the following:
  1312.  
  1313.   o  a two-byte integer with the least significant byte first and the
  1314.      most significant byte last,
  1315.  
  1316.  
  1317.  
  1318.                                                                          23
  1319. AutoCAD Reference Manual
  1320.  
  1321.   o  an eight-byte IEEE double precision floating-point number stored
  1322.      with the least significant byte first and the most significant
  1323.      byte last, or
  1324.  
  1325.   o  an ASCII string terminated by a zero (NUL) byte.
  1326.  
  1327. The type of the datum following a group is determined from the group code
  1328. according to the same rules used in decoding ASCII DXF files.  Translation
  1329. of angles to degrees, and dates to fractional Julian date representation,
  1330. is performed for binary files as well as for ASCII DXF files.  The comment
  1331. group, 999, is not used in binary DXF files.
  1332.  
  1333. DXFOUT writes binary DXF files with the same file type (".dxf") as for
  1334. ASCII DXF files.  The DXFIN command automatically recognizes a binary file
  1335. (by means of its sentinel string) and loads it.  There is no need for you
  1336. to identify it as a binary file.
  1337.  
  1338. If DXFIN encounters an error in a binary DXF file, it reports the byte
  1339. address within the file where the error was detected.
  1340.  
  1341.  
  1342. C.3  Binary Drawing Interchange (DXB) Files
  1343.  
  1344. The DXF file formats described earlier in this appendix are complete repre-
  1345. sentations of an AutoCAD drawing that can be written and read by AutoCAD
  1346. and other programs.  However, AutoShade(tm) and programs executed via the
  1347. "external commands" facility (Appendix B) often have a need to supply
  1348. simple geometric input to AutoCAD.  For these purposes, another file format
  1349. even more compact than the binary DXF format is supported.  This format,
  1350. called DXB (for "drawing interchange binary") is limited in the entities it
  1351. can represent.  Furthermore, AutoCAD has a command to read such files, but
  1352. no direct method of writing them.  (The ADI plotter driver can plot to a
  1353. file in DXB format.)
  1354.  
  1355.  
  1356. C.3.1  DXBIN Command
  1357.  
  1358. To load a DXB file produced by a program such as AutoShade, enter the DXBIN
  1359. command:
  1360.  
  1361.     Command:  DXBIN
  1362.     DXB file:
  1363.  
  1364. enter the name of the file you wish to load.  Don't include a file type;
  1365. ".dxb" is assumed.
  1366.  
  1367.  
  1368.  
  1369.  
  1370.  
  1371.  
  1372.  
  1373.  
  1374.  
  1375. 24
  1376.                                    (C) Drawing Interchange and File Formats
  1377.  
  1378. C.3.2  DXB File Format
  1379.  
  1380. This information is for experienced programmers, and is subject to change
  1381. without notice.
  1382.  
  1383. The format of a DXB file is as follows:
  1384.  
  1385.     Header:      "AutoCAD DXB 1.0" CR LF ^Z NUL       (19 bytes)
  1386.     Data:      . . . Zero or more data records . . .
  1387.     Terminator:  NUL                                  (1 byte)
  1388.  
  1389. Each data record begins with a single byte giving its type, followed by
  1390. data items.  The data items have various forms of representation and encod-
  1391. ing.  In the descriptions below, each data item is prefixed with a letter
  1392. and a hyphen.  The meaning of the letter codes is as follows:
  1393.  
  1394.   w-  16-bit integer, byte reversed in the standard 8086 style (least
  1395.       significant byte first, most significant byte second).
  1396.  
  1397.   f-  IEEE 64-bit floating-point value stored with lsb first, msb last
  1398.       (as stored by an 8087).
  1399.  
  1400.   l-  32-bit integer with the bytes reversed 8086-style.
  1401.  
  1402.   n-  Number which may be either a 16-bit integer or a floating-point
  1403.       number depending on the most recent setting of the "number mode"
  1404.       data item.  The number mode defaults to 0, signifying integers.  If
  1405.       set to 1, all n- items will be read as floating-point.
  1406.  
  1407.   u-  Item which is either a 32-bit integer or a floating-point number
  1408.       depending on the most recent number mode setting.  If a 32-bit
  1409.       integer, the value is scaled by multiplying it by 65536 (2^16).  If
  1410.       a floating-point value, no scaling is applied.
  1411.  
  1412.   a-  Item representing an angle.  If number mode is integer, this is a
  1413.       32-bit integer representing an angle in units of millionths of a
  1414.       degree (range 0 to 360,000,000).  If a floating-point number, rep-
  1415.       resents degrees.
  1416.  
  1417. In the following table, the lengths include the item-type byte and assume
  1418. the number mode is set to zero (integer mode).  If number mode is floating-
  1419. point, add 6 bytes to the length for each n- item present and 4 bytes for
  1420. each a-, or u- item present.
  1421.  
  1422.         Item type        Code           Data items           Length
  1423.                        (decimal)                             (bytes)
  1424.      LINE                  1      n-fromx n-fromy               9
  1425.                                   n-tox n-toy
  1426.      POINT                 2      n-x n-y                       5
  1427.      CIRCLE                3      n-ctrx n-ctry n-rad           7
  1428.      ARC                   8      n-ctrx n-ctry n-rad          19
  1429.                                   a-starta a-enda
  1430.                                                       continued ...
  1431.  
  1432.                                                                          25
  1433. AutoCAD Reference Manual
  1434.  
  1435.         Item type        Code           Data items           Length
  1436.                        (decimal)                             (bytes)
  1437.      TRACE                 9      n-x1 n-y1 n-x2 n-y2          17
  1438.                                   n-x3 n-y3 n-x4 n-y4
  1439.      SOLID                11      n-x1 n-y1 n-x2 n-y2          17
  1440.                                   n-x3 n-y3 n-x4 n-y4
  1441.      SEQEND               17      (none)                        1
  1442.      POLYLINE             19      w-closureflag                 3
  1443.      VERTEX               20      n-x n-y                       5
  1444.      3DLINE               21      n-fromx n-fromy n-fromz      13
  1445.                                   n-tox n-toy n-toz
  1446.      3DFACE               22      n-x1 n-y1 n-z1               25
  1447.                                   n-x2 n-y2 n-x2
  1448.                                   n-x3 n-y3 n-z3
  1449.                                   n-x4 n-y4 n-z4
  1450.      SCALE FACTOR         128     f-scalefac                    9
  1451.      NEW LAYER            129     "layername" NUL          "layername"
  1452.                                                            length + 2
  1453.      LINE EXTENSION       130     n-tox n-toy                   5
  1454.      TRACE EXTENSION      131     n-x3 n-y3 n-x4 n-y4           9
  1455.      BLOCK BASE           132     n-bx n-by                     5
  1456.      BULGE                133     u-2h/d                        5
  1457.      WIDTH                134     n-startw n-endw               5
  1458.      NUMBER MODE          135     w-mode                        3
  1459.      NEW COLOR            136     w-colornum                    3
  1460.      3DLINE EXTENSION     137     n-tox n-toy n-toz             7
  1461.  
  1462. The LINE EXTENSION item extends the last line or line extension from its
  1463. "to" point to a new "to point".  The trace extension item similarly extends
  1464. the last trace solid, or trace extension from its x3,y3-x4,y4 ending line
  1465. to a new x3,y3-x4,y4 line.
  1466.  
  1467. The SCALE FACTOR is a floating-point value by which all integer coordinates
  1468. are multiplied to obtain the floating-point coordinates used by the actual
  1469. entities.  The initial scale factor when a file is read is 1.0.  The NEW
  1470. LAYER item will create a layer if none exists, giving it the same defaults
  1471. as the "LAYER NEW" command, and will set that layer as the current layer
  1472. for subsequent entities.  At the end of the DXB file load, the layer in
  1473. effect before the command will be restored.
  1474.  
  1475. The BLOCK BASE item specifies the base (origin) point of a Block being cre-
  1476. ated.  The Block base must be defined before the first entity record is
  1477. encountered.  If DXB is not defining a Block, this specification will be
  1478. ignored.
  1479.  
  1480. A Polyline consists of straight segments of fixed width connecting the ver-
  1481. tices, except as overridden by the BULGE and WIDTH items described below.
  1482. The closure flag should be 0 or 1; if it is 1, then there is an implicit
  1483. segment from the last vertex (immediately before the SEQEND) to the first
  1484. vertex.
  1485.  
  1486. A BULGE item, encountered between two VERTEX items (or after the last
  1487. VERTEX of a closed Polyline), indicates that the two vertices are connected
  1488.  
  1489. 26
  1490.                                    (C) Drawing Interchange and File Formats
  1491.  
  1492. by an arc rather than a straight segment.  If the line segment connecting
  1493. the vertices would have length d, and the perpendicular distance from the
  1494. midpoint of that segment to the arc is h, then the magnitude of the BULGE
  1495. is (2 * h / d).  The sign is negative if the arc from the first vertex to
  1496. the second is clockwise.  A semicircle thus has a bulge of 1 (or -1).  If
  1497. the number mode is 0 (integer), BULGE items are scaled by 216.  If the
  1498. number mode has been set to floating-point, then the floating-point value
  1499. supplied is just 2*h/d (not scaled).
  1500.  
  1501. The WIDTH item indicates the starting and ending widths of the segment
  1502. (straight or curved) connecting two vertices.  This width stays in effect
  1503. until the next width item or the SEQEND.  If there is a WIDTH item between
  1504. the POLYLINE item and the first VERTEX, it is stored as a default width for
  1505. the Polyline; this will save considerable database space if the Polyline
  1506. has several segments of this width.
  1507.  
  1508. The NUMBER MODE item controls the mode of items with types given in the
  1509. table above as n-, a-, or u-.  If the value supplied is zero, these values
  1510. will be integers, otherwise floating-point.  The storage and implicit scal-
  1511. ing conventions for these values in both modes are described above.
  1512.  
  1513. LINEs and 3DLINEs share the same cells to remember the last to-point, so
  1514. you shouldn't mix extension groups for the two entities without an initial
  1515. group before the extension.  There is no "extension" group for 3DFACEs, as
  1516. there's no obvious edge to extend from.
  1517.  
  1518. The "NEW COLOR" group specifies the color for subsequent entities in the
  1519. DXB file.  The "w-colornum" word argument is in the range from 0 to 256.  0
  1520. means color by block, 1-255 are the standard AutoCAD colors, and 256 means
  1521. color by layer.  A color outside the range from 0 to 256 sets the color
  1522. back to the current entity color (you can do this deliberately, and it can
  1523. be quite handy).  The initial entity color of material added by DXBIN is
  1524. the current entity color.
  1525.  
  1526. All points specified in the DXB file are interpreted in terms of the cur-
  1527. rent UCS at the time the DXBIN command is executed.
  1528.  
  1529.  
  1530. C.3.3  Writing DXB Files
  1531.  
  1532. There is no direct AutoCAD command to write a DXB file, but the special
  1533. "ADI" plotter driver can write such a file.  If you want to create a DXB
  1534. file from an AutoCAD drawing, configure the "ADI" plotter and select its
  1535. DXB file output option.
  1536.  
  1537.  
  1538.  
  1539.  
  1540.  
  1541.  
  1542.  
  1543.  
  1544.  
  1545.  
  1546.                                                                          27
  1547. AutoCAD Reference Manual
  1548.  
  1549. C.4  Initial Graphics Exchange Standard (IGES) Files
  1550.  
  1551. Using the commands described in this section, you can instruct AutoCAD to
  1552. read and write IGES format interchange files.
  1553.  
  1554. NOTE:  The format of IGES files and the mapping performed to translate
  1555. between AutoCAD drawing information and IGES are described in the separate
  1556. AutoCAD / IGES Interface Specifications document (one of the items supplied
  1557. when you return your AutoCAD license registration card).
  1558.  
  1559.  
  1560. C.4.1  IGESOUT Command
  1561.  
  1562. You can generate an Initial Graphics Exchange Standard (IGES) interchange
  1563. file from an existing AutoCAD drawing by means of the Drawing Editor's
  1564. IGESOUT command.  The command format is:
  1565.  
  1566.     Command:  IGESOUT   File name:  (name or RETURN)
  1567.  
  1568. The default name for the output file is the same as that of the current
  1569. drawing, but with a file type of ".igs".  If you specify an explicit file
  1570. name without including a file type, ".igs" is assumed. If a file with the
  1571. same name already exists, it is deleted.
  1572.  
  1573.  
  1574. C.4.2  IGESIN Command
  1575.  
  1576. An IGES interchange file can be converted into an AutoCAD drawing by means
  1577. of the IGESIN command.  First enter the Drawing Editor using the "Create
  1578. new drawing" task from the Main Menu.  Then issue the IGESIN command.
  1579.  
  1580.     Command:  IGESIN   File name:  (name)
  1581.  
  1582. Enter the name of the IGES file to be loaded.
  1583.  
  1584. If a serious error is encountered, the input process is halted and an error
  1585. message is displayed reporting where the error was found.  The partial
  1586. drawing is not discarded.
  1587.  
  1588.  
  1589.  
  1590.  
  1591.  
  1592.  
  1593.  
  1594.  
  1595.  
  1596.  
  1597.  
  1598.  
  1599.  
  1600.  
  1601.  
  1602.  
  1603. 28
  1604.                                    (C) Drawing Interchange and File Formats
  1605.  
  1606. C.5  Slide File Format
  1607.  
  1608. AutoCAD slide files are screen images written by the MSLIDE command and
  1609. read by the VSLIDE command.  This section describes the format of slide
  1610. files, for the benefit of developers who wish to incorporate support for
  1611. AutoCAD slides into their programs.
  1612.  
  1613. This information is for experienced programmers, and is subject to change
  1614. without notice.
  1615.  
  1616. The general format of a slide file is:
  1617.  
  1618.    1.  Header (31 bytes)
  1619.    2.  One or more data records (variable length)
  1620.  
  1621. All coordinates and sizes written to the slide file reflect the graphics
  1622. area of the display device from which the slide was created, with point
  1623. (0,0) located at the lower left corner of the graphics area.  For AutoCAD
  1624. Release 9 and later, the slide file header consists of the following
  1625. fields:
  1626.  
  1627.       Field       Bytes                     Description
  1628.  Id string          17   "AutoCAD Slide" CR LF ^Z NUL
  1629.  
  1630.  Type indicator     1    Currently set to 86 (decimal).
  1631.  
  1632.  Level indicator    1    Currently set to 2.
  1633.  
  1634.  High X dot         2    Width of the graphics area - 1, in pixels.
  1635.  
  1636.  High Y dot         2    Height of the graphics area - 1, in pixels.
  1637.  
  1638.  Aspect ratio       4    Aspect ratio (horizontal size / vertical size in
  1639.                          inches) of the graphics area, scaled by
  1640.                          10,000,000.  This value is always written with
  1641.                          the least significant byte first.
  1642.  
  1643.  Hardware fill      2    Either 0 or 2 (value is unimportant).
  1644.  
  1645.  Test number        2    A number (1234 hex) used to determine whether
  1646.                          all 2-byte values in this slide file were writ-
  1647.                          ten with the high byte first (as by Intel
  1648.                          8086-family CPUs) or the low byte first (as by
  1649.                          Motorola 68000-family CPUs).
  1650.  
  1651. Data records follow the header.  Each data record begins with a 2-byte
  1652. field whose high-order byte is the record type.  The remainder of the
  1653. record may be composed of 1-byte or 2-byte fields, as described in the fol-
  1654. lowing table.  To determine whether the 2-byte fields are written with the
  1655. high byte first or the low byte first, examine the Test number field of the
  1656. header, described above.
  1657.  
  1658.  
  1659.  
  1660.                                                                          29
  1661. AutoCAD Reference Manual
  1662.  
  1663.      Record    Length      Meaning                Description
  1664.    type (hex)  (bytes)
  1665.     00 - 7F       8        Vector      The from-X coordinate for an
  1666.                                        ordinary vector.  From-Y, to-X,
  1667.                                        and to-Y follow in that order, as
  1668.                                        2-byte values.  The from point is
  1669.                                        saved as the last point.
  1670.     80 - FA       -       Undefined    Reserved for future use.
  1671.        FB         5     Offset vector  The low-order byte and the fol-
  1672.                                        lowing three bytes specify the
  1673.                                        endpoints (from-X, from-Y, to-X,
  1674.                                        to-Y) of a vector, in terms of
  1675.                                        offsets (-128 to +127) from the
  1676.                                        saved last point.  The adjusted
  1677.                                        from point is saved as the last
  1678.                                        point for use by subsequent vec-
  1679.                                        tors.
  1680.        FC         2      End of file   The low-order byte is 00.
  1681.        FD         6      Solid fill    The low-order byte is always
  1682.                                        zero.  The following two 2-byte
  1683.                                        values specify the X and Y coor-
  1684.                                        dinates of one vertex of a poly-
  1685.                                        gon to be solid-filled.  3 to 10
  1686.                                        such records occur in sequence.
  1687.                                        A Solid fill record with a nega-
  1688.                                        tive Y coordinate indicates the
  1689.                                        start or end of such a flood
  1690.                                        sequence.  In the start record,
  1691.                                        the X coordinate indicates the
  1692.                                        number of vertex records to
  1693.                                        follow.
  1694.        FE         3        Common      This is a vector starting at the
  1695.                           endpoint     last point.  The low-order byte
  1696.                            vector      and the following byte specify
  1697.                                        to-X and to-Y in terms of offsets
  1698.                                        (-128 to +127) from the saved
  1699.                                        last point.  The adjusted to
  1700.                                        point is saved as the last point
  1701.                                        for use by subsequent vectors.
  1702.        FF         2       New color    Subsequent vectors are to be
  1703.                                        drawn using the color number
  1704.                                        indicated by the low-order byte.
  1705.  
  1706. If a slide contains any vectors at all, a New color record will be the
  1707. first data record.  The order of the vectors in a slide, and the order of
  1708. the endpoints of those vectors, may vary.
  1709.  
  1710. For example, the following is an annotated hex dump of a simple slide file
  1711. created on an IBM PC/AT with an IBM Enhanced Graphics Adapter.  The slide
  1712. consists of a white diagonal line from the lower left corner to the upper
  1713. right corner of the graphics area, a green vertical line near the lower
  1714. left corner, and a small red rectangle at the lower left corner.
  1715.  
  1716.  
  1717. 30
  1718.                                    (C) Drawing Interchange and File Formats
  1719.  
  1720.   41 75 74 6F 43 41        Id string ("AutoCAD Slide" CR LF ^Z NUL)
  1721.   44 20 53 6C 69 64
  1722.   65 0D 0A 1A 00
  1723.   56                       Type indicator (86)
  1724.   02                       Level indicator (2)
  1725.   3C 02                    High X dot (572)
  1726.   24 01                    High Y dot (292)
  1727.   0B 80 DF 00              Aspect ratio (14,647,307 / 10,000,000 = 1.46)
  1728.   02 00                    Hardware fill (2)
  1729.   34 12                    Test number (1234 hex)
  1730.   07 FF                    New color (7 = white)
  1731.   3C 02 24 01 00 00 00 00  Vector from 572,292 to 0,0.  572,292 becomes
  1732.                            "last" point
  1733.   03 FF                    New color (3 = green)
  1734.   0F 00 32 00 0F 00 13 00  Vector from 15,50 to 15,19.  15,50 becomes
  1735.                            "last" point
  1736.   01 FF                    New color (1 = red)
  1737.   12 FB E7 12 CE           Offset vector from 15+18,50-25 (33,25) to
  1738.                            15+18,50-50 (33,0).  33,25 becomes "last" point
  1739.   DF FE 00                 Common-endpoint vector from 33,25 to
  1740.                            33-33,25+0 (0,25).  0,25 becomes "last" point
  1741.   00 FE E7                 Common-endpoint vector from (0,25) to
  1742.                            0+0,25-25 (0,0).  0,0 becomes "last" point
  1743.   21 FE 00                 Common-endpoint vector from (0,0) to
  1744.                            0+33,0+0 (33,0).  33,0 becomes "last" point
  1745.   00 FC                    End of file
  1746.  
  1747.  
  1748. Old Slide Header
  1749.  
  1750. The slide format described above is that produced by AutoCAD Release 9 and
  1751. later, and is portable among all computers running AutoCAD Release 9 or
  1752. later.  Previous versions of AutoCAD (as well as AutoShade 1.0 and
  1753. AutoSketch 1.02) produce slides with a somewhat different header, as shown
  1754. below.
  1755.  
  1756.       Field       Bytes                     Description
  1757.  Id string          17   "AutoCAD Slide" CR LF ^Z NUL
  1758.  Type indicator     1    86 (decimal).
  1759.  Level indicator    1    1 (old format).
  1760.  High X dot         2    Width of the graphics area - 1, in pixels.
  1761.  High Y dot         2    Height of the graphics area - 1, in pixels.
  1762.  Aspect ratio       8    Aspect ratio (horizontal size / vertical size in
  1763.                          inches) of the graphics area, written as a
  1764.                          floating-point number.
  1765.  Hardware fill      2    Either 0 or 2 (value is unimportant).
  1766.  Filler byte        1    Unused
  1767.  
  1768. Note that the old-format header does not contain a Test number field.  The
  1769. floating-point aspect ratio value and all two-byte integers are written in
  1770. the native format of the CPU used to create the file (for 8086-family CPUs,
  1771. IEEE double-precision and low byte first).  Old-format slide files are not
  1772. portable across machine types, but they can be read by any version of AutoCAD
  1773. running on the same CPU type as the CPU with which the slide was created.
  1774.  
  1775.                                                                          31
  1776. AutoCAD Reference Manual
  1777.  
  1778. C.6  Slide Library File Format
  1779.  
  1780. This section describes the format of AutoCAD slide libraries (Release 9 and
  1781. later), for the benefit of developers who wish to incorporate support for
  1782. slide libraries into their programs.
  1783.  
  1784. This information is for experienced programmers, and is subject to change
  1785. without notice.
  1786.  
  1787. The general format of a slide library is:
  1788.  
  1789.   1.  Header (32 bytes)
  1790.       "AutoCAD Slide Library 1.0" CR LF ^Z NUL NUL NUL NUL
  1791.   2.  One or more slide directory entries (36 bytes each)
  1792.   3.  One or more slides (variable length)
  1793.  
  1794. Slide directory entries have the following format:
  1795.  
  1796.   1.  Slide name (NUL terminated) (32 bytes)
  1797.   2.  Address of slide within library file (4 bytes)
  1798.  
  1799. The slide address is always written with the low byte first.  Each slide to
  1800. which the directory points is a complete slide file as described in the
  1801. previous section.  The end of the slide directory is signified by an entry
  1802. with a null slide name (first byte is NUL).  A slide library may contain a
  1803. mixture of old-format and new-format slides.
  1804.  
  1805.  
  1806. <end of document>
  1807.  
  1808.  
  1809.  
  1810.  
  1811.  
  1812.  
  1813.  
  1814.  
  1815.  
  1816.  
  1817.  
  1818.  
  1819.  
  1820.  
  1821.  
  1822.  
  1823.  
  1824.  
  1825.  
  1826.  
  1827.  
  1828.  
  1829.  
  1830.  
  1831. 32
  1832.  
  1833.  
  1834.