AutoCAD Inventor :: Can Set A Drawing Scale

Jun 22, 2012

Can I set a drawing scale? If I want to print 1:2, 2:1 and so on? If so how?

View 8 Replies


ADVERTISEMENT

AutoCAD Inventor :: Scale Dimensions In IDW Drawing?

Jan 11, 2013

I'd like to take a set of ordinate dimensions and multiply all the values by 10. Is this possible, without overriding the values and making them static?

The reason I'm asking is because I'm making a flat layout sketch for pockets around a drum. So imagine taking a drum and rolling it out flat. In the direction along the drum I drew it as 1" = 1" and for the circumfrence direction I did 1" = 10° so I don't have sketch that is 13" x 360". So I need to scale the dimensions in 1 direction up by 10.

View 1 Replies View Related

AutoCAD Inventor :: ILogic Drawing Views Scale

Apr 18, 2013

I'm trying to put together some iLogic code to either check all the drawing views within a drawing sheet are all the same scale, or make the views all the same scale. These drawing sheets consist of a number of individual parts (they aren't projected views from a single part). 

This is for welded assemblies.  We are required to generate a profile drawing sheet outlining each part that makes up the assembly. We send these out as dwg files for laser cutting so its important that the views are all the same scale.

View 7 Replies View Related

AutoCAD Inventor :: Automatic Scale In The Drawing Table?

Jan 6, 2010

It is possible to put scale on drawing in inventor 2010? If is how?

View 4 Replies View Related

AutoCAD Inventor :: Drawing View Scale Default

Oct 7, 2011

Is there a way (IV2012) to have the drawing view default to 1:1 when inserting a detail into the sheet?  Now it tries to select a scale based on who knows what. 

View 8 Replies View Related

AutoCAD Inventor :: Set Drawing Scale To Title Block?

Oct 26, 2011

Is it possible to set the drawing Scale to the Title Block? Seems like it is missing parameter...

View 8 Replies View Related

AutoCAD Inventor :: ILogic And Changing Scale Of A Drawing

Nov 16, 2010

I have a piece of equipment that changes from 24" to 96" with 5 discrete sizes.  I am using ilogic to make all the changes required to the part. Any way that I can change the scale of a drawing using iLogic so that it fits better on my drawing and be adjusted every time.  I have multiple pages that most of the drawing views need to be changed every time.

View 9 Replies View Related

AutoCAD Inventor :: Set View In Drawing By Size And Not Scale?

Jan 17, 2013

I can control the size of my main drawing views using ilogic based on the models extents as there is a direct relationship between a parts length and the drawing view width. however, I have several isometric views that I scale according to the model size but in certain configurations of my model the ISO’s are completely the wrong scale for that particular view where the main views are ok.

I have a set area on my drawing sheet for the iso view and it would be more beneficial to control the size of the view rather than the scale of the view. I can read the height and width of a view so why can’t I control the size of a view but the height or width?

View 1 Replies View Related

AutoCAD Inventor :: Scale Detail Cross-section Hatching In Drawing?

Aug 7, 2013

Is it possible to scale the cross-hatching in a detail that was created from a section view so it looks better with the scale of a detail? If the scale factor of a detail is much larger than its parent, the cross-hatching is very sparse and detracts from clarity rather than adding to it.

View 2 Replies View Related

AutoCAD Inventor :: ILogic Automatic Drawing View Scale Label

Apr 17, 2012

what i am trying to do is create an iLogic rule that if your drawing view scale is set to the following ...

1:1, 1:2, 1:4, 1:8, 1:12, 1:!6, 1:24, 1:32, 1:48, etc. on the view label for that view it will diplay ...

SCALE: 1/2" = 1'-0"

and so on for the rest for the standard scale factors.

i know it will be some sort of a loop and it needs to check all views when ran for any changes.

i have never done any coding for the drawing side of inventor yet only model coding

View 6 Replies View Related

AutoCAD 2013 :: Scale Of Drawing Field Versus Scale Of Object

Jun 27, 2013

When I open a new drawing in my AutoCAD 2013 that I just recently installed last week, I encounter a problem that I am not familiar with from previus versions of AutoCAD I have worked on.  First of all, the units default to decimal, and I want them to default to architectural, with feet and inches.  I have to type UNITS in the command line every time I open a new drawing in order to adjust this.  I have AutoCAD for Architecture 2012 on another computer, and the program automatically defaults to architectural units upon opening up.  Just to let you know, the program I am having this difficulty  with is part of a package called Autodesk Building Design Suite 2013.  I was under the impression that it included AutoCAd for Architecture, but I think it has only standard AutoCAD.

