AutoCAD 2013 :: Explode Polyline Or Line To Points?

Mar 20, 2013

I'd like to explode a polyline 2d, 3d or a simple line to single 3d points.Civil 3D (2013) how much you have to improve....

View 4 Replies


ADVERTISEMENT

AutoCAD Civil 3D :: How To Create New Vertex Points In Line And 3D Polyline

Nov 24, 2013

I want to create new vertex points in feature line  and 3dpol.

I have this:
try
{
if (obj.GetType() == typeof(Autodesk.AutoCAD.DatabaseServices.Polyline3d)) {
Polyline3d p3d = (Polyline3d)trans.GetObject(entRes.ObjectId, OpenMode.ForWrite);

[Code]....

In this code line:

oFtrLn.InsertFeaturePoint(punt, AeccLandFeatureLinePointType.aeccLandFeatureLinePointPI);
 
always catches the same Exception "the value is not within the expected range" .I have translated it because I get "El valor no está dentro del intervalo esperado". Perhaps is this: " Value does not fall within the expected range.".

I have tried it with different point3d values but always catches  Exception.

With pol3d I have similar problem.
 
Autocad Civil 3D 2014 +SP1
Quad Core Intel i7 3770-cpu 3.40Ghz.
ssd samsung 840 pro 512gb+ssd samsung 840 pro 256 gb+1tb hdd
32gb RAM 1600 Mhz.
nVidia Quadro 2000.
Win 7 Pro 64bit

View 4 Replies View Related

AutoCAD 2013 :: How To Break A Line Or Polyline Down To Equal Segments

Feb 5, 2013

how to break a line or polyline down to equal segments.

View 4 Replies View Related

AutoCAD 2010 :: Explode Polyline / Polygon Within Block

Jul 23, 2012

I would like to explode a polygone I've created within a block.

But I get the "_amexplode This command is not allowed while the REFEDIT command is active."

Um so, I have to explode the block, explode the ployline/polygone and recreate the block.

Or, I could minus the polygone from the block set, save the block, explode the polygone, reopen the block and add the lines back in.

I don't see an explode option in the "pedit" options.

Am I missing something here, is there more than one explode command now?  It worked in a previous version.

View 1 Replies View Related

AutoCAD 2013 :: Marker Can't Select Points On A Line

Nov 8, 2012

When I try to use the move tool and hover over an object, the marker tool bounces around and has trouble finding the selection point. When I zoom in close to get the exact point on a line - it doesn't select anything, so I can't actually move an object.

I've tried adjusting the object snap settings however this doesn't seem to be working.

View 3 Replies View Related

AutoCAD 2013 :: Push All Of Points On Zig-zag To Meet With Straight Line

Aug 19, 2013

if there is a simple way of pushing multiple Polylines to meet a final line that I draw.For instance if there is a zigzagged line, and I drew a line through the middle of it (in a similar direction).

Is there a command or script that would push all of the points on the zig-zag to meet with the straight line I drew?

View 9 Replies View Related

AutoCAD Civil 3D :: Cogo Points Explode To Block Reference

Oct 7, 2013

I got a survey that has hundreds of cogo points. I need to bring this into a mapping dwg but not as cogo points. What's already in the map file is block reference (trees, power poles, signs, etc.). When I explode the cogo points (select all) they turn into 1/100th of the size (although the Properties scale hasn't changed). If I explode one by one, they are fine. how I can get these cogo points into the map dwg as block reference at the correctoriginal size?

C3D 2012 sp1
W7Pro 64bit
HP Z400 Workstation
16 GB RAM
Intel Xeon CPU W3565@3.20GHz
NVIDIA Quadro 4000

View 3 Replies View Related

AutoCAD 2013 :: Explode A Block Only

Mar 28, 2013

where I have a drawing with 3D faces creating the Chassis of a desk, and the top and pulls were inserted from other drawings and are blocks.  There are numerous drawings with this scenario and I am looking for a way to explode the blocks ONLY in the drawings without exploding the 3D faces as well.  Then we'd like to purge the drawing of the nested blocks before saving it.

I'm hoping there is a solution that doesn't require us to open each drawing individually as there are hundreds of them...if not thousands.  We didn't catch this 'mistake' until today and have created many, many product lines (started in November) with this issue.

View 5 Replies View Related

AutoCad :: Z Value At Intersection Points In 3D Polyline?

Oct 30, 2013

Any Lisp to find the difference in z value at intersection points in 3d polyline and polyline,

View 9 Replies View Related

AutoCad :: Create Set Of Points Around A Polyline

Jul 17, 2011

I'm currently trying to use the draw > point > measure tool to create a set of points around a polyline but I can't seem to get them to start at a point that I want. When I try and create the points they start from a random place.

View 3 Replies View Related

AutoCAD 2013 :: Undoing A Hatch Explode

Jul 12, 2013

I am working in AutoCAD 2013 on a .dwg drawing. There is a section of hatch that was exploded at some point and I want to set the individual hatch lines back to a hatch grouping, but since it was done long ago, using the undo command is not an option. It there a way I can take all of the individual hatch lines and group them back into a hatch?

My goal is to get the individual hatch marks back to a hatch group so that way I can use the hatch editor to modify the hatch style. Is this possible?

View 1 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Explode Mtext - Get X Y Coordinates Of Last Line Of Text

Mar 19, 2012

Would like to be able to select mtext explode it get x y coords of last line of text then turn it back to mtext and then launch mtext at a @0,-0.5  justification TL width 5 and display the ribbon.

All seems to work except the (command ...)

Below is my attempt.

(prompt "Select Note")
(setq ss (ssget))
(command "explode" ss)
(setq ss (ssget "l")) ;get last line of text

(setq ent (entget (ssname ss 0))
ent1 (cdr (assoc 10 ent))) ;get x y coords
(command "undo" "1") ;set exploded mtext back to mtext
(setvar "lastpoint" ent1)

(command "mtext" "@0,-0.4" "j" "TL" "w" "5")

View 2 Replies View Related

AutoCAD .NET :: Creating A Polyline Using Distances Between Points?

Sep 25, 2012

I am aware of creating a polyline and using .AddVertexAt() to give the points, my question is if I want to create a polyline in acad I generally will pick a point and then type out @10.5<0 or something similar of that nature to pick my next point. Is it possible to add vertices to a polyline in .Net giving it the distance and angle of one point2d to the next point2d?

Example:

acPoly.AddVertexAt(0, New Point2d(0,0),0,0,0)

acPoly.AddvertexAt(0, New Point2d(1,0),0,0,0)

but instead?

acPoly.AddVertexAt(0, New Point2d(0,0),0,0,0)

acPoly.AddVertex ( use code equivalent of  New Point2d = @10.5<0 from point at 0 index)

View 2 Replies View Related

AutoCAD VB :: How To Split A Polyline At Its Self Intersection Points

Jul 21, 2011

I'm trying to split a polyline that have some intersection points at its intersection points. So, if a polyline have two self intersection point, then it will become three different polyline. I attached an example of a polyline that I want to split.

View 2 Replies View Related

AutoCAD .NET :: How To Split Polyline At Its Self Intersection Points

Jul 21, 2011

I'm trying to split a polyline that have some intersection points at its intersection points. So, if a polyline have two self intersection point, then it will become three different polyline. I attach the example of a polyline that I want to split. I wonder, does the get split curve method ?

View 3 Replies View Related

AutoCAD .NET :: How To Extract Intersection Points Between Polyline And Another

Sep 16, 2011

I have some experience with Vb.net.

But I have a problem:

I have a polyline

I select it

The result to be a message box with the intersection points for all the lines, polylines that intersect this polyline.

View 1 Replies View Related

AutoCad :: Delete Points On 3D Polyline Vertices

Jul 18, 2011

I have a couple of hundred 3D Polylines which have point crosses at each vertex. Any way to remove these point crosses that fall on the 3D Polylines.

(IF 3D point vertex = any 3d Polyline vertex THEN delete)

Reason I can't just filter out the points and delete is that there are points that don't fall on Polylines which I want to keep. All points are on the same layer. Polylines are on various layers. Data is from a 3D topographical survey.

View 3 Replies View Related

AutoCAD .NET :: Finding Cardinal Points Of Closed Polyline?

Jun 20, 2013

I want to find the cardinal points ( N, S, E, W) of each face of a closed polyline, how?

Windows 7 (x64)
AutoCAD 2012 (x64)

View 5 Replies View Related

AutoCAD .NET :: Points In Polyline From Multiple Lines That Cross?

Nov 4, 2013

How to obtain the points in a polyline from multiple lines that cross the polyline.

View 1 Replies View Related

AutoCad :: List Area Of Polyline Or By Points In Acres?

Apr 27, 2011

How to list the area of a polyline or by points and have the output displayed in acres?

View 6 Replies View Related

AutoCad :: Create A Polyline From Selected Cogo Points

Jan 28, 2012

is there a command (or method) that will create a polyline from selected cogo points instead of manually connected each point from a create line command?

View 2 Replies View Related

AutoCAD 2010 :: Command For Drawing A Polyline Through Multiple Points

Feb 15, 2012

This is something I should know as a long time CAD user. I have line of points, ~200 on the screen and I want to draw a polyline through them without selecting each point. I know there was a command to select the first point and the last and ACAD would draw the line between. I am using AutoCAD 2010.

View 3 Replies View Related

AutoCad 2D :: Reduce Number Of Vertex Points In Polyline Or 3DPolyline?

Oct 9, 2013

Any way to reduce the number of vertex points in a polyline or 3d polyline and retain the basic shape but without having to redraw over the top it?

Ideally, I would like any adjacent segments which are in the same direction as each other to become one segment.

In my image you can see the number of points it has, the majority of which are not necessary for my needs (it was imported from a client's drawing). My desired linetype will also not show because of this.

spline.jpg

View 9 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Distance Between Two Points Along The Path Of Polyline

Sep 10, 2012

There are times that I have a really long curb polyline that has both line and arc segments.  I wish to pick two points along that polyline and have it give me the distance between those two points along the path of the polyline.

Do we have this ability natively?  Have I been missing something all this time?  Normally I have to make a copy of the original entity, ... break, break, list erase or undo....

View 6 Replies View Related

AutoCad :: Drag-select Multiple Vertex Points Form Polyline

May 13, 2011

How can I drag-select muliple vertex points form a polyline, a workaround I found is:

-select object

-shift select first vertex, shift select next vertex, etc

But this workaround is limited because I want to delete those vertexes, I cannot find the remove vertex command when I have multiple vertexes selected.

View 2 Replies View Related

AutoCAD 2013 :: Editing Block - Dims Text And Arrows Grow Larger When Explode Or Burst

Dec 17, 2013

I have received details that have been blocked that I need to edit. When I expode or burst them, the dims text and arrows grow larger than is required for the block and I cannot find any adjustment in the properties to bring them back to the correct size for the detail. Also the leaders lose their point and association with their text and become just a line.

Is there a command that will allow me to edit the block without loosing the current sizing and associations?

View 2 Replies View Related

AutoCAD .NET :: Convert Line To Polyline

Oct 28, 2012

I want to convert a line (Autodesk.AutoCAD.DatabaseServices.Line) to a polyline (Autodesk.AutoCAD.DatabaseServices.Polyline).

Currently I get all the properties from the line, create a new polyline with it and delete the line. I fear data may get lost this way. What is the best way to convert a line to a polyline?
 
// Line properties:// Color.// Layer.// Linetype.// Linetype scale.// Plot style.// Lineweight.// Hyperlink.// Thickness.// Material.// Start X.// Start Y.// Start Z.// End X.// End Y.// End Z.// Start point.// End point.

View 5 Replies View Related

AutoCAD LT :: PEDIT Won't Convert From Line To Polyline

Feb 20, 2013

how a drawing was exported from another program.  My problem is: the PEDIT command won't give me the option to convert a line "I" add to a pline.

PEDITACCEPT: 0 or 1, problem remains

It is a drawing from an house designer, I am adding structural members and notes over the drawing.  I could xref, but I need to move/erase some of their notes as well.  It becomes cumbersome to switch to the source dwg, edit & save, move to current dwg and refresh, to have the note where needed.

This is a pretty strange to me drawing file.  It seems that a bunch of system variables are altered and hopefully it doesn't migrate over to files originating from my machine.

View 3 Replies View Related

AutoCAD LT :: How To Turn Polyline Into Ordinary Line

Mar 2, 2013

I am working on  drawing supplied by someone else.  In this drawing virtually all the lines are polylines whereas I just want to work with 'ordinary' lines. It causes problems with filleting lines as it automatically turns new lines into polylines.  Is there a way to turn a polyline into an 'ordinary' line or do I just have to redraw each line or put up with the problems it causes?

View 3 Replies View Related

AutoCad :: Making Difference If Its A Line Or Polyline?

Nov 7, 2012

does it make a difference if its a line or a poly line? in oder for this command to work?

View 9 Replies View Related

AutoCAD Civil 3D :: Polyline To Draw Daylight Line

Aug 21, 2013

I have a list of offset distance from centerline on both sildes (left and right). I want to use this to create a polyline that represents the daylight. these offsets are taken from an old hardcopy drawings of cross-sections. is there any way to draw this polyline that follows the alignment?

file can be .txt or .csv

View 3 Replies View Related







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