AutoCAD Inventor :: Visible Versus Shared Sketch

May 22, 2012

What is the difference between:

1) create a sketch

2) create an extrusion

3) make the sketch VISIBLE

4) create another extrusion

and:

1) create a sketch

2) create an extrusion

3) make the sketch SHARED

4) create another extrusion

View 9 Replies


ADVERTISEMENT

AutoCAD Inventor :: Shared Sketch Generates Sketch Doctor Error - Feature Suppressed

Sep 21, 2011

I've created a shared sketch and have used it with various features. Sometime those features are suppressed. The model works fine but the shared sketch generates a sketch doctor error because the feature that created it has been suppressed. Is there anyway to make the sketch suppressed so it doesn't trigger a sketch doctor error? Inventor 2013

View 2 Replies View Related

AutoCAD Inventor :: Breakout Sketch Visible?

May 16, 2012

There are times with a breakout that it is desirable to have the sketch used to create the breakout visible to make it clearer on what's going on. When I right-click on the sketch in the browser there is no option for visibility. How do I make this sketch visible?

View 2 Replies View Related

AutoCAD Inventor :: IPart No Visible Sketch?

Nov 25, 2013

This subject have been around since version 2008.

1- I want to be able to insert an ipart ( only sketch) into an assembly and run frame generator.

2- If I have to change the component in the assembly I want to be able to click the ipart table with the right button of the mouse and choose "change component".

picture in attachment
 2008/2009 Bug
[URL]

View 1 Replies View Related

AutoCAD Inventor :: Visible Sketch Dimensions On Face Of Part?

Jan 8, 2013

I'm making a part and am adding features to it and using my existing sketch dimensions as my guide. The problem is that when there are sketch dimensions on the face of the part, they are difficult to read. I'm forever dragging these dims to the side in order to read them, it's just a bit annoying. I was wonering if there was a setting that made them show up as well as they do when the aren't sitting on the face of my parts. I've attached a .jpg of what I'm talking about. notice the dimension on the left side and the bottom.

View 2 Replies View Related

Revit :: Change Window From Shared To Non-shared In Family Editor

Nov 3, 2011

I am making a nested family of windows and inserted the windows as shared and I need them as non shared. Is there a way to change the window from shared to non shared in the family editor?

View 2 Replies View Related

AutoCAD Inventor :: Copy Part Sketch Into Drawing Sketch

Sep 20, 2012

How do I duplicate the 2D line work from a part level sketch into a drawing level (overlay) sketch?

I started a simple 2D piping system diagram sketch by opening a new part file and using a sketch to stick draw the system schematic including some annotations.  Then I opened a new drawing file and made a base view of the part file to bring a view of the original sketch into the drawing.

I realize now that it would have been much easier to have created the schematic directly in a 2D sketch at the drawing level, which would have made editing the annotations much easier at the drawing level, and there is really no need for the part file to exist.  I have no intention of creating a 3D model or "real" part in the .ipt file, was just using it as a jumping off point to sketch.

I was thinking that I could correct my error in judgment by just copying the sketch and pasting it into a new sketch on the drawing, but it doesn't want to work that way.  I have tried copying both the whole sketch at the browser level, and the entire sketch contents (all of the lines and annotations) from the opened part sketch, but when I attempt to paste either of those into the drawing, paste does not seem to be an option.  I'd rather not have to draw the whole thing again, as in typical fashion, my once simple sketch has grown in proportion and complexity from its simple beginning.

View 4 Replies View Related

AutoCAD Inventor :: How To Get Sketch Point Data From Sketch Entity

Dec 3, 2013

I was trying to query some sketch points data from a profile Path using code as below. However the program stopped without telling the reason.