The scale of the objects I draw vs. the scale of the drawing field is very out of proportion.  What I mean is, when I open a new drawing and draw a 30' -0" line, the line appears so long on the screen that I cannot see the whole object, even if I zoom out to the maximum.  I should be able to see the object in it's entirety.  In fact, when I draw a line that is only 12" long, even when the zoom is all the way out, the line looks huge in length.  I have tried adjusting the units to the architectural/inches setting of course, and I have tried adjusting the scale in model space from 1:1 to 1/4'=1'-0", but nothing is working.

View 4 Replies View Related

AutoCad :: Understanding Drawing Scale And Scale Factor?

Jul 8, 2004

I am having some problems getting the hang of applying the drawing scale to my assignment. I understand the scale factor that is applicable to the printing only and that AutoCAD doesn't care about the units used...but something is not clicking here and I'm sure it is pretty simple. My assignment requires me to draw 3 simple structures at 1/8" scale on 11X17 paper. Each house is 20' long with 10' walls and each is done in absolute, relative, and polar. I actually completed the work with all 3 formats without specifying the scale or paper size, just to get familiar with the commands. But now that I am trying to set the dimensions correctly, I cannot replicate my work because I'm getting lost in the way things are defined. I am using AutoCAD 2005, also have a 2002 version to which I can defer.

View 9 Replies View Related

AutoCAD 2010 :: Change Drawing Scale In Drawing Settings

Jul 25, 2012

I realize it may be a Civil3D question.  When I change my drawing scale in the "Drawing Settings" dialog box to 1"=40', for example.  The Annotative scale in the Properties Palette changes to 1"=40'_XREF.

View 2 Replies View Related

AutoCAD Inventor :: Change Drawing Scale With ILogic Upon Parameter Change

Jul 8, 2013

I have a spreadsheet and iLogic driven mater assy to generate different iterations.

I would like to change the scale of a base view on a drawing based on a parameter in my assembly. The idea is to get iLogic to change the view using a simple If / Else statement.

This is what I tried:

If Parameter("0 Generic Assembly v2.2.iam.BP") < 1570 Then
ActiveSheet.View("VIEW1").Scale = 1/8
Else
ActiveSheet.View("VIEW1").Scale = 1/10
EndIf

So basically the value of "BP" parameter (excel parameter in my assy) would drive the scale of the views. But its not working. Is it actually a sensible method? Can I use in the drawing environment the excel parameters in my assembly?

This is the error message I get when the rule is run:

"Error in rule: View Scale, in document: 0 Generic Assembly v2.2.idw

Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL))" 

Also using the same thinking I use iLogic to populate the drg number field on the drawing based on an excel parameter. The rule works but does not always updates the drawing no upon the parameter change or update/rebuild commands.

View 1 Replies View Related

AutoCAD Inventor :: Scale A Part With Different Scale Factors In 3 Directions

Apr 15, 2013

I have a 3D part, which I want to scale down to 0.5 the size in X and Y direcions, but I don't want to scale it down in Z direction.

Is this even possible? How do I go about doing it?

View 9 Replies View Related

AutoCAD LT :: Set Scale For Drawing?

Apr 12, 2013

In 2000 I could set or change the scale for the drawing being created. I don't remember the path now, but the screen included text size, dimension line standoff, decimals or fractions, tolerances, etc. So far I have not found a way to set or change the scale of the drawing being created in LT2013. I discovered drawing properties but that's not it. Where such can be found?

View 2 Replies View Related

AutoCad :: How To Set Scale In Drawing

Feb 23, 2013

I have a new layout i want to set scale for A3 and A1 paper so how can i set it,mean it should b clear print on A3 and A1 what is stranded scale type if i ll put 0.333 in custom scale what i need to write in title block.

View 3 Replies View Related

AutoCad :: Which Drawing Scale To Use

Mar 23, 2013

I want to be able to use Autocad 2012 to draw the faceplate of a custom box that fits into a 19" rack. [URL] ........

The actual width of the box would be 17.75" and the height would be 3U in height 5.25".

I want to be able to print on Letter size paper in Portrait mode.

It looks like I should Engineering units though I am not sure whether the connectors and switches that will be on this faceplate will allow for decimal partial inches.

Based on those dimension should I use 1:3 drawing scale?

View 4 Replies View Related

AutoCad :: How To Scale PDF Of A1 Drawing

Feb 27, 2011

I get PDF's of A1 drawings all the time some hand drawn (Paper and pencil how primative lol) that I would like to add to but when I attach the pfd's I seem to have problems with the PDF drawing being blurred, If I zoom in on the PDF drawing in model space I can get it to become clear, but when in paper space it isnt clear even when it is scaled to the correct size of A1.

Is there a correct way of inserting the pdf in the first place ? (ie scale etc that I should be doing )

View 4 Replies View Related

AutoCad :: How To Know The Scale Of Drawing

Dec 22, 2011

I have a problem in scaling. I wanted to know the scale of a drawing. After i have drawn the drawing. What will i do to know the scale of it or what is the recommended scale for the drawing i have drawn.

