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
ADVERTISEMENT
Sep 30, 2013
I'm trying to figure out how to create an iLogic rule that would create a Custom iProperties and put in what version of Inventor the file was last updated with.
View 8 Replies
View Related
Jan 10, 2012
How i can create with vba a surface Extend
Take a look picture?
View 3 Replies
View Related
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
View Related
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
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
Mar 15, 2011
I would like to create an new custom ipropertie with ilogic. The reason is the contentcenter, thei haven't custom iproperties. How should the code work:
if
propertie "test" is available
write the value in the propertie
else if
propertie test isn't available
create prpertie
write the value in the propertie
end if
How can i check if the propertie is already exists in the file?
How can i create a new custom iPropertie?
The rest of teh code is ready and works fine.
i've faund already some code with VBA but not with "pure" ilogic.
View 4 Replies
View Related
Sep 14, 2012
How to create a custom ribbon with sketches cmd... I found example for assembly context... it work well but I don't find how to do that in sketch mode... The goal is to control the cmd the user can use.
View 3 Replies
View Related
Oct 11, 2013
I need a screw M16 x 0.25 mm. However, I don't have the option "0.25mm". How to create a screw with custom pitch size?
View 2 Replies
View Related
Jun 17, 2013
is it possible to create a custom symbol for my balloon?
View 2 Replies
View Related
Dec 10, 2013
Is there anyway to create a custom weld symbol in inventor? As of right now I am using a sketched symbol from autocad, but i would very much like to get away from this.
I need a bevel weld back gouged then ground flush on the back side. Cant do that as of right now with the inventor.
View 3 Replies
View Related
Jul 17, 2012
I'd like to know if it is possible to create a custom button with existing command in inventor.
View 1 Replies
View Related
Dec 21, 2008
Is it possible to create your own custom arrow head for use with leaders, balloons, dims etc?
View 3 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
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
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
Aug 16, 2012
I've read the posts pertaining to coil features along curved paths. The existing solutions are limited in that they must rely on a solid with the addition of a bend feature. How can I create a helical surface structure including multiple bends like the one shown?
View 2 Replies
View Related
Dec 27, 2013
Using the options param available for Create Transient Surface Body. The documentation states there is an option for Stitching and Merge Faces, which I would like to toggle to true. However, I'm not sure how of the correct syntax to provide this object.
View 3 Replies
View Related
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
Apr 1, 2013
I found this code to create a custom iProperty in the current, open document:
Dim propertyName As String = "MyProperty"Dim propertyValue as String = "Test Value"customPropertySet = ThisDoc.Document.PropertySets.Item("Inventor User Defined Properties")Try prop = customPropertySet.Item(propertyName)Catch ' Assume error means not found customPropertySet.Add("", propertyName)End TryiProperties.Value("Custom", propertyName) = propertyValue
I have a iLogic rule that goes through each component of an assembly, counts how many times it occurs in the assembly, and then assigns that value to an iProparty (i.e. it inserts the total quantity of the part in some iProperty). Currently, however, it assigns the value to a default iProperty value, "Authority". I'd like, instead, for it to assign it to a custom iProperty called "Total QTY". However, I don't know how to tell Inventor to do the above code for a component in the assembly rather than the assembly itself. Below is my entire code. I've labeled where I'm guessing the above code should go. How I'd modify the above code to create the iProperty in the component being processed by the rule at that point?
Current
''True comment: Begin '''Commented-out Begin '''PartDocumentObject = 12290''AssemblyDocumentObject = 12291Dim openDoc As DocumentopenDoc = ThisDoc.DocumentDim docFile As DocumentIf openDoc.DocumentType = 12291 Then''If the open document is an assembly:''For each document referenced in this document:For
[code]......
View 2 Replies
View Related
May 20, 2013
I can not create a new pipe section. İn inventor 2013, at the tube and pipe style
I watched these steps . still not
[URL].......
[URL]........
[URL]........
View 5 Replies
View Related
Jun 28, 2010
I created a template part, turned it into an I-part and published it successfully as a Frame Member.
The custom member was published into a custom library that is read/write. I was forced to create this library in order to publish the part.
When I go to use the custom profile with the frame generator, I am able to find the custom member in the dialog but when the frame generator tries to generate the part, I get this error message:
[WARNING] Frame Generator: Errors occurred during inserting Frame Member(s)
[WARNING] Insertion of frame member(s) failed
[ERROR] A frame member could not be created. The template file for Unnamed GIRT-2 could not be located in the Content Center library.
View 9 Replies
View Related
Jan 28, 2013
How to create a revolve surface in an assembly for the purpose of measuring a flow area through a specific area? See the attached JPG, I basically have a conical internal diameter with a pin protruding into it..... I need to measure the flow area as shown in the sketch attached here. the way I have this shown in the attached JPG is the way that we had previously performed this in Pro-e.
View 9 Replies
View Related
Mar 1, 2013
Im currently using an addon for Civil 3D called Novapoint. It allows me to create 3D models of surfaces made out of 3d faces and easily models cut and fill 3d-models for me.
The only thing i need to create a cut and fill model is one or several ground surfaces (existing ground, earth layers, rock etc. whatever i need) and a closed polyline/3Dpolyline that represents the level I want my cut and/or fill model.
I enter the spcifications I want such as; earth cut angle, rock cut angle, fill angle, select which surfaces i want to include in the model calculation and select the polyline.Novapoint then calculates the cut/fill model from the surfaces to the polyline and models the different cut/fill angles and gives me the results in a 3d-face model and a specification of the volyme of rock cut, earth cut an fill.
1. Novapoint is quite unstable and crashes alot
2. You cant create profiles out of 3d faces
3. Novapoint does not automaticly combine the start surfaces with the modeled cut/fill surface
4. A large surface made out of 3d-faces demands alot of computer power
So I want to how I do the same that Novapoint does for me in Civil 3D? (I have access to Civil 3D 2007-2013 depending on which one you're using)I know I can take the 3Dfaces i created in Novapoint and make a surface in Civil 3D with them but I want to exclude Novapoint completely.
View 9 Replies
View Related
Aug 25, 2012
Any way to use iLogic to create custom iProperties from the cells in an Excel spreadsheet (both text and numbers) for a .dwg template. The only thing even close has been a user who already knew how to do it and was having a different problem. I am using Inventor 2012 and Excel 2003 and have very little experience with VB. I currently have a family of assemblies, consisting of two parts linked to an Excel spreadsheet to control the various parameters for each variation of the assembly.
I need creating an iLogic rule that will:
Go to a specific tab (I have four different tabs/worksheets) in an Excel spreadsheet.
Make a specfic row of that worksheet the current row based on the part number used to generate the models of the assembly shown in a .dwg.
Use the contents of a cell in that row (text or numeric or a combination of both) to generate a custom iProperty for the .dwg template.
Use the custom iProperties to fill in the title block of the template.
View 4 Replies
View Related
Apr 24, 2013
the only property I can actually define for each individual sheet (for use in iLogic, text fields, etc.) is the sheet name. This is extremely limiting. Each sheet in my drawings has several properties of its own--sheet number (most importantly), what part is ON the sheet, the designer, the revision, etc. I would love to be able to use each of these in labels on the sheet, for example, a text box with "<Sheet #> - <Part> (<Designer>)". The only possible way I could do something like this is to use the sheet number as the Sheet Name, and then use that value in the sheet's text labels, headings, and title block. However, I want to be able to use descriptive names for the Sheet Name, plus that's just one property.
Is there any way I can create and define multiple custom properties for individual sheets? I was exploring the idea of using iLogic, using the ActiveSheet command, possibly, and "tricking" inventor into creating properties for a given sheet.
View 8 Replies
View Related
Sep 9, 2013
I keep running into a situation where I would like to be able to create an edge or a work axis at the intersection of a work plane and the surface of the part. I figured out a work around if the surface is flat, but I haven't figured out a work around for a curved surface.
How do I create work axis where work plane intersects curved surface?
Or put another way: How do I project intersection of work plane and curved surface onto the work plane in a 2D sketch?
I need to be able to draw a 2D sketch on the work plane, but get a perfectly matching projected line onto the work plane, from the curved surface, at the intersection of the curved surface and the work plane.
The attached jpg shows the intersection in question. I circled it.
View 5 Replies
View Related
Apr 10, 2013
how I can add more volume to curved object surface? Say for example I have a plastic cup.You can think of this as cylinder object ,which was the shelled out using the shell tool and then had its base sealed.
Now at certain parts, I would like to increase the thickness and then blend it the rest of the surface(may be chamfer its edges) .
At certain parts on curved surface I would like to add an extra mm, I think if the surface was flat I would just sketch the shape, then extrude it by few mm and smooth the edges by doing a chamfer
But how can this be done on surface that is curved? Or multi curved for edges?
View 9 Replies
View Related
Feb 28, 2013
I'm designing a press for a skateboard similar to: Rib Press
I have the board modeled: (see attached)
Now what i want to do is generate those ribs as seen in the picture.
I tried creating a block that intersected with the board and tried to split the rib at the surface, but to no avail. I think the issue has something to do with the curve of the board in two directions, but i can't seem to get it right.
if you are having trouble visualizing what i'm asking about, look at this. I want to be able to figure out the exact shape of those center ribs to print and eventually cut out of wood.
View 9 Replies
View Related
May 25, 2012
My ultimate goal is to have a virtual human model that I can re-size parametrically to reflect real-world measurements. I've used MAX to make architectural models and scenes so I know how to manipulate basic shapes in MAX.
how to make some sort of basic-custom geometric shape and control that shape parametrically, like the built-in "Box", "Sphere" and "Cylinder" objects.
View 1 Replies
View Related
May 31, 2012
It is not possible forme to add the fil because it is to large 1.8MB how can I poste then I like to know if it is possible to extend the button flat surface diameter ø12.5 up to the shaped surface. The result should be a total solid block whit a surface shaped hole.
File last up-date with Autodesk Inventor Professional 2013
View 6 Replies
View Related