AutoCad :: Getting Coordinates Of Polyline With Constant X Step

Aug 27, 2013

in order to obtain a seabed profile for a school project, I need to get the Y coordinate of a polyline on several Kilometers with a fxed X step of 2m between each point.

For the moment, the only manual solution I have found is to create a vertical line every 2m and to get the distance between the intersection of this line with my polyline and an horizontal line representing the mean sea level.

Is there any way to automatize it because it is very long to do manually and I don't have enough time ?

I did not succeed in doing this with dataExtraction. I also found on the internet a LISP file which extract the coordinates of points contained in the window. Nevertheless, I was told it is not possible to create automatically points on a curved polyline with a fixed x step.

What I need at the end is an excel file of this type to use it in another software:

X(m) Water Depth (m)
0 15.121
2 15.134
4 15.147
... ...

View 5 Replies


ADVERTISEMENT

AutoCAD .NET :: Scale Polyline But Keep Its Width Constant?

Dec 19, 2013

I have a polyline that has been inserted into a block.  I want to scale the block so that the start and end points of the polyline can change but the width of the polyline remains constant. 

View 2 Replies View Related

AutoCAD VB :: How To Change Coordinates Of Polyline

Nov 19, 2011

How to change coordinates of polyline ? 

I know how to get the coordinates but I need to get and change one of the coordinate.

View 1 Replies View Related

AutoCad :: Extract Coordinates Along Polyline

Jan 3, 2008

Imagine i have a polyline(2d or 3d doesn't really matter),and i want to extract the coordinates info of every vertex on the polyline from start to end.

How do i do that in AutoCAD?And if not is there a way to do it on any of the verticals?

View 9 Replies View Related

AutoCAD .NET :: Getting Coordinates Of Intervals For Polyline Divided With Preset Length

Jun 10, 2013

I have a an angular polyline (not horizontal or vertical). I want to equally divide the polyline with a specified length and get all separation co-ordinates at each interval. The line remains as polyline, I need to get only the co-ordinates of all the possible divisions for a given length.

I need a C#.Net function for this.

View 4 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Polyline Z Values Not Being Returned By Vla-get-coordinates

Sep 8, 2011

I have a 2 point LWPOLYLINE that has the following coordinates at its end point when I 'ID' the point.

Command: id
Specify point: end
of  X = 709369.3214     Y = 7153039.9690     Z = 269.2143

However if I use..

(vlax-safearray->list (vlax-variant-value (vla-get-coordinates (vlax-ename->vla-object (car (entsel))))))

I get this

(-450567.0 269.288 -450570.0 269.214)

and if I 'dump' the object..

;   Coordinates = (-450567.0 269.288 -450570.0 269.214)
;   Document (RO) = #<VLA-OBJECT IAcadDocument 09855674>
;   Elevation = 7.17399e+006

I don't have a clue where the '-450567.0' is coming from.

I'm in Model Space in 'World' UCS, and I'm confused..  why does the 'ID'd' value not reflect whats going on when I use the vla-get-coordinates approach.

There are many other LWPolylines within the same model that behave normally.

I've attached the drawing (I think!)

View 7 Replies View Related

AutoCad :: Exporting Handles And X Y Coordinates From Polyline And Resulting In Text File

Dec 21, 2011

Code that I can run to export the handles and x y coordinates of closed polylines and show results in a text file.

View 9 Replies View Related

AutoCAD .NET :: Undo Transactions Step-by-step Within Command Method

Sep 26, 2013

I have a Command Method which has a loop that opens and commits transactions until the user is finished with it and exits. 

I would like each transaction to be undone separately but the undo command undoes the CommandMethod (along with all the transactions that occurred while in the loop)

Do I need to use the COM StartUndoMark and EndUndoMark to get this working?

View 3 Replies View Related

Photoshop Elements :: Step By Step Process For Doing Layer Masks?

Feb 22, 2013

I have somehow reversed the process of changing a sky in my photo so that when I get to the point of painting in the sky from the 2nd photo, it is painting with white (not black) that brings out the background I want on the original photo.  Where have I gone wrong?  Is there anywhere I can go to find a detailed step-by-step process for doing Layer Masks?

View 1 Replies View Related

Photoshop :: Step Backward And Step Forward

Dec 18, 2008

I have CTR-Z mapped to step backward.

Using two different shortcuts for "undo" (one step back) and "Step Backward" (Multiple steps back) makes no sense to me. As such, I rarely use the regular undo, and do not have it mapped.

The case:

When I switch to a new layer, do a brush stroke and undo it, photoshop treats my undo as a switch back to the layer I came from. This happens a LOT, and not just to me, but to a lot of designers I know (I'm a GUI designer at a game company). Some of them have even formed a habit of "erasing" a bit in an empty part of the layer, just in case the'd later want to undo. That's bad.

My proposed solution:

-First undo my stroke, Leave my selected layer alone.

-On a NEXT press of "Step backward" change my current layer to the one I came from.

View 10 Replies View Related

AutoCAD Civil 3D :: Translate Point Coordinates From Paperspace To World Coordinates In Modelspace

Jun 18, 2012

i am trying to translate a Point coordinates from Paperspce to world coordinates in model space.The code i used in Land2006 worked OK but now in Civil3d 2012 it doesn't!

Private Sub GetPlais_Click()
Dim tmpnt1 As Variant, tmpnt2 As Variant, tmpPnt1 As Variant
Dim lole(0 To 2) As Double, upri(0 To 2) As Double
Dim returnobj As AcadObject

FrmGrid3.Hide
On Error GoTo Eline
ThisDrawing.Utility.GetEntity returnobj, tmpPnt1, "ÅðÝëåîå ôï ViewPort ðïõ èá äçìéïõñãçèåß ï êÜíáâïò!"
If TypeOf returnobj Is IAcadPViewport Then
[code]........

View 1 Replies View Related

AutoCad :: Converting Northing And Easting Meters Coordinates To Map Coordinates

Aug 21, 2013

I'm a GIS analyst trying to learn Cad. I'd like to place a single point in autocad model space at a specific Northing/Easting position. After reading several forum threads I don't think CAD allows me to change the coordinate system of model space from map coords to northing easting coords, as we can in GIS.

View 5 Replies View Related

AutoCad 2D :: Drawing Polyline To Have Tooltip Box Show Cumulative Length Of Polyline

Nov 6, 2013

Is there a way, when you are drawing a polyline, to have the tooltip box show the cumulative length of the polyline, rather than the length of the current segment being drawn?

View 6 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Reduce Polyline With Multiple Vertices To Single Polyline

Jun 7, 2012

I would like to take all the vertices out of a multiple-vertices polyline so that it reduces to just its start and end points, can this be done?

View 4 Replies View Related

AutoCAD Visual LISP / AutoLISP :: 3D Polyline To Polyline To Spline With Max

Sep 21, 2013

Due to modeling purposes, I need to convert a 3D polyline to a spline. What I have been doing is:

- change polyline fit/smooth to cubic from properties
- convert polyline to spline by typing spline -> object
- method -> fit from properties

You can see the original 3D polyline (green) and the resulting spline (magenta) in the attached drawing.When I zoom in and measure the distance between the two entities at different points along them, at some points the perpendicular distance exceeds 5 millimeters, and I want to ensure the deviation remains under 1 millimeter or even less.

I know I can change the knot parameterization of the spline, and this does work at some locations, but the difference increases at others.Why is there a 5.6 mm difference between the spline fit point and 3D polyline vertex, as measure in the attached drawing?

Now, I can go and manually stretch the fit point to coincide with the vertex. Also, I can add fit points between existing ones to drag the spline closer to the original 3D poly.

However, some of my polys are really long, and it is very time-consuming to do this manually while measuring points along the entities to make sure the distance stays small enough.

how to automate this process? For example a lisp that would maybe take the original vertex points, add say maybe 3 (not too many) new ones between them, and then generate a spline while making sure the deviation is less than the set value of 1mm? I am using AutoCAD 2013.

View 5 Replies View Related

AutoCAD .NET :: Getting Polyline Data Into A Custom Derived Object (from Polyline)

Nov 11, 2013

I've been working on a custom polyline object, and I've got it functioning!!Having said that, I plan to run its creation around picking a point for bounary selection.

(Other than trying to step through every vertecies) is there a technique I can thow the polyline data from a traceboundary result into my custom object? I've been trying to add the polyline from traceboundary to my object BEFORE it's added to the transaction by the way...I assume that's right, since I want to put it's data in my custom object then add my custom object to the transaction instead.

View 3 Replies View Related

AutoCAD Civil 3D :: Convert Metric 3D Polyline To 2D Polyline

Jun 29, 2013

I want to convert a 3D polyline to 2D polyline.

View 5 Replies View Related

AutoCad :: Automatic Join Polyline Onto Existing Polyline?

Sep 16, 2011

Is there any way at all to draw a new polyline - from the endpoint of another polyline, and have it automatically join as one polyline from the existing section??

I know this can be done via PEDIT, but its so laborious and soo many clicks, and I have alot of segmented Polylines that I need to consolidate when I draft.

View 7 Replies View Related

AutoCAD VB :: Getting Constant Attribute

Mar 20, 2012

How I would be able to grab the block constant attribute by searching via tag.

e.g. block has a constant attribute 'Color' with value of 'red' and I wish to attain 'red'

I am currently obtaining non constant attributes using:

Dim attRef As AttributeReference = DirectCast(tr.GetObject(attId, OpenMode.ForRead), AttributeReference)

and grabbing the '.textstring' when looking at the '.tag'

How do I go about this with similar logic but pointing to constant attributes? I have tried searching thoroughly and almost all results for me were in VBA.

View 6 Replies View Related

AutoCAD Civil 3D :: Align Polyline Onto Another Polyline

Mar 22, 2012

Any way I can align a new polyline to a reference polyline (orig polyline).

The 2 polys will be generally the same length, however, the number of vertices will differ.

Also I need to mantain the same distance between the vertices on the new poly and the new and reference poly won't follow the same direction.

View 9 Replies View Related

AutoCAD .NET :: How To Find If Polyline Is Inside Another Polyline

May 18, 2011

How do you find 'if' a polyline is inside another polyline?

View 2 Replies View Related

Revit :: Coordinates To Real World Projection Coordinates?

Aug 15, 2012

The coordinates that we can apply in Revit (project/shared) aren't exactly the same to have real world projection coordinates (WGS84)??
 
If not how can we convert the revit shared coordinates to real world projection coordinates?

View 1 Replies View Related

AutoCAD Civil 3D :: Constant Flow In SSA?

Dec 11, 2013

I have a client that wants to put in a constant flow into an inlet and have SSA calculate the HGL downstream of that (as well as add additional flows at additional inlets). Is there a way to do this? I tried adding an "Initial flow" to a pipe but after running the analysis, that flow wasn't the peak of the pipe (I used 1cfs for the initial flow and the peak was 0.77 cfs).

View 6 Replies View Related

AutoCAD Inventor :: Constant Not Responding And Freezing

Aug 7, 2013

Ok, so I just got a new computer after having to deal with "Not Responding" from my old computer all the time just to find out I still have this issue with a brand new computer.  It's really frustrating because it will do this all the time with small assemblies, big assemblies, parts, it doesn't matter.  It also can be at any random moment from rotating the model to adding a constraint to saving.  It doesn't seem to have any real pattern it just seems to happen all the time.

View 9 Replies View Related

AutoCAD Civil 3D :: Constant Slope Median

Jun 18, 2013

C3D2012..I have an assembly with left and right curb subassemblies, they are spaced about 1 m apart.  I want to connect the BOC's with a constant slope median.  I bring in the median and connect it to the Left BOC and it attaches, but shoots the median for 20 m across the assembly to the right.  I tried to put a marked point on the right BOC prior to bringing in the median assembly, but the same thing happens.  I changed the marked point name to RTC (Right Top Curb) and also changed the name to match in the median subassembly,  with the same results.

Any proper way to insert the median and get it to connect properly.

View 9 Replies View Related

AutoCAD 2013 :: Sheetset Not Accessible - Constant Warning

Dec 12, 2012

Getting a lot of message pop ups about not accessible dst file. In conjunction with this is constant slow down if the sheetset is open with the blue cursor wheel constantly thinking. If the sheet set is closed, this immediately fixes this. 

Ruled out network problems as 2012 works fine. I believe this to be isloated to 2013.  

View 2 Replies View Related

AutoCAD Inventor :: 2012 - IDW View Constant Update?

Jul 25, 2013

We have views of a large system that will constantly stay in a "updating" mode.

However you can place another base view of the same system from a different perspective and that view will solve out.

In the attached image the view on the left will not finish updating while the view on the right solve out rather quickly.

View 2 Replies View Related

AutoCAD 2010 :: Polyline To 2D Polyline?

Mar 2, 2012

How do you convert a closed Polyline to 2D Polyline? CONVERT does not work in reverse.

View 4 Replies View Related

AutoCad 2D :: How To Convert 2D Polyline To Polyline

Jun 25, 2008

I have 2D polylines and want to convert to polylines, but to no avail. Tried to 'spline2pline' this line, but ACAD refuse to select it.

View 9 Replies View Related

AutoCAD LT :: Constant Blue Screens When Working Between Drawings 2014

Aug 29, 2013

We have a persistant blue screen. Stop Error 0x124 and 0x122.

PC spec:

Core i7 3.4Ghz

16GB RAM

GeForce 560Ti GTX

Intel DX79SI main board

Ever since we installed CAD LT 2014 we have persistant BsoDs on two PC's.

I have tried the GFX Hotfix. Seem to work for 2 weeks and now again a stop error 0x122.

The PC drivers are up to date, latest BIOS, all possible updates that are availible are install, even tried to disable the InfoCentre.

We did do clean Installs, swopped hardware. It keeps happening on 2 of the 8 PC's we have.

Would watching movies in the background have an effect? I am at the end of my diagnosis. 

There are no hardware failure when running benchmarks or burn in tools. Only in CAD

View 4 Replies View Related

AutoCAD Inventor :: Studio Errors - Constant Speed Option

Jul 11, 2013

why I might be seeing this error? I get this as soon as I select the "Constant Speed" option. I haven't input any other values yet. I've already set the "constant speed" option on the animation timeline menu. I also only get this error when this sub-assembly is inserted into a higher level assembly. If I animate the same components in the sub-assembly file, it works fine. What am I missing? There are no parameters holding these components in place in this upper assembly either, that was the first thing I checked.

View 1 Replies View Related







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