View 9 Replies View Related

AutoCad :: Plotted Drawing Not To Scale

Nov 14, 2013

just done a job for a client and when they get them printed they are not to scale (slightly smaller), i have checked my drawing and it is scaled correctly. i plot to a pdf and the client gets the pdf printed locally. when i print i print to extents and plot centred. i also sent a shopfit drawing from another company using the same method except their drawing was set to plot the layout, their drawing plotted correctly to scale so i am wondering now if plotting to extents is the cause of the problem?

View 8 Replies View Related

AutoCAD LT :: Drawing Units Scale

Oct 12, 2011

I am experiencing with an old drawing I am trying to open.  The problem seems to lie in that there is a hidden scale factor being applied to the dimension.

I draw a line that is 1.27 long.  When I dimension the line the resulting value is .635.  I have double checked that my primary units are set to a scale factor of 1 and the problem still persists.  Even more strange is that if I set the primary unit scale to 1.5 the resulting dimension value is correct at 1.905, with primary scale of 2 the dimension is 2.54, etc.  I have used AutoCAD for many years and never run into this issue.I am dimensioning in the model space when this occurs and using AutoCAD LT 2012.

View 5 Replies View Related

AutoCad :: Why Drawing Is Not Plotting To Scale

Apr 2, 2011

I have drawn a 2D 'ruler' 250 units by 50 units and drawn 10mm marks along the edge of the ruler with the last section divided into 1mm marks.

When I plot the drawing, setting the scale in the properties box to 1:1 or 1:2 (or whatever scale I choose) then selecting File, Plot etc, (leaving the scale in the 'Plot Scale' section of the dialog box as shown - normally 1:1) the resulting plot is slightly smaller than expected. What should be say 200mm is more like 199 mm.

I am using AutoCad 2007 and a local domestic type printer (HP type) connected via a USB line.

View 8 Replies View Related

AutoCad :: Drawing Units And Scale

Jan 7, 2013

I have drawn a couple of small buildings. I'm using meters and plotting to A3. For some reason the in the layouts I have to put in a scale of 15:1 and 8:1 to see the building when I print.

I have looked at some other buildings that people have drawn, they are of a similar size in real terms. However they are plotting to 1:25.

View 9 Replies View Related

AutoCad :: Working With Drawing Of Different Scale?

Jan 18, 2012

My question (confusion) is about scaling. I know all drawings are suppose to be drawn 1:1 in model space. But what if I run into drawing that is not drawn 1:1? What should I do then?

For example if a drawing is done say 1/4"-1'0" how do I check it or how do I change it to 1/8"-1'0"

I am using auto cad '12 Architecture.

View 9 Replies View Related

AutoCad :: How To Plot Drawing In Scale

Jul 13, 2010

How to plot my drawing in scale.. i always print in A3 and A4 size paper. i wanted to know how to do this.. ex.. 1:100 , 1:200, etc. 2nd:

Here is the scenario.: i have an forwarded drawing then i wanted to print/plot it in scale of 1:100 it is possible to do that?

View 7 Replies View Related

AutoCad 2D :: How To Get A Drawing To The Right Scale And Units

Aug 16, 2013

I am using AutoCAD LT 2012. I am having a problem getting a drawing to be the proper scale and units. I pulled a drawing in and it has been drawn 1' = 1 unit. I really would like to get it so I can make 1 unit = 1". I need to preserve the current dimensions in the drawing.

View 5 Replies View Related

AutoCad :: Determining Scale Of Drawing

Feb 17, 2013

I need determining the scale of a drawing I got from the internet in ratio form. the drawing itself has a little scale bar in the corner, however, since i do not know the measurements of the actual structure i have no reference point and therefore cannot figure out the scale in ratios.

I read on here that you can use general reference point such as the average dimensions of a door/window ceiling etc. but the drawing is a longitudinal section of a church, namely, Temppeliaukio kirkko, which has no 'standard' dimensions.

I need this drawing in 1:100
longitudinal section.jpg

View 2 Replies View Related

AutoCad :: Finding Scale Of A Drawing?

May 2, 2013

Is there a way to find out if the drawing was in a scale other than 1:1 when it was originally drawn?

View 9 Replies View Related

AutoCad 2D :: How To Find Scale Of Drawing

Dec 13, 2012

Any command that I could use to find the scale of a drawing. I am having to put some vendor drawings into company borders and I am having to do it by eye currently (which I really do not like doing). I am just curious if there is some way I can find out the scale of the existing vendor dwg so I can scale the border correctly and accurately.

View 9 Replies View Related

AutoCad :: How To Set Drawing In 1:160 Metric Scale

Dec 27, 2011

Can i set my drawing in 1:160 metric scale..... because that one scale is not in CAD.........

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved