AutoCAD Inventor :: How To Delete Points In Sketch

Jun 4, 2012

How can I delete some points that show in my sketch like these (see the attachments). by the way, they are related to sketch constrains?

View 6 Replies


ADVERTISEMENT

AutoCAD Inventor :: Why Can't Delete The Sketch

Nov 9, 2013

I played with adaptivity status of part 27 and sketch 3 in that part, and i now i cannot delete the sketch.

The delete command isn'ton the RMB and when i press Delete nothing happens.

View 1 Replies View Related

AutoCAD Inventor :: Cannot Delete Fill From Sketch

Jul 18, 2012

I am trying to delete fill from a sketch I have done on a drawing. (See attached). Unfortunately I cannot find any way to delete without deleting the whole sketch. I tried as Inventor said to go into Annotate Ribbon and change Layer & Style but both these dropdowns show blank when I try that. I also tried going into Fill/Hatch again hoping the new one would overwrite the old one but no success.

View 4 Replies View Related

AutoCAD Inventor :: Delete Active Sketch?

Dec 15, 2011

I want to delete  the inital Sketch (if was already opened) that Inventor creates when a new part is added.

I have tried this, but doesn't work.

Sketch sketchActive = docPart.SketchActive.
sketchActive.Delete();

View 4 Replies View Related

AutoCAD Inventor :: Create About 100 Off Points In A Sketch?

Sep 13, 2012

I need to create about 100 off points in a sketch.

I have the x and Y co-ordinates in a excel spread sheet.  Is there any simple way to create the points other than manually entering thru precise input.

View 2 Replies View Related

AutoCAD Inventor :: Dimensioning Using Drawing Sketch Points?

Oct 8, 2012

I am trying to use sketch points in drawing for dimensioning. Below is portion of my code. The code fails when AddLinear is called. Is it even possible to use drawing sketch points for dimensioning?
 
invSheet = invDrawingDoc.ActiveSheet
Dim oTransGeom As Inventor.TransientGeometry= invApp.TransientGeometry
Dim pt1 AsPoint= oTransGeom.CreatePoint(0, 0, flangeOD / 2)

[Code]....

View 1 Replies View Related

AutoCAD Inventor :: Sketch Symbol Connection Points?

Oct 7, 2011

I am trying to get Sketched Symbols with leaders to align.

I have a sketched symbol defined that has connection points defined at the outer quadrants.  If the symbol doesn't have a leader they snap together at the connection points without any problems.

If the symbols have a leader they either won't snap, or jump to a random location depending on what grip you select to move. 

The following video image shows the problems with the symbols with leaders. 

View 1 Replies View Related

AutoCAD Inventor :: Deleting Work Points In 3D Sketch

Apr 13, 2012

I am using Inventor Professional 2011.

I have a series of points that I've placed along a sloped line in a 3D Sketch.  However, if I delete one of the points, all the points that have been created are erased as well.  I found a way to get around it (remove the constraints of the point I'm trying to delete and then delete the point).  However, if I want to delete multiple points, the solution I have would take up some time.

I don't want to create a rectangular pattern in a 2D sketch because, when the line changes slope, the pattern doesn't seem to recognize the new slope direction and the points appear offset from the new sloped line.

Is there a way I can get create some semblance of a pattern in 3D sketch and also have the ability to delete individual points within a series of created points?

View 8 Replies View Related

AutoCAD Inventor :: Extracting Sketch Curves Points

Dec 6, 2013

Given a sketch, I wish to get its profile paths (outer, plus inners), for each path, I wish to get their individual curves (line, arc, splines, any type). For lines, I need start and end points, for others, some sample points would do.

For "T" like thin profile shape, following code got me, 1 Profile Path, which had 8 Lines (thus 8 points) and it worked fine. 

For Each path As Inventor.ProfilePath In extFeature.Profile

If Not path Is Nothing And path.Count > 0 Then
For Each entity As Inventor.ProfileEntity In path
If entity.CurveType = Curve2dTypeEnum.kLineSegmentCurve2d Then
Dim oSkE As SketchEntity = entity.SketchEntity
Dim oLine As SketchLine = CType(oSkE, SketchLine)
Dim startpt As Inventor.Point2d = oLine.StartSketchPoint.Geometry
Dim endpt As Inventor.Point2d = oLine.EndSketchPoint.Geometry

But same logic does not work (crashes at Casting I guess) for "S" shape as below:

It gives path.Count == 0.

View 9 Replies View Related

AutoCAD Inventor :: Unable To Delete Sick Sketch Reference

Feb 21, 2012

I have a sketch reference that is giving a cross part failure error.  I am unable to select the reference in the browser so I cant delete it or update it. 

How to get rid of it.  Deleting the sketch and starting again will be a disaster.

Using 2011SP2 XP64.

View 3 Replies View Related

AutoCAD Inventor :: Macro Delete Project Geometry In Sketch

Jul 31, 2013

I wish to delete all project geometry in the active drawingsketch with 1 click

