AutoCad :: Continuous Entity Either Spline Or Polyline

Jan 2, 2009

I have three contiguous splines. I'd like to make them one continuous entity, either spline or polyline. How do I do?

I've gone to Modify/Object/Spline and to Modify/Object/Polyline and neither seem to work.

View 5 Replies


ADVERTISEMENT

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 :: Create Polyline That Has Combined Dashed And Continuous Type Of Line?

Jan 16, 2012

So, is it possible to create one polyline that has combined dashed and continuous type of line in one polyline?

View 9 Replies View Related

AutoCad :: Convert Spline Into Polyline

Apr 24, 2011

I have one drawing but this is Spline but i want to convert it into polyline. without tracing it. i attach my dwg file with this massage.

View 9 Replies View Related

AutoCad 3D :: Convert Spline To Polyline?

Jun 3, 2004

How can I convert Spline to Polyline.

View 9 Replies View Related

AutoCad :: How To Make Spline To Polyline

Feb 27, 2012

Im using autocad lt 2004. My plotter does not recognize splines, and I would like to convert them to a polyline. How to do this, been trying to do if for a few days now but to no good.

when I highlight the spline it will not give me a option to turn the spline into a pline.

View 9 Replies View Related

AutoCAD Architecture :: How To Transform Spline Into Polyline

May 25, 2011

I am a student and I am trying to transform a spline into a polyline with the AutoCAD 2009 that with have at Uni for the CNC machine but "pedit" doesn't work.

View 2 Replies View Related

AutoCad :: Polyline Or Spline Elevation Change

Apr 13, 2013

I need to draw a polyline (or spline) in the XY-plane, followed by a vertical segment before continuing in the XY-plane again. The challenge is working out the vertical part while still in the top view. There's no way to change its elevation on the fly that I know of.

View 2 Replies View Related

AutoCAD Visual LISP / AutoLISP :: How To Return Entity Name Largest Polyline Of A Selection Set

Oct 8, 2013

I need to return the entity name of the largest (longest closed) polyline in a selection set. At this point I have no trouble creating the selection set and even getting the area of the boundingbox, which is not the most accurate way to find the true size, but it's a start. The part that has me stumped is: if I iterate through the selection set, then how can I compare one to the other when I have access to the current entity. I've been staring at examples of lambdas but it seems to me that iterating through the selection set is going about it wrong in the first place. 

Below is my current code with a remaining issue. I can return the largest area of the polylines (no good for more than two entities in selection set), but I do not know how to return the entity name:
 
