AutoCAD Inventor :: Export Sketch To DXF And Control Entity Target Layers
Mar 18, 2013
Is there any way to export a sketch to DXF and control the target layer of sketch entities?
Solid Lines go to Layer=0
Construction Lines go to Layer=Construction
Center Lines go to Layer=Center
I am currently using
Sketch.DataIO.WriteDataToFile("DXF", strDXFOutputFile)
which send everything to layer=0
View 1 Replies
ADVERTISEMENT
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
Oct 24, 2012
In 2013 SP1.1 we are noticing that when using offset in a sketch, the offset line/curve is invisible and cant be seen until a zoom is done, then it appears.
View 1 Replies
View Related
Aug 9, 2012
I have a client who is replacing a large fleet of machines located in premises throughout the country. In theory the replacement program should be straightforward..... however machine dimensions have increased slightly, new service access doors have been added and user control switches and indicators have moved. I have Inventor Assemblies of the machines to show the door and body changes, but not the complex user interface panel (buttons and switches). If I could only import a sketch of the interface panel, it would look great in an Inventor drawing and I could dimension the all important position of components on the interface panel.
I have PDF drawings of the fascia panels which I can import to Adobe Illustrator and save as a DWG. When I look at the DWG in AutoCAD Mechanical, all looks well. When I import the drawing to Inventor part sketch however lots of spline control vertices appear. I cant delete the control vertices in AutoCAD or the drawing falls to pieces when imported to Inventor.
How then do I hide the vertices from my sketch in Inventor. Am I doing things the hard way? Are there shortcuts to importing PDFs in Inventor?
Inventor 2013 sketch mode is excellent as I only have to change one dimension to scale my sketch. I can also stretch/manipulate the sketch to make up for any errors in the original PDF.
View 4 Replies
View Related
Nov 29, 2011
Is there a way to change or control the color of sketch objects? I didn't see any way to set colors for sketch objects within the Application Options. Might there be some registry entries that could change the color of sketch objects?
Sometimes it's useful to be able to use colors other than Green and Black for sketch objects.
Inventor 2012 Certified Associate
AutoCAD 2012 Certified Associate
Product Design Suite Ultimate 2012, 2013 & 2014
View 3 Replies
View Related
Mar 12, 2012
Where is the setting to control the size of dims in the IPT sketch environment. The arrow sizes are OK, but the dims are so small they are unreadable to the point of having to double click on the dim to get the actual value.
IV2014 sp1.2 PDSU / Sim Mech 2014 /
Win7-64
EVGA X79 - Classified, iCore7 3930k 32Gb Quad-Channel
950Gb (2 x 500Gb Sata III SSD RAID0 Adaptec 6805E Controller)
Nvidia GTX-690 Classified - 331.82
SpacePilot Pro 3.17.1, 6.17.7, 4.11
View 2 Replies
View Related
Jun 6, 2012
Does any video showing sub entity selection with use of control key?
I can not seem to get it to work.....so I don't know if I am doing it wrong, or if I have somehow disabled the feature....
Perhaps there is a link out there showing it working?
View 9 Replies
View Related
Jul 26, 2013
I am using ilogic rules found in this forum to publish to pdf.
I would like to know if its possible to hide certain layers while publising to pdf.
So is it possible to do that with ilogic?
View 1 Replies
View Related
Jul 26, 2013
I am working on iLogic models and have a sketch feature in a part that is used as a referance for a caulk bead. The sketch is in an IPT and is a stand alone feature. I am trying to have this sketch feature be visible in and IDW file of the product I am developing but cannot seem to find a solution. Is this even possible and if so what am I doing wrong?
I am doing it this way because the caulk bead spans the entire height of the part which can change via different custom parameters, therefore the caulk bead needs to be able to change with the part while not losing its sketch references.
View 4 Replies
View Related
Jul 30, 2012
Is it possible to include Model Sketches when exporting a DXF from a drawing document?
Previously I could do a simple export :
ThisDoc.Document.SaveAs(DXFNAME , True)
Which used the options I'd set in the 'DXF File Export Options'
However, now I need to include some geometry from 'Sketch 2' within my DXF.
I've looked at the TranslatorAddIn Interface but can't see any options to include sketches in DXFs.
I'm using Inventor 2011
View 1 Replies
View Related
Jan 27, 2012
A couple of days ago when I went to shut down my computer ran windows updates automatically and the next morning these updates failed and the previous setting were re-configured. Windows updates ran again the next night and updated sucessfully.
Since then I have been having problems importing autocad into a sketch. In the Layers and Objects Import Options dialog box, the layers are not shown and the autocad objects can not be individually selected.
I was wondering if this is the solution to the problem or if there is a hotfix to solve it without having to un/reinstall programs.
Inventor Suite 2010 SP4
Windows 7 Pro SP1 64-bit
View 5 Replies
View Related
Jun 18, 2009
Is it possible to use the DXF Translator Addin to export a sketch?
I've managed to export a sketch using the DataIO mechanism, but I need to be able to export the DXF in an older file version than 2010. Is there any way to specifiy the version to export to using the DataIO mechanism?
View 9 Replies
View Related
May 2, 2011
I need to export points from 3D map as a .shp file so I can bring them into Maya and have them line up exactly where they need to be based on their coordinates. The points line up pretty close to right in map 3d, and they have a style assigned to them. When I go to the Map --> Tools --> Export, I choose .shp as the file output, and go through and select the layer I need to export. When I've got everything set up, I get an error message saying "no entity to export." I have searched on the internet for this error but not a lot comes up. I'm not sure what I'm missing in order to make the points export.
View 3 Replies
View Related
Oct 26, 2012
I have been searching for a macro to export the start and end point of a line coordinates to excel, but I can only find information on how to export 3D Points.
Is it possible to program a macro that allows me to export the start and end point of various lines in a sketch?
The objective of this is to connect an excel file which is updated when I create a line with it correspondent points, then i could not only import these x,y,z coordinates from excel to inventor but I whould be able to update my spreedsheet whenever I change my sketch.
View 1 Replies
View Related
May 22, 2013
I would like to add additional entities to the selection if any of the selected entities contains a an xdata value.
If I put the condition into the ImpliedSelectionChanged reactor I imagine will probably loop back on itself.
View 9 Replies
View Related
Jul 1, 2013
This may be a customization question, but when I export to dwg in Inventor, everything appears on layer 0. Is there a way to map sketches and features from Inventor to defined layers in dwg?
I am interested in either of these two options, or both:
- From ipt: sketches and features (surfaces, solids etc.) to defined dwg layers
- From iam: parts to defined layers
I am using Inventor 2013.
View 1 Replies
View Related
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
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
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
Dec 14, 2012
want to change sketch 2013 into the sketch of 2010
View 1 Replies
View Related
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
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
Mar 4, 2012
what is the difference between a sketch and a planar sketch?
View 2 Replies
View Related
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
Jul 31, 2003
Placing a Datum Target Identifier on a dwg. When your are in the Datum Target dialog box under Dimension, you have to type in a number indicating the diameter of the datum target circle. Normally you can't put in a diameter symbol before the number, but I just found out a way.
Make sure your Num Lock light is on. While holding down the ALT button on your keyboard, type in 0216 using the numeric keypad. This will put in a diameter symbol.
ALT 0216 diameter symbol
ALT 0176 Deg symbol
ALT 0177 Plus / Minus symbol
Another problem is, after placing the Datum Target you can't dimension to it. That can be solved by putting a sketch of a circle (phantom line) with it's diameter and locating dimensions on the dwg view. Then you can placing the Datum Target Identifier on the the circle.
A wish list to Autodesk:
Allow dimensioning to the symbol
Have a diameter symbol already in the dialog box
Have a option that sizes the datum circle diameter
View 3 Replies
View Related
May 14, 2012
Can more than 4 characters be used in the bottom of a datum target?
View 1 Replies
View Related
Dec 10, 2013
where is the setting to change the Fade Control when you lock a layer?(It is not the same as the Fade Control of the External References in the Display tag of the Options dialog. I know that one and I am aware of this one.)
The one that I want to know is of the locked layers. When I lock a layer, the objects in the layer fade.
View 5 Replies
View Related
Oct 22, 2012
using acad 2010..when i lock a layer its become faded which is very useful. as far as i know there is a global variable that control it. I've come into situation where need locked layer but not faded. is there a local variable or a way to lock objects rather than layers?
View 9 Replies
View Related
Feb 27, 2012
want to upated attributes in proxy entity is this possible?
View 1 Replies
View Related
Sep 15, 2011
I'm borrowing from the samples library in the Inventor:
Public Sub GetSingleSelection()
' Get a feature selection from the user
Dim oObject As Object
Set oObject = ThisApplication.CommandManager.Pick(kPartFeatureFilter, "Pick a feature")
MsgBox "Picked: " & oObject.Name
End Sub
Works fine, and is fairly simple, but the problem I'm having is if I press the escape key after starting the command, but before making my selection, I'm not able to start the command again.
I realize from my searching that using the Selection (Simple) sample allows for an interrupt, with some modification, was just wondering if there was something similar for this simpler selection option.
View 3 Replies
View Related
Oct 24, 2012
I changed the target framework for my project from .NET Framework 2.0 to 4.0, and also changed the Inventor.exe.config file to read
<supportedRuntime version="v4.0"/>
Now when I debug the ribbon tab that I am creating is nowhere to be found, but if i change back to 2.0 and debug, the ribbon tab is back.
View 3 Replies
View Related