Code below:
i = 0;
foreach (ProfileEntity oSourceProfileEntity in oProfilePath) { switch (oProfilePath[i].SketchEntity.Type) { case ObjectTypeEnum.kSketchArcObject: { SketchArc srcSkArc = default(SketchArc); srcSkArc = (SketchArc) oSourceProfileEntity.SketchEntity; // error points[i] = srcSkArc.StartSketchPoint.Geometry; break; } default: { SketchLine srcSkLine = default(SketchLine); srcSkLine =(SketchLine) oProfilePath[i].SketchEntity; // error points[i] = srcSkLine.StartSketchPoint.Geometry; break; } } i++; } 

View 2 Replies View Related

AutoCAD Inventor :: Converting 3D Sketch To 2D Sketch From IGS File Using Wires?

Aug 1, 2011

First we imported an ".igs" file to inventor, which produced "wires".  Then by promoting the wires it produced a 3-d sketch. 

The model is in one plane and 2-D, and we are trying to use Ansys 2-D analysis, but in-order to do so it needs to be in a 2-D sketch.

The model is too large to be redrawn on a 2-D plane, how to convert it to a 2-D sketch

View 9 Replies View Related

AutoCAD Inventor :: Change Sketch 2013 Into Sketch Of 2010?

Dec 14, 2012

want to change sketch 2013 into the sketch of 2010 

View 1 Replies View Related

AutoCAD Inventor :: Sketch Disappears When Editing Another Sketch?

May 30, 2013

When I edit certain sketched some other sketches disappear. see attached.

This is causing modelling to slow down as I can not project lines from the sketch that has disappeared.

View 8 Replies View Related

AutoCAD Inventor :: Modify The Sketch From Projected Sketch?

Aug 22, 2012

After I create a adaptive part from projected sketch. How to modify the sketch? Please see the part attached.

View 6 Replies View Related

AutoCAD Inventor :: Difference Between Sketch And Planar Sketch?

Mar 4, 2012

what is the difference between a sketch and a planar sketch?

View 2 Replies View Related

AutoCAD Inventor :: Constraining A Sketch To Another Sketch?

Aug 16, 2012

I'm having trouble with constaints, I'd like to constrain my sketch to a point in another sketch on a different plane. Is this posible in Inventor? If so how? If Inventor works differently how would you get a points in one sketch to be linked to points another?

View 2 Replies View Related

AutoCAD Inventor :: Select Versus Pick - API

May 17, 2012

I'm writing a program (C#) that automates the notch tool within the frame generator add-in in Inventor. I can select one part and then select multiple other parts that will notch to the first selected part automatically. This will save me a TON of time if I get it working correctly. With that being said, I have it to the the point where the user selects the first part and then window multiple parts (these are stored and then cycled through later), then I use SendKeys to open the "Notch Tool", and now this is where I encounter my problem. 

The Notch Tool is waiting for the user to Pick/Select one part. In my code I've tried to use the CommandManager.DoSelect method which does not register with the tool (I'll exit out of the tool and the part will be selected). My thinking is that this notch tool will only accept the CommandManager.Pick method which would defeat the purpose of the program as I do not want the user to have to go through the parts one by one notching them together.

Is there a way to simulate a mouse click on a selected occurrence within Inventor? Is there another approach I should be considering? And finally, how to rewrite the actual notch tool to allow multiple notches to be done at once?! I'll post a snippet of my code.

docName = instance.ActiveDocument.DisplayName;
int iHandle = NativeWin32.FindWindow(null, "Autodesk Inventor 2012 - [" + docName + "]");
this.Hide();
NativeWin32.SetForegroundWindow(iHandle);
keybd_event(0x23, 0x4F, 0, 0); // Press End
keybd_event(0x23, 0xCF, 0, 0); // Release End (Brings up notch tool)
Thread.Sleep(3000);
//keybd_event(0x28, 0x0F, 0, 0); // Press Tab
//keybd_event(0x09, 0x8F, 0, 0); // Release Tab
NativeWin32.SetForegroundWindow(iHandle);
Thread.Sleep(500);
instance.CommandManager.DoSelect(vert); 

View 2 Replies View Related

AutoCAD Inventor :: New File Icon Versus Pull Down

Mar 1, 2013

Something I'd like to see fixed (or find out how) is when using the start New File icon, if you select the icon itself, you are directed to the templates folder of the active project, but if you select the "Pull Down" arror next to the icon, you are taken to the Inventor Standard default templates which are typically not used.

I see numerous users unknowingly selecting those default templates and not noticing until they've started entering dims, etc. They get very upset at having to make sure they select the icon and question as to why it would be different.

Same deal if one is to select the Inventor Icon in the far left upper corner (this is more common than the users selecting the pull down) and then select "New", again, they are shuttled to the default templates and not the associated project file templates...why?

[URL]

View 8 Replies View Related

AutoCAD Inventor :: Representations / View Versus Level Of Detail

Jan 5, 2012

It seems that Views are easier to use, are there any benefits of View option over Level of Detail and vice versa?

View 3 Replies View Related

AutoCAD Inventor :: Refresh File Versus Revert To Latest

Oct 14, 2013

difference between the "Refresh File" and "Revert to Latest" commands in the Vault browser within Inventor 2013?  We just started using the Vault Collaboration 2013 flavor of Vault. 

View 4 Replies View Related

AutoCAD Inventor :: 2013 - Realistic Versus Shaded With Edges

Jul 25, 2012

How do I get my part to be transparent in the "Realistic" view like it is with the"Shaded with edges"?  This is what it looks like with the view style set to "Shaded with Edges".  Notice how it is transparent and you can see thru the part.

Now when I switch to "Realistic", I get this.  Anything that is behind this part is not visible.

I want to be able to see thru the part when in the reallistic visual style.

View 4 Replies View Related

AutoCAD Inventor :: Sync Center In Windows Versus Vault?

Oct 12, 2011

I've just used the Sync Center in Windows for the first time. Basically I syncronised an Inventor project that resides on a server with my laptop so I could go into the field. All seemed to work well until I returned back to the office and performed the sync again. For some reason now all of my projects don't appear in the projects list.

Sync Center and Inventor. Should I be looking at Vault. Can it do syncronising better than the Sync Center shipped with Windows?

Product Design Suite
Inventor Premium 2012 - SP1 Installed
HP 8760w I7-740M Laptop
Windows 7 Professional 64
12 Gb DDR SDRAM
AMD FirePro M5950 Graphics Card

View 3 Replies View Related

AutoCAD Inventor :: IPart Drawing Template - One Drawing File Versus Individual Drawings

Jun 21, 2013

Setting up a tabulated ipart drawing template. Which is better...one drawing file with a table or individual drawings for each tabulation? Also does one method work better than the other when introducing vault?

View 1 Replies View Related

AutoCAD Inventor :: Line Not Visible In IDW?

Feb 13, 2013

There are some lines that are not visible in my .IDW.  I have had this before and am wondering why this is happening.  Basically this is a vinyl gasket which is shown in my .iam file.  In my .idw it is not showing although I have not turned off the visiblility of the part. 

Inventor 2013
Windows 7 Professional 64-bit SP1
HP EliteBook 8470w
Processor: Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz
Memory: 16 GB
AMD FirePro M2000
3D Connexion SpacePilot

View 5 Replies View Related

AutoCAD Inventor :: Content Center Not Visible

Nov 29, 2011

Two computers with Inventor Pro 2011 on them, same set up in Apllication Options/Content Center and Apllication Options/File. On one Inventor sees Content Center on the other does not. What could be the problem? 

View 2 Replies View Related

AutoCAD Inventor :: Assembly - Parts Not Visible

May 11, 2012

I'm working on a small Assy (25 parts). When I open one of the parts from this Assy and work on it then go back to the Assy many parts are not visible. The update button is usually off so I can't use it.

This started only about 2-3 weeks ago - in every assy. I changed the nvidia driver but didn't work.


Inventor pro 2012
Win 7 Pro. sp1 64 bit
Intel Core I7-2600 CPU
Ram - 8GB
Quadro 2000 D
Nvidia 275.89 (tested nvidia 296.70 with no luck)

View 4 Replies View Related

AutoCAD Inventor :: Imported IGS Files Are Not Visible On IDW

Feb 27, 2013

I have imported an .igs and would like to use it on my assembly.

Step that I created.

1. DL an igs files, then open it in Inventor 2012 Product Suite.

2. Save as .ipt,

3. Create a new .ipt and then DERIVED the save .ipt, change scale to 25.4

4. Save the part

5. Open .idw and place the part you just save.

Result: Notice that nothing is visible. WHY?

View 2 Replies View Related

AutoCAD Inventor :: How To Make Visible Behind Surface

Nov 2, 2011

Attached is a test drawing

1.  Why does my part not show up behind a surface?

2.  What is the minimum dimension to make my part appear?

On the drawing I was working on, the part completly behind a surface was showing up until I rotated the view, then it dissapeared, this behaviour is not present in the test idw, the part doesnt appear at all behind the surface.

View 1 Replies View Related

AutoCAD Inventor :: Toolbars Not Visible In 2008

Nov 12, 2013

I can't see any of the inventor toolbars anymore.

if i would still have the Quick Acces Toolbar this wouldn't be a problem but that one is also gone.

View 3 Replies View Related

AutoCAD Inventor :: Use Only Visible Parts In Assembly

May 13, 2013

in my assembly part visibility is controlled by a Ilogic rule which selects an Iassembly. This assembly is a parametric model controlled by excel. The visible parts have to be exported to dxf.

Everything is working (iterating through parts, export sheet metal to dxf), but how can I check whether a part is visible within the assembly?

View 1 Replies View Related

AutoCAD Inventor :: Bend Extents Not Visible

Oct 21, 2013

I have unfolded a 3D model into a flat plate, however the bend lines/extents do not appear in ISO.dwg

I doubled clicked into the view to access 'Display Options'. However, I cannot tick the box to display bend extents as this option is shaded out (refer to attached screen dump).

View 7 Replies View Related

AutoCAD Inventor :: Display Visible PDF File

Dec 12, 2013

For some reason I have not been able to generate a pdf file with visible lines fro the attached file.

View 9 Replies View Related

AutoCAD Inventor :: Dimension Lines Not Visible

Dec 27, 2012

We resently upgraded to Inventor 2013 and since then we have been having an issue of dimension and leader lines being hidden under a text box or some other drawing entity.

This is very confusing since the text box does not have a white out associated with it, nore is there a way to put the test box to the back and dimension lines to the front...

It seems like our puppet masters that program this amassing tool where up to something and didn't quite get there.

IT sure would be nice (or an absolute requirement) that this gets fixed so I don't have to learn new hoops to jump through to get a quality drawing out of Inventor.

View 6 Replies View Related







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