(IF (> (SETQ SS (SSGET "x" '((0 . "*POLYLINE") (8 . "POOL") (-4 . "<OR") (62 . 5) (62 . 256) (-4 . "OR>")))) 1 ) (PROGN (SETQ a (1- a) ent (CDR (CAR (SSNAME ss a))) en2 (CDR (CAR (SSNAME ss (1- a)))) ar1 (APPLY '* (LIST (LAMBDA (ent) (VLAX-INVOKE-METHOD (VLAX-ENAME->VLA-OBJECT ent) 'getboundingbox 'minpt 'maxpt) (SETQ pt1 [code]......

View 9 Replies View Related

AutoCAD 2013 :: Convert Ellipse Into Spline Or Polyline?

May 3, 2012

Our customer send us drawing with ellipse into.With Autocad 2008 I bought a plug-in call SplineConvert that did the job perfectly but not compatible with 2013.

Is there any plugin that could replace that tool  ?

Is there any standard ACAD command that could easily do this Job ?

I need a way to make 2 or 3 times per week  this converting on all ellipses of large and detail 2D drawings so no time to offset in and out all those .

I try also DXFOUT in R12 but all the spline are being converted into 3d  polyline making a huge files that froze my PC.

I also try FLATTEN but did not see how it work , the ellipse stay an ellipse.

View 4 Replies View Related

AutoCad :: Convert Spline To A Polyline For Finding Area

Oct 2, 2006

I would like to convert a spline to a polyline for the sole purpose of finding the area. Is there a way to do this or is there another way to find the area of a spline? Typing list does not give me the area.

View 9 Replies View Related

AutoCad :: Divide SPline (or Polyline) Into Different Lengths Based On Input

Dec 14, 2013

The task should be similar to the _measure command but, I would like to divide the spline into lengths that I give in input. (Decided by user)

e.g. Length of spline: 10.000 meters

Place a block at length:
- 1238 m
- 2005 m
- 2018 m
- 2458 m
- 4098 m

and so on..

How I can do that? It would be perfect if it would be possible to give an excel file with the length values.

View 0 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Convert Ellipse Segment Into Spline Or Polyline

May 3, 2012

Our customer send us drawing with ellipse segments  into.

With Autocad 2008 I bought a plug-in call SplineConvert that did the job perfectly but not compatible with 2013.

Is there any plugin that could replace that tool  ?

Is there any standard ACAD command that could easily do this Job ?

I need a way to make 2 or 3 times per week  this converting on all ellipses of large and detail 2D drawings so no time to offset in and out all those .

I try also DXFOUT in R12 but all the spline are being converted into 3d  polyline making a huge files that froze my PC.

I also try FLATTEN but did not see how it work , the ellipse stay an ellipse.

View 7 Replies View Related

Revit :: Converting Spline To Polyline In CAD

Dec 7, 2011

The surveyor's CAD file includes a boundary line that is mostly curves.  It's drawn as a spline.  I'm trying to create a PROPERTY LINE in Revit. I've converted the spline to a polyline in CAD.  In Revit, PROPERTY LINE sketch mode, I can hghlight the polyline but can't select what I've highlights.  Only one of the polylines gets selected.  So I have to try to select them all one at a time. converting a spline to polyline in CAD for use in REVIT?

View 2 Replies View Related

AutoCAD 2013 :: Can't Polyline Or Spline Profile Into Closed Profile?

Apr 11, 2012

The attached profile is a section from a solid.  I would like to create a closed profile in order to extrude the shape into a solid.  The polyline command and splinedit don't seem to do the trick.

View 9 Replies View Related

AutoCAD .NET :: If Selected Entity Xdata Contains Value Then Select Additional Entity

May 22, 2013

I would like to add additional entities to the selection if any of the selected entities contains a an xdata value.

If I put the condition into the ImpliedSelectionChanged reactor I imagine will probably loop back on itself.

View 9 Replies View Related

AutoCAD Inventor :: Spline Design Generator - External Involute Spline Error

Sep 28, 2011

I'm trying to create an external involute spline (ANSI B92.2M) Fillet Root Side Fit 26.9mm x 1 mm x 26 teeth x 38 mm long using the spline generator with Inventor 2012. I created a test shaft"M-182-AMA.ipt" that is Ø26.9 mm x 38 mm long with 1 mm radius on each end of shaft.

I use the following steps:

1. After creating component "M-182-AMA.ipt" I select Design tab>>Power Transmission>>Involute Spline.
2. A window appears that has the caption "Involute Splines Connection Generator".In the Dimensions section I choose "Splines Type: ANSI B92.2M - 37.5 deg, Fillet Root, Side Fit, 26 x 1.00 x 38 x 5H/5h" and change the Length to 38 mm.
3. In the Shaft Groove section I use Create new, and I push the Reference 1 button that turns blue, I then select the od feature from the model and I get an error(see attached pic "error1.jpg).

I changed the 26.9mm od to be 27mm and it still gave me the error.

Work Station : Dell Precision R5400
OS: Windows 7 Business 64 Version 6.1.7601 Service Pack 1 Build 7601
Processor Intel(R) Xeon(R) CPU E5405 @ 2.00GHz, 1995 Mhz, 4 Core(s), 4 Logical Processor(s)
BIOS Version/Date Dell Inc. A10, 4/30/2012
Graphics Display Card: ATI FirePro V4800 (FireGL V) 1.00 GB Adapter RAM
Computer Memory: 8 GB ECC RAM

View 5 Replies View Related

AutoCAD LT :: Updating Proxy Entity - Can Proxy Entity Attributes Be Changed

Feb 27, 2012

want to upated attributes in proxy entity is this possible?

View 1 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 .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 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

AutoCAD Civil 3D :: How To Get A Continuous Corridor

May 2, 2013

I have a very basic question about creating corridors. As you can see on the attachment, i created an assembly consisting of ditch and my own polyline subassembly and turned it into a corridor. The ditch part is drawn out correctly, but the other part (supposed to be a gravel road) has only sections in certain points.

View 4 Replies View Related

AutoCad :: Change Linetype From Continuous To None?

Sep 15, 2011

Is it possible to change the linetype from continuous to -none-? I created a layer for inserting georef images, and the images all come in with a border line that is related to the linetype and lineweight of which i want neither - i don't want a border.

I tried changing lineweight to 0.00mm but cant find any way to turn off lines?

View 1 Replies View Related

AutoCAD LT :: 2012 Runs Slow After Continuous Use?

Dec 21, 2011

Ive recently been upgraded from a Laptop to a pc at work with windows 7

When working on drawings, some small some large some with xrefs in but after continued use on the same drawing everything slows down even simple commands like highlighting an object

View 4 Replies View Related

AutoCAD 2013 :: 3D Orbit Stuck In Continuous

Sep 17, 2013

Over the last few days my all my AutoCAD 3d orbit commands have become continuous orbit.

View 2 Replies View Related

AutoCad 2D :: Making Multiple Continuous Arcs

Aug 6, 2013

The building I am working on is the shape of a jelly bean. The exterior glazing will be segmented and we are trying to make the building as dimensionally uniform as possible. IE 5'-0" Curtain Wall units. So each arc length needs to be perfectly divisible by 5'-0" and the transitions from one arc to the next must occur at a tangent point.

Eventually we will be developing the building in Revit 2013 but for now we are in ACAD 2013.

View 9 Replies View Related

AutoCad 3D :: Modeling Stairway - Continuous Surface

Jun 4, 2013

I am relatively new to the 3D modeling world and would like some tips and tricks on how to quickly model a staircase. I have posted a 3D pic of a particular one, that I done recently.

I would all-sow like to know how to model the bottom part of the stairs so that is is a continuous surface. Having trouble with modeling a curved surface and making it part of a solid...

steps.jpg

View 6 Replies View Related







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