AutoCAD Inventor :: Create A Workplane With The API That Is Tangent To A Surface

May 18, 2006

How can I create a workplane with the API that is tangent to a surface and passes thru a workpoint. It is easy to create a work plane of type kPointAndTangentWorkPlaneDefObject by point and click in Inventor 11, but I can't figure out how to do it in the API.

View 5 Replies


ADVERTISEMENT

AutoCAD Inventor :: Best Way To Create A Workplane At Angle On Tube Surface?

Aug 1, 2013

What is the best way to create a workplane at a given angle on the surface of the tube. Imagine the workplane long and thin running along the surface of the tube. The angle will be a parameter (from a sketch or user).

I'd like the workplane to always be on the surface of the tube, even when the diameter of the tube (from a dimension in a sketch) changes.I'm thinking that a (angled) line in the same sketch as the two circles (which define the tube diameter and thickness) would be a good starting point.

View 9 Replies View Related

AutoCAD Inventor :: Plane Tangent To Curved Surface?

Oct 2, 2012

I'm designing a part, and am having trouble creating a plane tangent to a curved surface. One option for creating a plane says "Tangent to Surface through Point", which in theory I should be able to use, but I can't figure out how to actually place a point there before in order to create a surface at the point.

Basically I am trying to cut a circle into the curved right side of the part

I've attached the part file for reference.

View 5 Replies View Related

AutoCAD Inventor :: Create Workplane From Selected Face?

Nov 14, 2012

I am working on a project were I need to select a face and create a workplane out of such face, see the figure attach. my language of choice is C#. 

Here is what I think it should be done, my proble is that the oWork (the workplane I just created remains null) and the whole project crashes.
 
private Inventor.Application mApp = null;.....if (((mApp.ActiveDocument != null))){
if ((mApp.ActiveDocument.DocumentType == DocumentTypeEnum.kPartDocumentObject)){
PartComponentDefinition oPartCom = mApp.ActiveDocument as PartComponentDefinition;
PartDocument oDoc = mApp.ActiveDocument as PartDocument;if ((oDoc.SelectSet[1]) is Face){
System.Windows.Forms.MessageBox.Show("You just selected a surface", "Surface Evaluator");Face oFace = oDoc.SelectSet[1] as Face;
WorkPlane oWorkpl = oFace as WorkPlane;
PlanarSketch oSketch = oDoc.ComponentDefinition.Sketches.Add(oWorkpl, false);
//WHAT AM I DOING WRONG?
}}}

View 4 Replies View Related

AutoCAD Inventor :: Create WorkPlane By Point And Line

Apr 5, 2013

I am trying to create a workplane by a point and a line.  I can do this maually, but have not been able to reproduce this in code.

BTW: I realize I can create a fixed workplane by using the point, the edge, and an edge perpendicular to the edge, but I cannot have this as a fixed workplane.

View 6 Replies View Related

AutoCAD Inventor :: How To Create Workplane From A Face Using Select Set

Nov 8, 2012

I am making a C# Add-in, I need to create a plane from a selected face, I am using the following code, but I am getting stuck.

