AutoCad :: Draw A Circle Passing From Given 2 Points And Tangent To A Given Line?

Feb 14, 2011

I have 2 points and a line given (both points on one side of line)

I want to draw a circle so that it passes through two points and tangent to the given line.

View 9 Replies


ADVERTISEMENT

AutoCad 2D :: Draw Circle So That Line Becomes Tangent To It?

Feb 20, 2013

I’ve an already drawn inclined line from a fixed point (saypoint (0,2) on Y-axis). The inclination is also fixed (say 150 tothe horizontal). My objective is to draw a circle with one quadrant at a fixedpoint (say point (1,0) on X-axis), so that, the line becomes a perfect tangentto the circle. The diameter of the circle may vary to make the line perfecttangent to the circle.

View 9 Replies View Related

AutoCad :: Find Center Of Circle Tangent To Another Circle And Point On A Line

Dec 18, 2011

I need to find the center of a circle that is tangent to another circle and a point on a line. I cannot use tangent tangent radius.

View 4 Replies View Related

AutoCad :: Draw 3rd Circle Tangent To 2 Circles

Oct 11, 2007

I can't control the location of a 3rd circle using ttr. I'm drawing two circles and then a 3rd tangent to both but I want the 3rd circle to be centered down below the two original ones and all it will do is be above them. See drawing.

View 9 Replies View Related

AutoCad 2D :: Draw A Circle To Go Through Point And Tangent

May 3, 2012

I'm having a problem, How can I draw a circle which has to go through point & tangent, if I know radius?

View 4 Replies View Related

AutoCAD 2010 :: Draw Arc Tangent To A Circle And A Point

Oct 24, 2012

How to draw an arc tangent to a circle and a point. The attachment here is a detail of the problem I'm having. No 9

View 3 Replies View Related

AutoCad :: Draw Intersection Wire Like Half Circle Passing Over Other Wire?

Sep 7, 2011

how to draw the intersection wire like a half circle passing over the other wire.

View 9 Replies View Related

AutoCad :: How To Draw A Tangent Line

Jan 20, 2013

how do we draw a tangent line in autocad

View 1 Replies View Related

AutoCad 2D :: Keep Cable Line Of Crane Always Tangent To Circle?

Jul 18, 2012

I am attempting to keep the cable line of the crane always tangent to the circle at the top of the crane. The length of the crane (including the circle at the top) is being polar stretched but i am unable to keep the cable tangent to the top circle as i stretch and rotate the crane.

View 6 Replies View Related

AutoCad 2D :: Drawing Tangent Line To Point On Circle

Mar 23, 2008

I am a new user of Autocad LT and looking for drawing a tangent line to a point on a circle.

View 7 Replies View Related

AutoCad :: Make Tangent Line From One Circle 90 Degrees?

Sep 30, 2011

What are the commands to make a tangent line from one circle 90 degrees to the tangent line of another circle?

View 2 Replies View Related

AutoCAD .NET :: Draw A Line Tangent To Two Circles In C#?

Sep 11, 2013

 how to drawing a line tangent to two circles in C#?

View 7 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Tangent Line And Pass Through Two Points

Aug 20, 2012

We have a need to select a tangent line/polyline etc and then select two other points we would then like to have the program draw an arc through the two points and yet still be tangent to the initial line/polyline that we picked.  We don't care what the radius is as we believe there is only one solution anyway.  It would be wonderful if we could just use the Arc command and select start>Second Point> then just use the Tangent Osnap but I guess that is out of the question :-)

The only code that I have come across that even resembles this only allows for one point not two (STILL VERY HANDY AND VERY SLICK)

(vl-load-com)
(defun near_vertex_arr (obj / dxf_obj e_next obj_vlax pt_sel par pt_first pt_snd i bulge)
;bruno.valsecchi

[Code]....

How does everyone else hande this?  By they way... I dont care what language it is written in :-)

View 7 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 :: Drawing A Circle That Is Tangent To Another Circle And Passes Through Endpoint

Apr 28, 2013

I was wondering the best way to draw a circle that passes through an endpoint of a line and then is tangent to another circle above it? I need to create a radius of 3.5 between the two points.

View 9 Replies View Related

AutoCad 2D :: Draw Line Snapped To 45 Degrees Angle Of Circle Block

Aug 15, 2011

good way to start a line at one of the 45 degree angles of a circle block?

View 9 Replies View Related

AutoCad :: How To Draw Red Line (Arc Between Points In Spherical 4 Side Segment)

Jun 2, 2011

how can i draw this red line in autocad, its an arc from point 1 to point 3 in spherical 4 side segment? point 1 to point 2 to point 3 to point 4 closing the segment at point 1 and point 4 (fused)

