AutoCad :: How To Export Points From Three Different Axis In DXF File For Three Different Views

Oct 16, 2013

Is there a simple way to export points from the three different axis in a .dxf file for three different views (top, side and front) in autocad 2012? I need to export the points in to excel to run a macro in CATIA to create the surface of an aircraft. I got the .dxf file from the boeing website [URL]....

View 0 Replies


ADVERTISEMENT

AutoCAD Civil 3D :: Export 7 Million Points To Text File

Jun 21, 2012

i need to export 7 million points from a tin surface to text file with only NEZ in comma delimited format for Surfer 9 software. right now i have the civil 3d surface. but the export to csv stock reporting tool sucks. why the hell do you open the file and why leave an empty row between data points? so it's not usable.

also i have 12gb ram at work and it can't export surface points to autocad format ran out of memory. this is with surface display showing points and just the "dot" style so it's autocad points after export. i was originally planning on using "dataextraction" command in autocad to export to csv. worked on a small batch of file. so i think may work for the bigger file. but i would never know because i can't even get the points into autocad.

also yeah i would love to simplify the surface but it's so buggy that you asked it to remove 80% of the points it only remove 100k points at most out of 7 million. so not usable.

last resort is i can program something in vb.net but not much motivation on doing so.

View 9 Replies View Related

AutoCAD Civil 3D :: Utilize Trimble Ability To Export Points To XML File

Apr 13, 2012

I am trying to utilize Trimble's ability to export Points to an XML file.   The XML file contains some additional Attribute data.  I have created the new Point UDP's and also Created a new Point File Format.  Here lies the Problem, when I go to the Insert Tab in the Ribbon and pick import from XML.  It gives me no choices to select a Point File Format?  It just imports the file with just PNEZD data only, and not my additional Attributes. 

View 7 Replies View Related

AutoCad :: Export To Text File Data Points That Make Perimeter Of Sections

Oct 4, 2011

I am completely new to the forum and to Autocad. I am using version 2011.

I am working with irregular solids and after I SECTION them, I would like to export to a text file the data points that make up the perimeter of the sections.

Ideally, I would like to do it from the command line, but that's a secondary goal, first of all I would like to know how to do it.

View 0 Replies View Related

AutoCAD .NET :: Align Z Axis With 2 Points

Jul 6, 2012

I'm trying to Align the Z Axis with 2 points, that works but I'm 90deg off around the Z Axis.

Shared Function UCSAlignZaxix(ByVal Point1 As Point3d, ByVal Point2 As Point3d) As Matrix3d

Try
Dim ZAxis As Vector3d = Point1.GetVectorTo(Point2).GetNormal
Dim yAxis As Vector3d = ZAxis.GetPerpendicularVector.GetNormal
Dim xAxis As Vector3d = yAxis.CrossProduct(ZAxis).GetNormal
Dim NewMatrix3d As Matrix3d = Matrix3d.AlignCoordinateSystem(Point3d.Origin, Vector3d.XAxis, Vector3d.YAxis, Vector3d.ZAxis, Point1, xAxis, yAxis, ZAxis)
Return NewMatrix3d
Catch
Return Nothing
End Try
End Function

View 1 Replies View Related

AutoCAD Inventor :: Extract All X / Y Axis Points From Spline

Oct 23, 2012

I need to be able to extract all "X" and "Y" axis points from a "spline" created in a 2D "sketch" and display them in the "Debug" window (for test only).

View 3 Replies View Related

AutoCAD Civil 3D :: Export Points To Datacollector And Create Points List

Feb 8, 2013

I had to create a boundary map and place points to all corners. How to export these newly created points back into my data collector (Ranger) and also I'm trying to figure out how to print out a points list. 

I stumbled on to this thread but I guessing that it's a different CAD year because my modify tab doesn't look like this. URL.....

View 4 Replies View Related

Revit :: How To Move Objects In Vertical Direction (z-axis) In 3d Views

Dec 3, 2013

Any way to move objects in vertical direction (z-axis) in 3d views, without having to turn the view everytime to be of frontal direction. I would like to move entire objects - for example mass objects - up or down directly in a 3d view of random orientation, now only top- or bottom face can be moved vertically, the whole object moves only on xy -plane. Can vertical movement of an object be done intuitively graphically and/or can it be be numerically, feeding coordinates?
 
Have tried all sources, but cannot find solution, and refuse to believe that Revit would be the only 3d/bim software on planet where direct vertical manipulation of objects is not possible.

View 4 Replies View Related

AutoCAD Inventor :: How To Add Axis And Plane Thought Center Points

Jun 20, 2007

Attached are two parts and an iFeature that I keep in the "Punch" folder and use as a punch. It is common that clearance holes need to turn into slots and vice versa. The centerpoint is the perfect locator for both. The problem is I have not found a good way to place an iFeature slot on a centerpoint as easy as I do an iPunch. This means I have to convert the part to sheet metal and then back again.

Is there an easy way to place a slot, or a similar slot like this with an iFeature? ie as easy as the Hole Feature or iPunch Feature?

The other thing I do is add an axis and plane thought the center points to aid in constraining. If I remember correctly it was not possible to include work geometry in an iFeature (at least with version 10)

View 5 Replies View Related

AutoCAD Inventor :: Automatically Project X-axis / Z-axis Or Z-axis Onto Sketch Plane?

Aug 25, 2010

Is it possible to automatically project the x-axis, z-axis or z-axis onto the sketch plane?

I.e. every time you open a new sketch the corresponding lateral and vertical axis will be projected onto the sketch.

View 9 Replies View Related

AutoCAD Inventor :: User Work Plane - Axis And Points Become Visible

Dec 17, 2012

Currently using 2012 and I had the same problem in 2010.

When I turn visibility off and on in an assembly, all previously constructed user planes, axis and points become visible.

Is there a fix available to download?

View 7 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 Visual LISP / AutoLISP :: Set Z Axis Orientation To Two User Points To Draw And Extrude Circle

Feb 10, 2012

I'm trying to change a routine i just wrote that draws 3d pipes. I wanted to make it so that when a user selects the beginning point and ending point of the pipe, the LISP changes the ucs to that vector, draws the circle at the beginning point and extrudes it to the second point.

It actually works great except when the ucs changes, so do my user points because of teh origin change. Is there a better way I might get this to do what I wnat it to?
 
(setq ip (getpoint "
Pick First Point:"))(setq ep (getpoint "
Pick Second Point:"))(command ".ucs" "za" ip ep)(setvar "osmode" 0)(command ".circle" ip "d" od)(command ".extrude" (entlast) "" (distance ip ep))(command ".ucs" "w")(setvar "osmode" oldsnap))

View 2 Replies View Related

AutoCAD 2010 :: Export UCS And Views

Apr 18, 2012

Is there a way that once i have setup all my ucs & views, that i can easily export this information to another dwg without having to manually setup all of the different views again?

View 3 Replies View Related

AutoDesk Smoke :: Possible To Export Axis Data?

May 4, 2012

For example as a txt file or something like that? (out of action)

Smoke 2012 SAP2 SP4
and
Smoke 2013 SP2 (Smoke Classic Keyboard Shortcuts)
Mac Pro 4,1
OS X 10.6.7
12 GB RAM
NVIDIA Quadro 4000
14 TB RAID (Areca)

View 1 Replies View Related

AutoCAD Inventor :: Attach Axis System To Cylinder Axis

Mar 25, 2013

i try to make an animation. I create a cylinder and i want to rotate it by longitudinal axis. i click 'components', select the cylinder and after i click 'position' to select the axis that axis system appears in the right side of the cylinder not in the middle. If i continue whit this settings the cylinder will rotate by a circle not by his longitudinal axis. How can i move that axis sistem in the middle of the cylinder? I can drag it but can't place it exactly in the middle.

View 1 Replies View Related

AutoCad :: Extract Rotation Of Block Relative To Yz Axis And Xy Axis

Oct 7, 2013

Is there any way I can extract the rotation of a block relative to the yz axis and xy axis. I can extract the insertion point and xy rotation but not the yz and xz.

View 9 Replies View Related

Illustrator Scripting :: Export Custom Views To PNGs?

May 1, 2013

I'm looking for a script that allows me to export custom views (created via "View > New View") into separate png files.
 
I've already found some great scripts that export Layers or Artboards but nothing for Views.
 
It seems Illustrator's "Views" are the closest equivalent to Photoshop's Layer Comps.

View 2 Replies View Related

AutoCAD Inventor :: Axis Rotated In A Part File?

Sep 9, 2013

The part isn't symmetrical about the YZ plane, you can see it in the sketch of extrusion 1.

Now i started a new sketch, sketch 24, and the part is positioned like in the picture, with the YZ plane not vertical.

View 9 Replies View Related

AutoCAD Civil 3D :: Export Cogo Points With Attributes?

Apr 15, 2012

Is there an easy way to export Cogo Points with attributes to a text file e.g csv file.

The attached imae shows an example of the Cogo Points I need to export and open in a spreadssheet. I need all the information (not just E,N,Z,D) of the point.

View 2 Replies View Related

AutoCAD 2010 :: Export Coordinates Of Points To Spreadsheet (relative To Origin)

Jul 31, 2012

I’m trying to export from my drawing point X-Y position coordinates to Excel for use in programming a metrology that will measure at these locations.

When I use the EATTEXT command to pull up the data extraction wizard, it will export the positions & extracts the locations to a spreadsheet format. But coordinate numbers I get, seem to be relative to the World USC system & not the origin I align & set in the center.

Yet when I use ID Point, to check positions the coordinates of the points are correct & relative to the center origin. How to get the location coordinates relative to the center USC origin I've located in the center of my part?

View 9 Replies View Related

AutoCAD 2013 :: How To Create Multiple Views Of Same Part Separated From Other Base Views

Apr 3, 2013

I am trying to create a second base view (using Layout/Create View/Base from model space). The problem is, I need it to be rotated from the original base view. However, when I rotate the part in model space, ALL of my views change. 

So I guess my question is, how do I create multiple views of the same part that are seperate from the other base views?

View 9 Replies View Related

AutoCAD 2013 :: Sheetset Deleted Views Still Appear In Sheets List Of Views

Aug 29, 2013

i have views lets say 3 views on a sheet but in the list of views theres mores that appears maybe i inserted the extra views that are showing but i deleted them to put them on another sheet

the problem is they show up in the list of both sheet and i can't delete them from the list of the sheet that they were before

View 1 Replies View Related

AutoCAD Inventor :: Editing Views In IPN File - Not Possible?

Oct 19, 2012

When creating Views in .ipn files, using View Reps from .iam files, you get "Options" window where you can check Associative box, or leave it unchecked. How do yo get back to this window once the view is created?

View 6 Replies View Related

AutoCAD Inventor :: Views Replacement In IDW File?

Apr 8, 2013

Any way to replace views with different assemblies in the .IDW  files? I really don't want to blow away all of my views and replace them manually!

View 2 Replies View Related

AutoCAD Inventor :: Creating Projection Views In IPT File

Dec 13, 2012

Is it possible to create projection views of a solid model part? I want to make a front, top and right side view of the part in solid model form all on the same part file. I thought I could copy the part in each view but "help" says I can't copy a solid model.

View 4 Replies View Related

AutoCad 3D :: Import Cameras (or Saved Views) From One File To Another?

Dec 4, 2011

Is it possible to import cameras (or saved views) from one AutoCAD file to another?

View 0 Replies View Related

AutoCAD Inventor :: Import IAM File With Views And Positions To Showcase?

Sep 23, 2013

I need to Import a IAM file with Views and Positions to Showcase. I found several tutorials on this, but as soon as I add a position in Inventor none of the above are imported. Without any Positions, Views get Imported.

It's Inventor and Showcase 2013.

View 1 Replies View Related

3ds Max Animation :: How To Lock Z Axis Of Object With Upper Arms Z Axis

Jan 25, 2013

I'm rigging a shoulder pad to a biped and I'd like it to only rotate on one axis. Google hasn't been that useful, and I hope I don't need scripting for this kind of minor thing. I'm rather new to 3Ds Max Design but I'm learning fast and liking it so far!

I've attached what I want to effectively accomplish. I'm looking for a way to lock the z-axis of the object with the upper arm's z-axis.

EDIT: Reduced picture size.

View 3 Replies View Related

AutoCAD 2010 :: Combine Multiple Drawing Views Into Single DWF File?

Jan 29, 2012

Can the Plot command be used to combine multiple drawing views into a single DWF file?

View 1 Replies View Related

AutoCAD Civil 3D :: Copying Alignments Into One File - Profile Views With Ease

Feb 12, 2013

I am doing design for a road network. For the ease of design, I designed the main roads and split the whole network into parts. Every part will contain Main Road Alignments and alignments for a respective parts only. Now I want to combine all these into one file. When I copy all alignments into one file, the surface I created earlier is duplicating and software gets hanged.

View 2 Replies View Related







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