if (((mApp.ActiveDocument != null)))
{
if ((mApp.ActiveDocument.DocumentType == DocumentTypeEnum.kPartDocumentObject))
{
PartComponentDefinition oPartCom = mApp.ActiveDocument as PartComponentDefinition;
PartDocument oDoc = mApp.ActiveDocument as PartDocument;
[code].......

View 2 Replies View Related

AutoCAD Inventor :: Wrap Folded Surface (continuous Tangent)

Nov 16, 2011

Does the action (look in .ipt file) shown in the attachment is appropriate and complies with the autodesk wikihelp?

Windows7 64b; GIGABYTE EX58-UD5; Intel Core i7 920 (2.66GHz)
DDR3 3x2GB Kingston, HD ST 750GB+320GB
NVIDIA Quadro FX1800 (1680x1050) + SpacePilot PRO
APDSUltimate 2014

View 6 Replies View Related

AutoCAD Inventor :: Create Workplane From A Face In Assembly Document

Jul 15, 2011

In an assembly document, I try to add a MateConstraint between male and female side of an 45 degrees elbow. The male side is built on the XZ Plane and Y Axis And I try to create a workplane on the female face.

But a got an error with the last line of code.  Here's my code (vb.net code) :

' Get application object
Dim app As Inventor.Application = GetObject(, "Inventor.Application")       
Dim doc As Inventor.AssemblyDocument = app.ActiveDocument           

[Code] .......

View 3 Replies View Related

AutoCAD Inventor :: Tangent Assembly Constraint - Ellipse Surface To Line

Aug 26, 2013

Why can't Inventor constrain an ellipsoidal contour with a line? We have pressure cylinders which uses a 2:1 ellipse. These cylinder get welded to a base stand fixture. The surface of the ellipse nestles in between contact points of the base stand, in this case lines of geometry. Yet Inventor can't constrain them as such. Any good workflow (at the assembly level) so that we don't have to ground components and use the Analyze Interference tool to make sure we are right on the surfaces? I don't understand why it will work for a cylindrical surface but not an elliptical surface.

View 7 Replies View Related

AutoCAD Inventor :: Create A Plane Tangent To 2 Cylinders?

Dec 28, 2012

I have 2 different diameter cylinders and I would like to create a plane that is tangent to both.

View 7 Replies View Related

AutoCAD Visual LISP / AutoLISP :: How To Select All Tangent Surfaces To A Selected Surface

Nov 13, 2011

i.e. it would be usefull for separating the top and bottom of a sheet metall or plastic part.

Other cad systems I have seen have a function to do this automatically....

View 9 Replies View Related

AutoCAD Inventor :: How To Put IFeature On Workplane

Aug 12, 2013

I want to put my iFeature on my workplane,but i can't.However, if I change my PlaneInput = oFace , it can work perfectly.My program is below:

Private WithEvents oInteraction As InteractionEvents
Private WithEvents oselect As SelectEvents
Private Sub UserForm_Initialize()
    Set oInteraction = ThisApplication.CommandManager.CreateInteractionEvents
    Set oselect = oInteraction.SelectEvents

[code]...

View 1 Replies View Related

AutoCAD Inventor :: Associating A Workplane With A Block

Dec 3, 2012

I want to use a lofted solid as a component in an assembly. I am using a top-down approach with 2D blocks to get the kinematics right before creating the components.

My problem is that the sketches needed to create the loft are on workplanes, and those workplanes are fixe with respect to an absolute coordinte system.

Is there a way to assosiate workplanes with a block instead, so that they will move with the part?

Is it possible that the problem is trying to do this in a part file, and that if I place the finished solid in an assembly it will then be able to move? ( I am fairly new to Inventor.)

View 1 Replies View Related

AutoCAD Inventor :: Moving A Fixed Workplane?

Jan 6, 2014

I created a sketch on a 'fixed workplane' and extruded it. I would like to know if it is possible to move the workplane? I understand I can change the workplane if it is a 'plane by offset from plane'.

If moving a fixed workplane is possible, does the extruded features move along together?

View 2 Replies View Related

AutoCAD Inventor :: Change Colour Of User Workplane?

Nov 22, 2011

Is it possible to change the colour of User Workplanes in IV 2011?

Autodesk Inventor 2013-64Bit Edition
Intel Xeon W3520 @ 2.67GHz
Win 7 Pro
6.7 System Rating
NVIDIA Quadro FX 1800

View 1 Replies View Related

AutoCAD Inventor :: Keep Drawing View Aligned To Workplane?

Jul 31, 2012

I have some models which are based on skeleton modeling and where the actual parts are modeled at the position where they are in the assembly. When the skeleton part is changed the parts will update and their orientation related to the origin planes can change. This is where the problem lies, on the drawings of these parts the views are all skewed after an update.

Is it somehow possible to tell Inventor that all views on a a drawing should stay alligned to a workplane? Because it are all parts and no assemblies I cannot use posreps (and I don't want to use dummy assemblies). I also tried setting a specific edge to be horizontal with the rotate command in the drawing. This works for the base view, but all projected views will still be skewed after an update.

View 2 Replies View Related

AutoCAD Inventor :: VBA Code Not Working For Workplane In Assembly

Oct 15, 2004

I have assembly file in which I have created a work plane "Work Plane19" . Now I wanted to create a new work plane which will be paralle to workplane "WorkPlane19" & offset by 10.5 mm in same assembly document through VBA subroutine. I have tried with following code but getting error,

Public Sub NewWorkPlaneCreate()
Dim oAssly As AssemblyDocument
Set oAssly = ThisApplication.ActiveDocument

[Code].....

View 6 Replies View Related

AutoCAD Inventor :: IPT File - Get Suppress Status Of Workplane

Jul 29, 2013

I have a ipt file in my assembly and try to makes some constraints. Everything ios working well, but there are some suppressed workplanes, and I don't want to use them for a automatically created constraint. Is there a way to find out the workplane suppress status?

Why are they suppressed? They are defined on a part feature (extrusion surface). And when I supress that feature, also the Workplane is suppressed.

But I only can get the visible status. Maybe there's a way to get it about the part feature, but therefore, I have to search for the part feature, and that's also a problem. I cannot get the part feature, who is used for the workplane definition (I think, it's a problem of my knowledge )

Please see attached a small view on the browser where you can see the suppressed Planes.

View 2 Replies View Related

AutoCAD Inventor :: 2013 WorkPlane Edit Dimension

May 19, 2012

I have three workplanes.  All three were created the same way (offsetting an existing workplane).  I want to change the offset dimension.  I can on one of the planes, but on the other two, I have to "Redefine Feature".  There is no Edit dimension available in the menu.

One plane like this:

Two planes like this:

Why is it different?

View 3 Replies View Related

AutoCAD Inventor :: Rotate New Workplane Along A Default Axis With API

Nov 5, 2011

How do you create a new Workplane from a Defualt Plane and rotate it along a default Axis?I am new to API and trying to create workplanes and rotate them along a Axis.

Im trying to use "AddByPlaneAndOffset" is this the right method?

View 8 Replies View Related

AutoCAD Inventor :: How To Select Workplane In Drawing Document With API

Jun 18, 2013

If i made a workplane include in a drawing document with api, then it will display in the view as a center line.

I want add some note to the Center line,but i didn't know how to select it with api, Is there have the API function to do this work?

View 2 Replies View Related

AutoCAD Inventor :: Making Workplane With Export Object?

Feb 17, 2010

In Inventor, it is possible to mark a workplane with "Export Object", by rightclicking on the node. This make the workplane accessible when using the part as derived.

What is the programmatic access to the property? Can not find it on the Workplane object?

View 2 Replies View Related

AutoCAD Inventor :: Hide Workplane That Is Contained Within Clientfeature?

Oct 18, 2013

Is there anyway to completely hide a workplane that is contained within a clientfeature?

The attached part shows this when you hover over the client feature in the browser. I have the visibility of the plane turned off but it still shows up when the clientfeature is pre-selected.

View 6 Replies View Related

AutoCAD Inventor :: How To Create A Custom Surface

Mar 24, 2013

I have been trying to research how to create a custom surface. I found this article [URL]...... about how to to create a surface from a jpeg. The article says to "expand color on the top left." of the style editor. However, when I open the dialogue there is no "color" that can be expanded. The only thing in the top left of dialogue box is "lighting." Is there another step that the article misses, or is there another way for me to create a surface from a jpeg?

View 2 Replies View Related

AutoCAD Inventor :: 2012 - How To Create Surface / Extend

Jan 10, 2012

How i can create with vba a surface Extend

Take a look picture?

View 3 Replies View Related

AutoCAD Inventor :: Error Trying To Create Patched Surface

Aug 2, 2012

Trying to patch and then sculpt an area on a pipe so that it blends together better, however it keeps coming up with an error.  The strange thing is, it shows up in the preview after selecting all the edges but then does not calculate correctly.

Basically trying to fill the 2 small areas between the visible workplanes. Also, I couldn't get the project cut edges in the 2 sketches to only project the curves I needed, so all the cylinder edges are projected.

IV2012
Windows XP SP3 32-bit
Intel Core 2 Duo 6400 @ 2.13 GHz
Nvidia Quadro FX 3450/4000 SDI 256MB Vram
2 GB Ram
160GB HDD

View 1 Replies View Related

AutoCAD Inventor :: Sweep Or Create 3D Project To Surface?

Nov 29, 2012

Picture this, a tubular feature that has a path that runs along the circumference and turns linnear. A path thats .3125 in diameter. I attached a file that shows a hand sketch with this post but I can't tell if it  will show up.

View 2 Replies View Related

AutoCAD Inventor :: Find Intersection Point Between Line Segment And Workplane

Aug 31, 2011

I have to create a hole (extrude) in a wall part in my assembly document where a stack will be installed.

To determine where, I verify if a line segment pass through the wall (XY Plane).

But I get an error with the command: IntersectWithLine

Here's my

 Public Function IntersectionPoint(ByVal app As Inventor.Application,
ByVal wp As Inventor.WorkPlane) As Inventor.Point
Dim oTransGeom As Inventor.TransientGeometry = app.TransientGeometry
Dim startPoint As Inventor.Point = oTransGeom.CreatePoint(Me.StartVertex.X,
[Code] ......

View 2 Replies View Related

AutoCAD Inventor :: Create Work Plane Perpendicular To A Surface?

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

AutoCAD Inventor :: Possible To Create Exterior / Visible Surface Model From IAM

Jan 27, 2012

Is it possible to use an Autodesk Inventor .iam (assembly) to generate a file containing only the visible/exterior surfaces of that .iam?

My employer has a requirement that, in certain situations, only data without internal features/details can be supplied to customers.In this case, we only want the customer to be able to view the assembly & not see the internal features of individual parts.

View 3 Replies View Related

AutoCAD Inventor :: Create Surface Bodies From Multiple Faces?

Dec 27, 2013

I've currently written an application for SolidWorks that reads file that geometry in the form of faces (ie. 3 or 4 double values that represent triangular and quadirilateral faces).  I am trying to create the same application to work for Autodesk Inventor, but I am having some issues.

First, I am basing my code off from the examples given in the help files.  There's a lot of pointers to objects being to get to the Face creation portion, this seems to be slowing my appliation down considerable compared to the SolidWorks counterpart.  SolidWorks API has a modelling method called CreatePlanarSurfaceDLL that allows me to provide an array of doubles representing the vertex points in order (x, y, Z) for each point, so the array looks like this for a triangle (P1.X, P1.Y, P1.Z, P2.X, P2.Y, P2.Z, P3.X, P3.Y, P3.Z).  Is there anything similar in the Inventor API to simply the process?

Secondly, when using the example, they all have a known "shape" and therefor there are a definied number of vertices, edges, faces, etc.  And when adding the faces, the known points / vertices are used.  In my case, each face contains information for it's 3 or 4 vertices.  I created these using the prescribed methods, but when the final surface body feature is created, and a repair is performed on it, it shows a lot of duplicate edges and vertices.  Do I need to take the time and filter out all of the duplicate vertices, and point to a single vertex that may represent a vertext used by up to 3 or 4 faces?

View 1 Replies View Related







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