How to draw fasteners (nuts, bolts, eye screws, rivet, etc...). I took a CAD class in college but I am not remembering too much. The drawings don't have to be pretty just good enough to get the point across.
I would like to add a "Shoulder Bolt" fastener (both Inch & Metric) to the Clearance.xls file so that when selected it would generate a counterbore hole the size of the shaft and a corresponding thread specific to the bolt size (all of which I can input in the table) but currently I have to do this manually by selecting a "counterbore - thru thread" condition.
Also, we use Helicoil inserts a lot and would like to add this to the Thread.xls but I need Inventor to differentiate between a standard threaded hole & the Helicoil so that the hole callout on the drawing will come in as desired.
I have a part with multiple holes created in a single hole feature (i.e. not patterned but made by selecting multiple sketch center points). As desired, the holes all have the same size since they all fit the same fastener. Is there a way to easily assemble fasteners to all the holes? Currently, I am using insert for each fastener and this gets tedius if there are many holes. Additinally, if the number of holes changes, a manual update is required. I'm hoping there is something that works similar to associative patterns.
I have a task to draw a picture(attached in the post) using ObjectARX but the picture is complicated(too many things to take into considerations) and how to accomplish the task. What is the best option. I have to use ObjectARX SDK and C# to do it.
I am a mech design fellow designing mech parts like coupling, brackets etc.. recently i am tasked to draw pipes.. just pipes with 2 or 3 bends at different angles / axis..
so your assistance needed is in ..
(a) how to draw pipes with bend angles in 2d and dimension them.. (b) if possible, pl give some sample dwg files.
I am trying to figure out the most efficient way to draw a set of shutters in 3D. I took AutoCAD courses all through high school however we never learned 3D.
I'm trying to draw ventilation in 3D ,and I have reached a point where two air ducts with different sizes must connect to each other,so basically I need to draw a reduction from 1000/200mm to 700/300mm. I tried to draw it manually via lines and then to make a block of it, and it's working ,but when I use the HIDE command I still can see trough it.
I was playing around with the settings and I have checked so many things on and off to make this work again but when I go to the options I could try everything but the selection box doesn't appear on my screen anymore. I canT pick anything unless i select a single item.
how to draw a spring that is wound from 8mm diameter wire with an inside diameter of 22mm, the standard for a spring consist of one and a half turns at each end and the center lines throught each side. Springs are normally wound and then ground at each end to give a flat surface for accurate seating.
I don't know what to do with my drawing Units and Scale.
I want to draw in Meters! But when i make a rectangle 30x15m it looks so small that i can't see it in my draw. Using my scale is 1:1 and Units Meters.
I tried changing my scale and my units and the rectangle still looks the same way it was. If i want something to look big, i have to draw in mm, for example, 30000x15000mm rectangle.
But, when i do that, everything go wrong...For example, when i draw a rectangle in mm (30000x15000) and i change the line style in layer command or when i try to hatch/linear dimension and etc all looks very small or very big.
How to draw the APC logo below, I can't seem to draw the 'C' so it looks correct.
Is there a way to convert an image file logo (jpeg or bmp) to a DXF file so I can get that into CAD and then maybe scale it to fit?
Most programs do really bad conversions!
I have also attached the logo as a .ai file (Adobe Illustrator) which I got off the net but I can't do much with that as I don't have that program installed.
I still cant understand about the units. I open acad iso template to work in mm and the insertion scale is also showing in mm.what if i want to draw in meters or cm.
I wrote some stand+alone application (WinForm=, where user can specify dimensions.Now after button click I want to switch form to current AutoCAD file and prompt user to specify point.
From this point I want to start drawing few lines.And I don't know how to switch to AutoCad and get current drawing space.
I am trying to draw/create my own contour map from scratch. I am going to draw chemical concentration contours on a site rather than elevation contours. How to do this?
How do you draw polylines in different planes? If I set the normal it does nothing. I would like to use polyline2d because you can use bulges and not with polyline3d.
<CommandMethod( "testpline")> _ Public Subtestpline() '' Get the current document and database, and start a transactionDim acDoc AsDocument = Application.DocumentManager.MdiActiveDocument [code].......
I have to draw a rectangle using ObjectARX but the problem is that i cannot find a method for the task, I found all kind of other methods like Line, Circle, ..... I managed to do it like that:
Point3d pointA = new Point3d(20,20,0); Point3d pointB = new Point3d(40,20,0); Point3d pointC = new Point3d(20,10,0); Point3d pointD = new Point3d(40,10,0); Line line1 = new Line(pointA, pointB); Line line2 = new Line(pointA, pointC); Line line3 = new Line(pointB, pointD); Line line4 = new Line(pointC, pointD);
But I thnk there must be a way to do it more easily.