But unsure how to get to these constraints.

Are these geometricConstraints?

What I have now doesnt work:

Select Case ThisDoc.Document.DocumentType
Case 12292:
Case Else: MsgBox("Current Document not a drawing document")
Exit Sub
End Select

[Code] .......

View 3 Replies View Related

AutoCAD Inventor :: Macro To Delete Unresolved Sketch Items

Aug 3, 2012

Constraint to unresolved reference geometry. Finding these magenta broken links items in a sketch is time consuming. Is there a macro that can delete them all?

View 2 Replies View Related

AutoCAD Inventor :: Importing Excel Points To 2013 Sketch

Jun 25, 2013

When I use the import excel points function in the 2D sketch menu of Inventor 2013, nothing happens when I open the excel file. No points are drawn in the sketch... I don't even get an error message... I have tried the same thing on another computer with the exact same spreadsheet and it works 100%.

I'm running Inventor 2013 service pack 2 on a Lenovo Y570 with an Nvidia GeForce GT555M GFX card 

View 2 Replies View Related

AutoCAD Inventor :: Way To Delete All Unattached Points

Nov 3, 2013

When Replacing Model references I get a lot of orphaned/unattached corrupted Dimensions,Leaders, Centerlines baloons etc.Fixing the bulk of it is not a problem, and is a trade off between re-attaching, or deleting and re-doing the leader/dimensions etc.

The only frustrating thing is the centerlines and center points.  Some of them HAVE to be deleted via the Design Doctor. (This is a 5 click operation, which starts taking its toll)Is there perhaps an easier /quicker way to delete all the "Unattached points"

View 6 Replies View Related

AutoCAD Inventor :: Left Clicking And Moving Lines And Points In 2D-sketch

Feb 1, 2012

I have a newly discovered issue with left clicking and moving lines and points in 2D-sketch.

After working in Inventor for a while I cant move lines and points(green and unconstrained geometry). If I exit 2D sketch mode and enter again I can move a line once and then its back to not being able to manipulate the geometry at all, the curser just want to create a marking box.

I have a new optical mouse with cord, its a Logitech G400. I have switched mouse but with the same result.I have installed the latest driver for the mouse.

View 3 Replies View Related

AutoCAD Inventor :: Diagnose Part Health - Sick Sketch Points

May 15, 2012

Within a part, I'm trying to identify sketch points that are generated from projected geometry, but the geometry is subsequently changed higher up the feature tree, leaving a pink sketch point (or worse).  What attributes would such a sketch point have?

View 2 Replies View Related

AutoCAD Inventor :: How To Create Sketch Geometry Used To Define Planes / Axis And Points

Nov 6, 2012

I am using projected and sketched geometry (2D sketches) in assembly space to create lines/ points that I intend to use to define planes and axes. The problem I have is that nearly all the geometry I create (lines and points in 2D sketches) is not "selectable" when I try to create planes or axes.  I  cannot even put a work points "on top of" my sketch points.  Why are my sketches not usable in the assembly space?   Since the components in my model are just two extruded rings I don't have any linear edges I can select to make this work/ define planes.

View 9 Replies View Related

AutoCAD Inventor :: Create Sketch With Line Starting Points Depending On Other Sketches?

Oct 6, 2012

I want to draw a line between the two sketches visible on the image below. The line should be in the plane visible. The starting point of the line should be from wherever the top sketch intersects  the plane of the current sketch. The finnish point of the line should be wherever a line of the bottom sketch intersects the current sketch plane.

There is no tooltip appearing that would allow me to quickly "attach" the starting line to the correct position. Is there such an aid, and how do i turn it on?

View 1 Replies View Related

AutoCAD Map 3D :: Delete Some LAS Points Of Draw

Nov 29, 2012

I'm working whit a LAS points draw an i want cut only a little of space in my draw.i have 500 points in this format and only i need 100.I want delete some LAS points of my draw

View 6 Replies View Related

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

Illustrator :: Can't Delete Anchor Points With Delete Anchor Point Tool

Aug 30, 2012

I have a shape in illustrator CS6 that I'm trying to edit. When I try to click on a point with the Delete Anchor Point Tool nothing happens however I am able to select the point using the Direct Selection Tool and then remove it using the "Remove selected anchor points" option in the Control palette. Same issue with trying to use the Convert Anchor Point Tool.

View 7 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 :: Delete Points On 3D Polyline Vertices

Jul 18, 2011

I have a couple of hundred 3D Polylines which have point crosses at each vertex. Any way to remove these point crosses that fall on the 3D Polylines.

(IF 3D point vertex = any 3d Polyline vertex THEN delete)

Reason I can't just filter out the points and delete is that there are points that don't fall on Polylines which I want to keep. All points are on the same layer. Polylines are on various layers. Data is from a 3D topographical survey.

View 3 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 Civil 3D :: Unable To Delete Points From A Survey Database

Jan 2, 2014

I am unable to delete points from my survey database. What could be preventing me from performing this task?

View 1 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







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