home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / autocad / acadtut.arj / LESS2.EXE / LESS2.TXT < prev    next >
Text File  |  1990-08-10  |  4KB  |  111 lines

  1.                            Lesson 2
  2. Block & Wblock
  3. Array
  4. Fillet
  5. How to get a drawing from an archive
  6. Attdef
  7. Attedit
  8.  
  9. 5. Block and Wblock
  10.  
  11. Block is a command to group a "set" of entities together, so 
  12. that this set can have a name and be placed on a drawing in 
  13. many places. The three most important features about block are
  14. giving the set a name, and giving a place on the set which can 
  15. be used to orient the set on the drawing called ( base point of 
  16. insertion) and picking the entities for the set.
  17.  
  18. After a block has been made it is treated as one entity if you 
  19. want to erase one part of the block and pick it, the whole set 
  20. will be chosen for erasure.
  21.  
  22. Blocks, even though they may not be visible may be stored with 
  23. any particular drawing. When a Purge is preformed it will get 
  24. rid of any blocks which have not been called up in the drawing 
  25. during any drawing session. If the block has been used in the 
  26. drawing even if the layer it was placed on is off, the block 
  27. will be saved with that drawing and not purged.
  28.  
  29. Wblock very simply allows you to create a block and write it to 
  30. the hard drive for use in other drawings.
  31.  
  32. If you know that the block you want to use has been updated, 
  33. you may insert the block by
  34. command:(block to insert:)"blockname="
  35. The equal sign at the end of the block name will search the 
  36. standard Autocad paths for the blockname and if it all ready 
  37. exists in the drawing it will be updated with the new updated 
  38. block it found in the path.
  39.  
  40. If you want use a block but feel it must be modified for your 
  41. drawing. You may insert it by
  42. command:(block to insert:)"*blockname")
  43. The * allows the block to be inserted as its separate entities, 
  44. so it comes in "exploded". You may also use the explode command 
  45. to return a block to it separate entities after its placed on 
  46. the drawing however it does not effect the block which is 
  47. stored in the drawing.
  48.  
  49. 6. Fillet
  50. The command fillet is used to show two lines as an 
  51. intersection.
  52. The intersection may have a radius or it may have a radius of 0 
  53. inches or units for an absolute intersection. It will do a trim 
  54. or an extend as required between two lines.
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.                         Lesson 2 cont'd
  62.  
  63. To change the radius from 0 to any other measure use the switch 
  64. "R" after calling on fillet.
  65. command:Fillet (R/pick two lines:)"R"<CR> (enter radius):
  66. It will become effective the next time fillet is called.
  67.  
  68. Don't forget to reset it to 0 after you have made your 
  69. intersection.
  70.  
  71. It is also important to note, that, if the radius is greater 
  72. then 0, a third entity the radius now exists. Instead of two 
  73. lines, it is now two lines and an arc or radius.
  74.  
  75. If the line over-running the intersection is longer then either 
  76. entity, the entity will be trimmed instead of the over-run. 
  77. Care must be taken that the over-run of the entity to be 
  78. filleted is shorter then the entity.
  79.  
  80. 7.  Array (Hooray for Array)
  81. Array will allow you to chose any number of entities and make 
  82. copies in a row a specific distance apart or in rows and 
  83. columns at a specified distance or in a circle or arc. An 
  84. example of array is when you are starting a new floor plan the 
  85. stud marks are arrayed along the top and bottom this is an 
  86. example of two entities being arrayed with one row 16" apart.
  87. It would be a good idea to look this one up in the manual as 
  88. there are some switches and formats which can get to complex 
  89. for here.
  90.  
  91. 8. Archive file Retrieval
  92. This does not have anything to do with Autocad or the network.
  93. Because of our storage resources (Hard & Floppy Drive Space),
  94. we use a program called  PKZIP to take our drawing files and 
  95. compress them, allowing us to get more drawings on a disk.
  96. You can store (ZIP, compress) one file to its own zip file but 
  97. for expediency we use the multiple file technique.
  98. You may take several files and pack them into one file the size 
  99. of which is smaller than if the files were stored separately.
  100.  An individual drawing may be extracted from the file using 
  101. PKUNZIP   with the switch " -e"
  102. ex:
  103. PKUNZIP -e zipname.zip (A: or B: floppy drive )drawingname.dwg  
  104. <CR>
  105.  
  106. All the file names in the zip file may be seen with
  107. ex: PKUNZIP -v zipfilename.zip <CR>
  108.  
  109. The "unziped" file may be copied to your local hard drive or to 
  110. the network for you to work on.
  111.