Transitioning from 2d to 3d autocad drawings

Sunday, May 10, 2009

AutoCAD 2010 Contextual Tab States 101

Please Click the Pic ,you can see Quality Photos

In a previous post, I described contextual ribbon tabs and I listed the default editing modes for which context-sensitive ribbon tabs are displayed including blocks, text, meshes, in-place references, section planes, and tables. The context-sensitive behavior is controlled by contextual tab states, which you can view and modify in the Customize User Interface (CUI) dialog box.

  1. Use the CUI command to access the Customize User Interface dialog box
  2. Expand the Ribbon node
  3. Expand the Contextual Tab States node

A long list of contextual tab states is displayed. Most of them relate to object selection (Arc selected, Attribute selected, Block selected). Others relate to editing modes (Block Editor Mode, Reference Editing Mode). The contextual tab states that are already defined can be expanded to show which tabs will display in those modes.

RibbonContextTabStates01


For example, the Block Editor Contextual Tab and the Block Editor – Close Contextual Merged Tab automatically displays when you enter the Block Editor.
RibbonContextTabStates02

The DGN Underlay Contextual Tab automatically displays when you select a DGN underlay.

RibbonContextTabStates03

While the contextual tab states indicate which tabs to display under what conditions, they do not define the tabs themselves. The tabs are defined, just as they’ve always been, under the Ribbon>Tabs node in the CUI editor.

Monday, March 16, 2009

Exploring the autolisp SSGET function - part 2


Ok, getting back to the last (ssget) call in part 1...

(ssget "_W"

(list 5.0 5.0)(list 8.0 8.0)
'((0 . "CIRCLE")(-4 . "<")(40 . 1.0))
)

The "_W" is the window selection method. Then we are passing it two points (5,5 and 8,8). Then we are telling it to only accept circle entities. The last two pieces tell it to only accept circles whose radius (DXF code 40) is less than 1.0.

So in summary, this bit of code will search the entire database and return only circles whose radius is less than 1.0 who also lie inside a polygon defined by the corners of 5,5 and 8,8.

The -4 group code is a special code that lets you perform relational testing. There are codes for equal, not equal, less than, less than or equal, greater than, greater than or equal, and two bitwise operators.

This type of filtering works great for locating entities on a certain layer, or that have a certain color or linetype.

(ssget "_X"

'((0 . "LINE")(8 . "TEMP"))
)

The code above will select all LINE entities on the TEMP layer.

(ssget "_X"

'((8 . "TEMP")(62 . 3))
)

The code above will select all entity types on the TEMP layer whose color is green (3). Be careful when filtering for color, linetype and lineweight. These filters only apply if the particular property is explicitly set. In the example above, if the color of all entities on the TEMP layer is set to BYLAYER, the selection set will be empty, even if the color of layer TEMP is green (3).


You can use wildcard matching in selection set filtering also.

(ssget "_X"

'((0 . "DIMENSION")(3 . "DIM##"))
)

The code above will select all dimensions whose dimstyle is DIM## (where the # represents a single numeral). For example, a dimension whose dimstyle is DIM55 or DIM39 will be selected. Dimensions with a dimstyle of DIM4T, DIM777, DIMKK, or DIM are not selected. Other wildcard syntax can be found under the (wcmatch) function in the Autolisp Reference Guide.

You may have figured it out by now, but "AND" is implied when when combining multiple filters such as above. In other words, in the above example, it's going to find entities that have the type dimension AND whose dimension style is DIM##. There may be cases were you want to specify "AND", especially if you are using an "OR" also.

