AutoCAD Inventor :: API To Add Perpendicular Distance Between Sketch Entities?
Oct 16, 2013
There is an API AddTwoPointDistance() to add the distane(horizontal, vertical or aligned) between two sketch points.
But I want to add perpendicular distance constraint between a sketch point and a sketch line
View 1 Replies
ADVERTISEMENT
Aug 20, 2013
I have an existing sketch and a new sketch onto which I want to project some lines from the existing sketch.
The panes of both sketches do not run parrallel.
Normally a projection is created by imaginary projection lines from the existing sketch to the new sketch perpendicular to the new sketch.
But now and want to project the existing sketch with imaginary projection lines that are perpendicular to the existing sketch.
View 9 Replies
View Related
Feb 20, 2012
We're having a problem with Ordinate dimensions. When we dimension to a radius corner, we dim to the "implied intersection" of the two lines, rather than to the center of the radius. We make a sketch with the two "tick marks", then dim to the intersection of the tick marks.
Ordinate dimensions are not allowing us to pick the intersection: it wants to put two (or three) dimensions, one to each end of one or the other tick marks (see attached). We use Ordinate dims about once a year, but I'm sure I remember being able to ordinate dimension to the tick marks.
View 5 Replies
View Related
Apr 5, 2013
Is it possible to constrain sketch entities, (like lines), to a plane, (make the line and plane coincident)?
View 2 Replies
View Related
Dec 29, 2011
How does one constrain a sketched line in the sketcher to a datum plane?
View 5 Replies
View Related
Aug 12, 2012
I have a simple ipt file (attached)
It is a simple rectangular plate with 13 holes through on a pitch circle.
I have used a "circle" to construct the "Pitch Circle" and a "line" to construct the top dead centre of the circle.
I have then added a circle to use as a hole feature and used the circular pattern to make the holes equi-spaced around the circle.
This circle is then extruded "Through All".
My question is, How can I eliminate the construction "Circles" and "Lines" from the following code, only allowing sketch entites that are directly associated to an extruded feature to be accepted?
Public Function WriteDxfSketchEntities(Doc As PartDocument, sketch As PlanarSketch) As Boolean
Dim partCompDef As PartComponentDefinition
[Code].....
View 1 Replies
View Related
Dec 20, 2013
I need the perpendicular distance between 2 polylines. If I was doing this manually, I would draw a line perp from 1 side and extend it to the other side, check it's length, and delete it. These are pipeline r/w's that quite often have variable width, and are not always parallel.
I am asking the user to select the pline 1st (GetEntity) to get some object data. Then I prompt for a point on the pline where a block will be placed. The block contains an attribute definition for the width. I check to make sure the point is on the pline. I was hoping I could get the user to select a point on the opposite side and force that to be perp. That would give me the width but it doesn't work. I have looked at GetFirstDerivative and rotate that 90 but the examples I found use a certain length. The perp length is what I need to determine.
View 2 Replies
View Related
Dec 17, 2011
I've read about a command before which can copy entities with increment via specified distance, horizontal or vertical. Now I need it but can't figure out what was that command.
View 4 Replies
View Related
Oct 25, 2011
I have a situation where need to frame a W14x30 into a W14x61. When I perform the Notch command, the W14x30 is only partially notched. The W14x61 is taller by .05 in. I tried to notch the W14x30 by ending it at the flange edge of the W14x61. I also tried to notch by ending the W14x30 on the other side of the W14x61, both attempts yielding no results.
View 4 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
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
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 20, 2012
How to create a work plane that is perpendicular to a surface? I'm trying to do this so that I can "split" the object into two separate entities where the plane is.
View 9 Replies
View Related
Nov 2, 2012
When adding pressure loads to a perpendicular face inventor states that the pressure is applied uniformly to the selected face.As an example a disc of 300 mm dia(area= 70685 sq mm) with a uniform pressure load of 10MPa.
Is the 10MPa load input construed by inventor as 10MPa per square mm or 10MPa over the entire disc area.which is the correct interpretation?
View 7 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
Mar 17, 2009
Is there any way of displaying the geodetic distance(ie "mapdist") with the dimension tool instead of the normal distance?
View 2 Replies
View Related
Jul 30, 2012
I am trying to oTrack distance from the top circle edge of a cylinder to a certain distance ... whenever i try to do that ... it either track to x and y .. but not in z :/ ... the video i have on you tube he did it so simply and it seems to be easy .
I am not sure what is wrong .. but i heard parallel and perspective view could make a difference .. i actually try both :/ ...
[URL].....
View 9 Replies
View Related
Feb 20, 2012
I want to import my excel table to autocad. but when i try to do this, the table is not correctly import. im using paste special command and past to link. if i paste my file excel, image and other formats, i can not plot my draw. i attach my excel file.
note: i found a software that name is autotable. but its 150$. we dont want to buy an other software.
View 1 Replies
View Related
Nov 19, 2013
I have created multiple sketch entities like line, arc, circle etc. using the Inventor API's. Now I want to add the coincident constraint between start point of line, start point of arc and center point of circle.
I have added coincident constraint through UI(Please see attached snap). The same I want to add using Inventor API's. which API I should use to add the coincident constraint for such multiple entities.
View 1 Replies
View Related
Mar 1, 2013
I'm trying to figure out what the additional number in the balloon option "circular w/ 2 entities" represents.
View 3 Replies
View Related
Oct 6, 2011
Is there a way of dimensioning the distance between the views on a .idw?
I have a series of drawings to make, that consist of two view each. I need to make them as consistant as possible, as far as the distance from view to view, accross the drawings.
View 3 Replies
View Related
Dec 26, 2013
What formula or dimensions do i require so as there is a 0.5mm gap around the Revolution 3 (red color)...is revolution the method required to achieve this?
View 2 Replies
View Related
Apr 1, 2008
Code to find minimum distance between two faces using "Minimum distance" method...
View 5 Replies
View Related
Nov 8, 2012
I have a VBA form coded that we use to generate part numbers and descriptions that then populate the iProperties. We often use the part sizes in the description. I would like to be able to put a button on the form that allows users to use the "Measure Distance" tool so that they can measure the part while they are creating the description.
Any code that I could use to activate the "measure" tool while a vba form is active?
View 8 Replies
View Related
May 10, 2005
I noticed that when "distance effect" is selected in viewing preferences, the paper color of .idw files changes. I think it's not good, is it?
View 9 Replies
View Related
Apr 16, 2012
When using the rectangular tool how do i calculate equal distances between each Fin.The picture shows 11 Fins but they are not equal distances between each Fin which causes the Fins to be higher on the right side.Which formula / calculation do i need to use in Rectangle Tool to produce equal distances between each fin and therefore the 1st and 11th fin are in the same position on each side of the cylinder.Using Inventor 2012
View 9 Replies
View Related