View 9 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Draw Line On List Of Points

Jul 7, 2012

I have a list with many points is it possible that i can draw a line or polyline on those points using MapCar function.

View 6 Replies View Related

Xara :: Draw Straight Line Between Two Pre-determined Points?

Jul 13, 2012

Using Photo & Graphics Designer 6, can I draw a straight line between two pre-determined points, eg. X=0, Y=0 to X=100, Y==0?

View 5 Replies View Related

Illustrator :: Can Draw A Line From Multiple Other Lines End Points?

Oct 25, 2012

Is there a somewhat easy way to draw this blue line, other than manually click on each anchor points at the top of the black lines?

View 32 Replies View Related

AutoCad :: How To Draw A Tangent To Any Curve

Aug 5, 2011

How to draw a tangent to any curve(basically a spline).

View 9 Replies View Related

Lightroom :: Adjustment Brush Draw A Straight Line By Clicking The Start And Stop Points?

Mar 11, 2012

Can a Lightroom adjustment brush draw a straight line by clicking the start and stop points?

View 8 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Passing A List Of Points To Function Instead Of User Input

Sep 16, 2013

I have a list function that asks for the user to pick points when it is run. It looks something like this (foo arg1 arg2) When invoked it asks the user to pick points and press enter when done It.

Instead of getting the points from the user i want to pass it a list of pre-defined points. The code cannot be changed so I must use it as is.Is this possible, if so how can it be done?

View 9 Replies View Related

AutoCad 2D :: Best Way To Draw A Point - Tangent - Radius Arc?

Jun 18, 2013

I need to draw an arc that starts at a specific point, ends tangent to another line, and has a specified radius. What's the best way to do this?

View 3 Replies View Related

AutoCAD 2010 :: Way Osnap Can Feel Tangent Of Circle Point Style?

Feb 26, 2012

Is there a way the “Osnap” can “feel” the tangent of the "circle point style"?I’m wondering if there is a way that the “Osnap” can feel the circle “point style” (given in the screenshot below) such that it is snapped to its tangent?

View 2 Replies View Related

AutoCad :: Aligning Parabolic Curve Tangent To Two Points

Apr 2, 2013

I have come up with a parabolic curve from a 'Sag Chart' program for calculating wire sag between Utility Poles. I now need to place this curve into my Profile that has the poles laid out in it. I need to make the curve Tangent at each attachment point between two poles. The best I can do as of now is eyeball it in there which will get me the sag distance pretty closly but as any Autocad user knows if it isnt exactly aligned it will drive you nuts. I made a rough sketch of what im trying to do.

View 9 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Passing Variables To Command Line?

Aug 14, 2012

Writing a routine that stores a file name as a string in variable FILE.I check the variable and it returns a nice quoted string: "filename-123.dwg"

I would like AutoCAD to open the file w/out user input.With FILEDIA set to 0, I've tried passing the variable to the command line:

(command "open" FILE)

or in a script as:

open

(FILE)
...

or,

open

!FILE
...

I get the same error. The string dumps to the command line and I get 'Unknown command "DWG" .'

View 9 Replies View Related

AutoCAD Civil 3D :: Line Not Tangent

Jun 18, 2012

Working on Acad2012 3d Civil. I draw a circle of 4000' radius and another one of 2000' radius. I put a tangent line between the two circles and I do see the tangent symbol but when I zoom in real close, it's not. So now I can't trim the excess radius of the two circle. I do have a trim line pasted the two supposedly tangent points. Is this a CAD issue or is their a variable to change that actually makes the lines tangent.

View 8 Replies View Related

AutoCad :: Place Line Tangent From The End Of Arc?

Nov 28, 2012

How does one draw a line tanget from the end of an arc.

I noticed the tangent snap stops at the end of the arc but one can still place a line beyond the end of the arc, thus no longer tangent.

View 9 Replies View Related

AutoCad :: Snap Of Line At A Tangent To The Arc

Aug 16, 2011

tan.jpg

i want to snap this line to where it would be at a tangent to the arc (as right), but as you see (left) when i hover with TAN snap it picks a tangent from the pick point, not from object's orientation.

at the moment i construct a tangent by rotating a copy of my line by 90°, and snapping it to centre of the arc. then extend out past arc, where the intersection is now the point i originally wanted to pick. make sense? gotta be a better way!

View 9 Replies View Related

AutoCad :: Get Line To Form Tangent On 2 Different Circles?

Sep 3, 2012

how to get a line to form a tangent on 2 different circles, different sizes, different cntr lines. Got snap on, but still not right.

View 4 Replies View Related







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