(ssget "X"

'(
(-4 . " (-4 . " (0 . "CIRCLE")
(40 . 1.0)
(-4 . "AND<")
(-4 . " (0 . "LINE")
(8 . "ABC")
(-4 . "AND<")
(-4 . "OR<")
)
)

The code above is straight out of the Autolisp Developer's Guide. It creates a selection set out of CIRCLE entities that have a radius of exactly 1.0 and LINE entities on the ABC layer. If you did not use the "OR" condition, then the (ssget) function would be trying to find entities that are a CIRCLE and a LINE, which is obviously impossible. Let's look at one more example.

(ssget '((0 . "POLYLINE,LWPOLYLINE")(-4 . "&")(70 . 1)))


Last, but not least... The code above uses a "bitwise AND" to filter on a bit coded DXF code. In this case, DXF code 70 on a POLYLINE and/or LWPOLYLINE. The goal here is to create a selection set of closed polylines. If DXF code 70 has the "1" bit set, this indicates a closed polyline. However, we cannot simply filter for DXF code 70 = 1, because this is a bit coded field. If LTGEN is turned on and it's a closed polyline, then DXF code 70 will equal 129, not 1. This is why you must use the "&" (Bitwise AND) special filter.

There is much more information in the Autolisp Developer's Guide on advanced selection set handling. Good luck and post some of your examples in the comments section if you want.

Exploring the autolisp SSGET function - part 1


If you have written routines with Autolisp, then you have probably used the (ssget) function to select entities on the screen, either automatically or by prompting the user.

(ssget) is a powerful function that can do more than you probably realize. Let's look at a simple example.

(ssget '((0 . "TEXT")))

This prompts the user for a general selection set, but only TEXT entities are added to the resulting selection set.

(ssget '((0 . "*TEXT")))

Notice the wild card that was added. This is the same as above, except now any entity type that ends in TEXT is added to the selection set. At first, this looks like a good way to select TEXT and MTEXT, and it is. However, you have to be careful because this will also select RTEXT entities, and if your code is not equipped to deal with RTEXT, it may fail.

(ssget '((0 . "MTEXT,TEXT")))

This is a better way to select MTEXT and TEXT entities. But what if you don't want to bother the user to select entities, you just want to select ALL the MTEXT and TEXT entities in the drawing?

(ssget "_X" '((0 . "MTEXT,TEXT")))

Notice the "_X" that was added. This tells the (ssget) function to evaluate every entity in the drawing and then the filtering mechanism will filter out everything except MTEXT and TEXT. Entities on frozen layers are included when using the "_X" selection method.


Let's look at some other selection methods.

(ssget "_W" (list 5.0 5.0)(list 8.0 8.0))

Above is an example that will select objects inside a window from 5,5 to 8,8.

(ssget "_CP" (list (list 5.0 5.0)(list 8.0 8.0)(list 8.0 3.0)))

The line above will select all entities inside or touching a triangle defined by the points 5,5; 8,8; and 8,3. The CP is for crossing polygon.


The power of (ssget) comes from the incredibly fast filtering that it performs. Can you imagine having to evaluate an entire database of entities and manually filter out all the circles whose radius is less than 1.0 that fall inside a particular polygon? (ssget) can do this very fast. Example below.

(ssget "_W"
(list 5.0 5.0)(list 8.0 8.0)
'((0 . "CIRCLE")(-4 . "<")(40 . 1.0))
)

More details on this code and other examples in part 2.

AutoCAD Design Challenge… See the results


Wow! There are a lot of ways to get to the same result in AutoCAD!

Thanks to all of you that responded to the Autocad design chalnge Feel free to continue responding (in the comments section of the original post) with your solutions! In the mean time I decided to start posting some of the existing solutions with graphics and demos to help you visualize. There’s something to be learned from each solution… even if a particular step isn't the quickest option for this particular drawing, it might be for a different drawing!

This solution combines several of your solutions into one. It assumes default (install) values, options, and settings and it primarily uses the command line interface (CLI). I counted every click and keystroke (that was the REAL challenge) and included them in parenthesis at the end of each step. If you tend to use buttons and menus instead of the CLI, don’t let this scare you. The buttons and menus are a more intuitive and graphical way to access commands but when it comes to clicks and picks, the CLI is usually more efficient.

You can view a video of this solution or follow the steps below.

ADC01


X pick (Explode the polyline - 4)
O E 4 pick pick pick pick (Offset the two top lines 4 units up, automatically erasing the two original lines - 12)

ADC02

F M pick pick pick pick pick pick (Fillet the new lines and the two sets of parallel lines. The multiple options saves a few clicks. Also, notice fillet of two parallel lines automatically creates a 180deg arc between them - 11)

ADC03

pick pick pick (Grip edit to move the center of the circle to the center of the arc - 3)
pick pick pick (Gotta love grips! - 3)

ADC04

pick pick erase (In this case it saves you a click to select the Erase tool from the toolbar/ribbon rather than “3 ”... assuming it’s currently displayed, which it is by default - 3)

ADC05

So, if I counted correctly, the grand total for this solution is 36 picks, clicks, and keystrokes. Not bad!

AutoCAD Design Challenge… You game?


I’ve been working with AutoCAD 2010 so much that I’ve practically forgotten the *old* way of doing things. Maybe you can help me out! I’ve posted two drawings BEFOREGC.DWG and AFTERGC.DWG. Each drawing includes a closed polyline and two circles.

BeforeAfter

The only difference between the two drawings is the width of the part as indicated by the red dimensions.

BeforeAfterDims

The challenge is to edit the “BEFORE” drawing so that it matches the “AFTER” drawing using default AutoCAD functionality in AutoCAD 2009 or older with the fewest number of clicks. Don’t include dimensions; I only included them in the image for clarification. If you’re up for the challenge, please submit your solution as a comment in this post. Include the number of clicks and the steps to reproduce your solution.

So, what do you think? You game?

AutoCAD 2010... a closer look at the New Features Workshop


If you’re like me, when you install a new version of AutoCAD you want to jump right in and try it out! I quickly dismiss all the windows that pop up (Initial Setup, New Features Workshop) so that I can start using the new tools.

NFW1


Suddenly I find myself staring at a blank AutoCAD drawing with no idea what to do. Oh, if I had only taken the time to view the New Features Workshop (NFW), I would know what’s new and where to start! Well, lucky for me (and you), the NFW is available anytime… even if you hastily dismissed it initially!
Instead of staring helplessly at the blank AutoCAD drawing, select New Features Workshop from the Help menu in the upper right corner of the display.

NFW2

The NFW is an interactive Flash-based tool that introduces you to what’s new in AutoCAD. And, it isn’t only what’s new in AutoCAD 2010. If you’re upgrading from AutoCAD 2007, AutoCAD 2008, or AutoCAD 2009, you can use the NFW to get a quick overview of what’s new to YOU!


For example, if you just upgraded from AutoCAD 2008, select the AutoCAD 2009 option in the NFW to view a list of functionality that was added in AutoCAD 2009, such as the Action Recorder. You can read a brief description and view a demonstration video. Although the demo videos were created in that particular release and it may vary slightly from the AutoCAD 2010 interface, the general idea is the same and will help guide you in the right direction.

NFW4

And, of course, you’ll want to check out the new AutoCAD 2010 functionality. Did I mention this is my FAVORITE release EVER? Use the NFW to learn about free-form modeling, parametrics, PDF support, and more!

NFW5

Only a few more weeks until you can get your hands on this awesome release of AutoCAD!

AutoCAD 2010... A closer look at the Quick Access Toolbar


The Quick Access toolbar, which was introduced in AutoCAD 2009, has been enhanced in AutoCAD 2010. The changes from 2009 (left) to 2010 (right) are subtle but significant.

QuickAccessToolbar

The Quick Access Toolbar in AutoCAD 2010 offers increased flexibility as well as consistency with other Windows® applications. The Undo and Redo tools include history support and the right-click menu includes new options that enable you to easily remove tools from the toolbar, add separators between tools, and display the Quick Access toolbar above or below the ribbon.

QuickAccessToolbar2

In addition to the right-click menu, the Quick Access toolbar includes a new flyout menu, which displays a list of common tools that you can select to include in the Quick Access toolbar. The flyout menu provides easy access to additional tools using the Command List pane in the CUI Editor. Other options enable you to show the menu bar or display the Quick Access toolbar below the ribbon.

QuickAccess3

You can further customize the Quick Access toolbar using the new Quick Access toolbars node in the CUI Editor. Create multiple versions of the Quick Access toolbar and then add them to the appropriate workspaces.

QuickAccess4

AutoCAD 2010…. A closer look at the Ribbon


The AutoCAD ribbon, introduced in AutoCAD 2009, was a dramatic change from the traditional user interface. It was a new concept to many people, especially those that weren’t yet using Office 2007. Well, a year later, the shock seems to be wearing off and many AutoCAD users are embracing the ribbon! In fact, a recent survey of AutoCAD 2010 beta participants indicates that the ribbon is one their FAVORITE tools. Granted, the ribbon in AutoCAD 2010 offers some significant improvements over the original AutoCAD 2009 version. In AutoCAD 2010, the ribbon provides greater flexibility, easier access to tools, and consistency across Autodesk applications.

You can drag a ribbon panel off the ribbon to display it as a sticky panel. Sticky panels display until you choose the option to Return Panels to Ribbon. They remain visible even if you select a different tab!

Ribbon01

The vertical ribbon, which can be displayed by undocking the ribbon from its horizontal position, has been updated to show the tab names along the side. The panel titles are displayed by default and those with additional tools include slide-out panels. When resizing the vertical ribbon, buttons automatically flow to the next or previous row and other elements, such as slider bars, automatically shorten or lengthen.

Ribbon02

In addition to these enhancements, the AutoCAD 2010 ribbon provides more customization options. Using the CUI (Customize User Interface) editor, you can import a customized dashboard and define contextual ribbon tab states.

AutoCAD 2010… a closer look at the Application Menu


AutoCAD 2010 includes a new Application Menu, which is accessible from the big “A” in the upper left corner of the AutoCAD display. At first glance, you might think the Application Menu is just a minor variation of the Menu Browser, which was introduced in AutoCAD 2009. There are many similarities, but there are plenty of differences as well. Let’s take a look at them side-by-side.

The most noticeable difference is the menu list on the left side. In AutoCAD 2009, all of the former drop-down menus (File, Edit, Draw, etc) are listed vertically. None of those menus are listed in the AutoCAD 2010 Application Menu. Instead, the AutoCAD 2010 Application Menu includes tools that are common across software applications.

ApplicationBrowser01

For example, compare the application menus from Microsoft Office Word 2007 (left) and AutoCAD 2010 (right). A notable difference between these two menus is the Recent/Open documents toggle at the top of the AutoCAD 2010 Application Menu.

ApplicationBrowser02

Using the Recent/Open Documents toggle you can display a list of recently accessed documents (left) or open documents (right).

AutoCAD 2010… a closer look at Initial Setup


The first time you launch AutoCAD 2010, you’re presented with the Initial Setup window. The Initial Setup enables you to tailor the AutoCAD environment to meet your needs. You can specify an industry as well as workspace and drawing template preferences.

01_InitialSetup

If you’re not ready to specify the setup options or if you just can’t wait to see the new AutoCAD, you can skip the initial setup and then access it later from the User Preferences tab of the Options dialog box.

02_InitialSetup

When you specify Initial Setup options, AutoCAD automatically creates a new workspace based on your choices and sets it active.

03_InitialSetup

Good Question: Sun Properties


Today's good question comes from Ivana, who asked why she could no longer edit the Sun Properties Color in AutoCAD 2008. The color is displayed in the Properties window but it is greyed out.

Visualization11

A new variable, LIGHTINGUNITS, was added in AutoCAD 2008 to support photometric lighting. When that variable is enabled, the Sun color can not be edited. If you change the value of LIGHTINGUNITS to 0, photometric lighting is disabled and you can specify the Sun color as you did in the past.

Here is more information from the AutoCAD 2008 Help system:

LIGHTINGUNITS

Controls whether generic or photometric lights are used, and indicates the current lighting units
When this system variable is set to 1 or 2, photometric lighting is enabled; otherwise standard (generic) lighting is used.

0 No lighting units are used and standard (generic) lighting is enabled
1 International lighting units are used and photometric lighting is enabled
2 American lighting units are used and photometric lighting is enabled

Thanks to Ivana for the good question and Lance (from the AutoCAD team) for helping find the answer.

Good Question: Animation Paths


Today’s good question comes from Binoy. He asked how you can create an animation of an AutoCAD model using a path.

You can use the ANIPATH command, which was introduced in AutoCAD 2007. It is only accessible from the View menu (View>Motion Path Animations) or by typing the command name. Using ANIPATH, you can specify a point or a path for both the camera and the target (where the camera is looking). For example, the camera could be located on a fountain in the middle of a park and the target path could be a circle that goes around the park. The resulting animation would show the park as the camera swivels around a stationary point on the fountain. If, on the other hand, you used the circle as the camera path and the point as the target, the resulting animation would show the fountain as the camera traveled around it.

If you plan on using a path for either the camera or the target (or both), you’ll need to create the path geometry before launching the ANIPATH command. You can use just about logical object for a path (circle, line, polyline, ellipse, spline, etc). You don’t have to define a “point” object in order to specify a point as the camera or target. You can simply snap to an existing object or enter coordinate values.

Anipath

Kitchen Remodel: Realistic versus Reality


If you've attended any of my AutoCAD 2007 presentations, you've probably heard me talk about our recent kitchen remodel. This is what the kitchen looked like when we bought our house last summer.

Kitchenbefore1_1

Kitchenbefore2

Construction began late last fall and the design decisions were sometimes overwhelming. Fortunately, we were able to use the new conceptual design and visualization tools in AutoCAD 2007 (pre-release) to help us make decisions that would satisfy our wants and needs.

Soon after construction began and (fortunately) before the cabinets were ordered, we decided to modify the kitchen layout based on our appliance choices. Imagine that... clients changing their minds! That never happens! Right? Using the modeling tools in AutoCAD 2007 my husband and I were able to rearrange the design based on our new appliance sizes and feel confident that the space and flow of the kitchen would still meet our needs. In addition, we used the visualization tools to help us choose the tile design, cabinet and granite colors, floor covering, and, let's not forget, the wall color. I wanted to paint some accent walls burgundy but I wasn't about to take the heat from my husband if it was "too pink", "too red", "too dark" or "too much"! So, I painted the walls using AutoCAD first!

For realistic images of the space, I used the Render tool, which takes into consideration lighting and special material properties such as reflectivity.

Rendering

However, I did most of my visualization work using the Realistic visual style (or a slightly customized version of it). It was easy for us to switch between visual styles. We could assign different visual styles to the many different named views. And, it gave us a good sense of how the space would look using various materials.

Kitchen1_2

And now for reality! So, what do you think?

Dsc02077

Kitchen2

Yes... we still have our 15-year-old dinette set (above). Do you recognize it from the AutoCAD Release 12 Reference Manual? One of these days we'll have time to shop for a new dinette set.

Kitchen3

But wait, there are more burgundy walls to consider. While remodeling the kitchen, we also remodeled the family room and updated the entry way. But those images will have to wait for another time! :-)

Enhancing your views!


In AutoCAD 2007 you can quickly add realism to your model by associating background images with your named views.

Which view do you think looks more realistic?

View1_1

It’s easy to associate background images with your named views!

First find (or take) a digital photo of the scene you want to use as the background. I took this photo out the back door of my house.

Dsc00941

Use the navigation tools to set an appropriate viewpoint for your model. The Walk tool as well as the Camera and Target Positions are very useful for setting the viewpoint. You can access these tools from the 3D Navigate control panel of the Dashboard.

Navigate1

Some other things to consider when creating your named views include layer visibility, materials, and visual styles. However, you can always change these properties later.

After setting the appropriate view point (and other properties), use the View Manager to create or edit a named view. You can access the View Manager using the VIEW command or by selecting Manage Views from the view drop-down list in the Dashboard.

View_list

In the View Manager, choose New to access the New View dialog box. In the New View dialog box, enter the view name. You can set the background image in the New View dialog box when you create the new view or you can set it in the View Manager after you’ve created the view. Choose OK in the New View dialog box to finish creating the named view. I’ll show you how to add an image to an existing named view.

In the View Manager, select the named view to which you want to add a background image. By default, the Background Override is set to . From the drop-down list, select Image. If an image was not previously assigned, the Background dialog box will automatically display, if an image has already been assigned to the view, you can select Edit to access the Background dialog box.

View_manager

In the Background dialog box, choose Browse and navigate to the digital photo that you want to use. You can choose Adjust Image to change the scale and position (offset) of the image in relation to the view. For example, I used the same photo for both of these views out the back of the house. By adjusting the scale and offset, I was able to position the image for the most interesting effect in each view.

Views

Previews

Saturday, January 3, 2009

Switching workspaces in AutoCAD 2009

Workspace switching has been made easier in AutoCAD 2009 by a new tool in the status bar that mimics the functionality in the current Workspaces toolbar.

See the animation below.

AutoCAD 2009 status bar workspaces

This tool is visible by default no matter what workspace is current, unlike the Workspaces toolbar in earlier versions.


http://cadpanacea.com/node/105

AutoCAD 2009 - Bonus Pack 2 - PDF enhancements


If you have not already heard by now, Autodesk has released "Bonus Pack 2" for AutoCAD 2009. This update includes two PDF enhancements. The first gives you the ability to attach PDF files as underlays. The second includes enhancements to PDF output.

The download is only available for AutoCAD 2009, AutoCAD Revit Architecture Suite 2009, and AutoCAD Revit Structure Suite 2009. Of course it is also only available to subscription customers.

To get this "Bonus Pack", log in to the subscription center and a link should be listed on the front page.

PDF Attach

The new command for attaching a PDF is named PDFATTACH. You can also use the right-click menu in the External References palette. If you attach a vector PDF, you can use object snaps to snap to geometry in the PDF file. This is controlled by the PDFOSNAP system variable. If the PDF contains layer information, use the PDFLAYERS command for on/off control.

You can use the PDFCLIP command to perform clipping operations on the PDF. The frame outline on an attached PDF is controlled by the PDFFRAME system variable. You can adjust the visible properties of the PDF including fade and contrast by using the PDFADJUST command.

PDF Output

A new PC3 file named DWG to PDF Bonus Pack.PC3 is created that includes the enhancements. These enhancements include increased resolution. The readme file recommends a setting of at least 600dpi. TrueType fonts are now embedded instead of converted to graphics. This should reduce file sizes of the PDF files.

Merge control settings are also available in this new driver. This is the "Lines Merge" vs. "Lines Overwrite" setting. You can include layer information in the output PDF now, and automatically display the finished PDF in your PDF viewer when the plot command is finished.

Summary

These are two welcome additions. A quick run through of each feature produced positive results.

It's a shame that this "Bonus Pack" is only for subscription customers. The enhancements to the PDF plot driver should have been included in the initial release in AutoCAD 2007 since these are basic requirements. The PDF attachment feature has been at or near the top of the AUGI wish list for a long time now. Unfortunately, non-subscription users will have to keep wishing for now.

Selection highlighting in AutoCAD

Starting in AutoCAD 2006, you can specify a highlight color and opacity to your selection areas as illustrated by the green area shown in the example below.

image

Below is a description of these options and how to change them.

image

If you want to go through the OPTIONS dialog, open it up and switch to the Selection tab. Click on the Visual Effect Settings button. Everything you need to control is there on the right half of this dialog, shown above.

If you want to change these options with code or a macro, here are the system variable names to do that.

  • SELECTIONAREA - turns this feature off (0) or on (1).
  • WINDOWAREACOLOR - sets the color used during a window selection (1-255)
  • CROSSINGAREACOLOR - sets the color used during a crossing window selection (1-255)
  • SELECTIONAREAOPACITY - determines the amount of transparency used by the selection area colors (0-100)

image

Here is an example of setting these variables using lisp

(setvar "selectionarea" 1)
(setvar "windowareacolor" 30)
(setvar "crossingareacolor" 51)
(setvar "selectionareaopacity" 30

More ..
http://cadpanacea.com

Sunday, December 7, 2008

AutoCAD 2009 Subscription Bonus Pack 3 – 3D Printing!!


The newly released AutoCAD 2009 Subscription Bonus Pack #3 provides new and improved 3D printing tools.

STL Output
STL output had been improved with updates to the existing STLOUT and EXPORT commands. Both of these methods for producing STL (stereolithography) files now enable you to select more than one solid and the model is no longer required to lie in the positive XYZ octant of the WCS.

3D Printing
The new 3DPRINT command, available on the Subscription tab of the ribbon, takes advantage of the improvements to STL output as well as providing you with easy access to 3D Printing support and services.

3DPrint01

If you select the option to learn more about preparing a 3D model for printing, the Help window is displayed with valuable guidelines to help you avoid printing errors or broken parts when sending your model to a 3D printing service.

3DPrint02

When you’re ready to send the 3D model to a printing service, choose the Continue option. The Send to 3D Print Service dialog box is displayed with a preview image and output dimensions, which you can modify. You can then specify the STL file name and location. After creating the STL file, AutoCAD automatically launches a browser window where you can request a quote from one of the featured 3D Printing Service Providers.

3DPrint03

The result is a 3D prototype of your AutoCAD model!

Subscription Bonus Pack 2: A closer look at PDF underlays


After installing the AutoCAD 2009 Subscription Bonus Pack 2, you’ll find PDF listed as one of the available file types in the External Reference Manager. You can attach a PDF file as an underlay to a drawing in the same way that you attach other externally referenced files including DWG, DWF, DGN, and images. You can also use the new PDFATTACH command, available on the Subscription tab in the ribbon, or the command line version, -PDFATTACH. In either case, you’re prompted to select the PDF file and specify typical attachment information including path type, insertion point, scale, and rotation.

PDFUnderlay01

After you’ve attached a PDF file to the drawing, you can control the display of the PDF frame, control the display of layers, snap to key points, adjust display properties, and clip the PDF attachment.

PDF Frame
A new system variable, PDFFRAME, enables you to turn the PDF frames on or off. They must be turned on for the PDF attachment to be selectable.

PDF Layers
The new PDFLAYERS command enables you to control layer visibility for the select PDF attachment if the layer information was included in the PDF during the plot process.

PDFUnderlay02

Object Snaps
Snap to key point on PDF geometry using familiar object snaps. You can control this behavior, which is enabled by default, with the new PDFOSNAP system variable.

PDF Adjust
You can modify the appearance of a PDF attachment using the new PDFADJUST command, available on the Subscription tab of the ribbon. A command line version, -PDFADJUST, is also available. The controls include Fade, Contrast, and Monochrome and the changes you make affect the plotted output. Adjusting these settings does not alter the original file and does not affect other instances of the PDF underlay in the drawing. All of these settings, as well as an additional control to automatically adjust the underlay colors so they are visible against the drawing background color, are also available in the Properties palette for a selected PDF attachment.

PDF Clip
The new PDFCLIP command (available on the Subscription tab of the ribbon) enables you to clip the PDF attachment by specifying a rectangular or polygonal clipping boundary. You can turn clipping on and off, as well as delete it, using right-click menu options and you can edit the boundary with grips.

  © Blogger template 'Perfection' by Ourblogtemplates.com 2008

Back to TOP