AutoCAD 2010 :: Random Red Circles

Jan 7, 2010

I appear to have two red circle which I did not create on drawing in model space. I am assuming it is some sort of error but can not figure it out. On my layout tab viewports containing the section does not show, only the red circle.

View 6 Replies


ADVERTISEMENT

AutoCAD 2010 :: Over Kill For Circles

Oct 11, 2012

I have a drawing that has a heap of circle that have two on  top of each other. Overkill works for lines and arcs, but I can't seem to get it to work for circles. Is there another way to get rid of one of the circles? We will be using the file in CAM software so two on top of each other is a pain.

View 4 Replies View Related

AutoCAD 2010 :: Random Rotation For Blocks?

Aug 11, 2012

I need to make block with certain random elements in it which regenerate when the block is copied. In this case it's the rotation of the main part of a drawn tree, In which I want the trunk to stay the same but for the polyline that makes up the leafy part to rotate randomly.

View 2 Replies View Related

AutoCAD 2010 :: Model Random 3D-geometry?

Nov 1, 2012

How should I model a random 3D-geometry using AUTOCAD?  

 I have NEZ data from total station survey of an uneven region. Importing them to AUTOCAD gives me points.    

What element should I use to model the 3D geometry enabling me to perform further calculations like volume etc. ?

View 1 Replies View Related

AutoCAD 2010 :: Drawing A Pattern Of Circles?

Jul 9, 2012

I am trying to make a hexagonal lattice of circles (1 micron dia, period - 3 microns) and exted it over a square cm in area atleast. The final objective is to make this as a mask pattern for the Laser fabrication/writer. So I create the pattern over a small area and use array command to extend it over a finite area (~500 microns or so). I then combine these points to a single block and then use the mirror command to extend it even further. But as soon as I reach an area of 2.5 mm square, the program seems to slow down and doesnt respond. I assume this is the limitation of my computing power to handle so many objects at once. (I have 4 GB RAM and 97 % is utilized at this time). Is there a way to circumvent this computing limitation, making use of some facility/command within AutoCAD?

View 4 Replies View Related

AutoCAD 2010 :: How To Find The Tangent Point Of 2 Circles

Dec 12, 2012

I want to find the tangent intersection point between 2 circles within certain conditions.

Circle 1 is r: 30 m and is fixed.

Circle 2 is r: 20 m and its position is inside circle 1.

Circle 2 can be moved in a given angle.

The question is: what distance should circle 2 move, to become tangent with circle 1.

View 4 Replies View Related

AutoCAD 2010 :: Custom Linetype - Circles On Ends

Mar 26, 2012

I'd like to make a custom linetype that is a the standard DASHDOT linetype, but with a small circle drawn on the ends of the line or arc (and only at the ends). 

View 4 Replies View Related

AutoCAD 2010 :: Custom Linetype With Solid Circles

Jul 24, 2013

I am trying to create a custom linetype with solid circles at a specified distance along the custom linetype (see attachment). I have tried using a shape, the special Wingding character but cannot get the result I want. I've tried the hatching method, again with no luck. I've went through the discussion groups, online content, etc. but cannot get it to generate the line the way I want. I see a few people that have been successful but I cannot get it to work.

View 9 Replies View Related

AutoCAD 2010 :: Trimming Circles Against Tangent Lines?

Sep 30, 2013

I am working with a drawing provided to me by someone else, and where there should be arcs they have  multiple line segments. I need a radius for what I'm doing, so I drew a circle with TTR and then tried to trim against the tangent lines to get my arc. However, sometimes this works and sometimes it doesn't. why this doesn't always work?

View 5 Replies View Related

AutoCAD 2010 :: Random Commands When Fast Mouse Clicking

Apr 11, 2011

We've upgraded to 2012 and have noticed a problem when fast clicking on the mouse when using commands.

For example when using the erase command I would usually type E and then quickly right click and left click. However in 2012 it brings up random command instead of erase i.e. sheetset, publish, ucs etc..Bringing up the text window afterwards it shows

Command: e
ERASE
Select objects: Specify opposite corner: *Cancel*
0 found
Select objects: *Cancel*
Command: _PointCloudIndex

The right click and left click are only processed once.This happens on all commands typed on the command line not just erase 

View 9 Replies View Related

AutoCAD 2010 :: Random Commands Activating Whilst Within A Command

Oct 11, 2012

Having only recently started using Autocad 2012 (I mainly used various versions of LT over the last 10+ years) I have noticed a few strange goings on.

It doesn't happen all the time but sometimes whilst in a command ("move" for example), when I go to click on an object or pull a window, a separate, totally random command activates itself. Why this happens, I just hit escape a couple of times & continue what I was doing.

I'm not sure if it is a case of me, in my haste, missing my intended object & hitting the right click button (which I use as a return & not a drop down menu).

View 2 Replies View Related

AutoCAD 2010 :: Drawing Circles On Angled Piece In 2012 In 3D?

May 14, 2013

I am trying to draw a circle on an angled face on a valve I made, and am not too sure of the best way to do it.

Here is a front view showing the angle. I need to use the face at the top that is on a 22* angle or so

[URL]

Here is a top view showing the 10 holes I need to make at the proper angle. The blue lines are showing where each of my holes will need to be with a fitting on it as well

[URL]

View 3 Replies View Related

AutoCAD 2010 :: Changing 0.050 Dia Circles To Two Lines (x On The Center Point)

Feb 19, 2013

change all circles of a certain diameter in a .dxf file to points. I received the following lisp file. For the last 10-12 years it has worked great. We create many custom sized parts that could be cut on a plasma (utilizing the circles for holes) or punched, assigning a crosshair tool to the point. Now we are switching to a laser, and want to etch a crosshair at this same location. Our solution has been to draw the crosshair and copy to each required location. Sometimes this may be 20 to 30 locations. Now I would like to know if there is a way to replace all of these circles with a crosshair. This could be a similar lisp file, or an easier manual operation. I know that I can select all of the circles using the filter command and specifying the radius. But I don't know how to assign the 'crosshair' to these locations. (defun c:ctopt ( / ename cnt ss) (setq ss (ssget "x" '((0 . "CIRCLE")))) (if ss (progn (setq cnt 0) (repeat (sslength ss) (setq ename (ssname ss cnt)) (if (equal (cdr (assoc 40 (entget ename))) 0.025 0.005) ;use this line for a radius 0.025 +/- 0.00015 ;(<= (cdr (assoc 40 (entget ename))) 0.05) ;use this line for a radius of 0.05 or less (progn (entmake (list '(0 . "POINT") (assoc 10 (entget ename))(assoc 8 (entget ename)))) (entdel ename) )) (setq cnt (1+ cnt)) ) ) ) (princ) )

View 3 Replies View Related

AutoCAD 2010 :: Create Array (of Circles) That Stretch To Length Of Bar Spanning Left To Right

Aug 16, 2012

Okay, I'm new to associative arrays, I'm attaching a drawing so you can see what I'm trying to accomplish with this.  I'm doing an elevation view of a slab that has a cross section of the rebar.  I've shown one of the bars spanning from left to right, represented by a rectangle, and the cross section of the bars running front to back represented by circles. You can see what I'm trying to show here.  In the drawing I've attached, the top three sketches are examples of how this would look if it were working correctly.

What I'm trying to do is create an array (of circles) that will stretch to the length of the bar spanning left to right.  I want the quantity of items in the array to automatically change based on the length of the bar and the spacing of items, so if there is 6" of spacing between the items instead of 12" it will automatically add twice the amount of items to fill in that space.  I've been trying to use a path array, and it isn't working the way I want.  I'm not familiar with rectangular arrays, so not sure what to do there either.

View 3 Replies View Related

AutoCAD 2010 :: Lisp To Replace Text With Block / Or To Draw Circles Around Mtext

Mar 23, 2012

I need to lay one of our existing blocks ontop of every power outlet on a floorplan (the power outlets are currently shown as a simple shape (eg. either a rectangle, triangle or circle) with text next to it.

There are hundreds of power outlets, so if there is a lisp routine for replacing any part of the power outlet with the block, eg. replacing text/mtext with a block or replacing a pline with a block.

I have found a very successful lisp routine for replacing circles with blocks, but this obviously only works on the power outlets that are shown as circles. So a simpler way of looking at it could be a lisp for drawing a circle around mtext/text then I could simply use the circle to block lisp to place the blocks.

View 5 Replies View Related

Photoshop :: Circles Inside Circles (or Rings)

Feb 11, 2005

I'm trying to make a logo. Circular logo with an inner ring maybe 4 px wide and 15 px inside the rim of the outer circle.

Basically I want a blue circle with a yellow inside ring. What's the best way of doing this? The only thing i can think of is: creating a blue circle marquee, and then another (trying to estimate a new circle size and change the color) that is yellow, and then making another smaller blue circle inside the new one. That's just ugly.

I tried the edit/stroke but that just gave me a stroke around the outer circle; it didn't put a ring inside the circle 15 px down.

Also I tried to contract the original circle by selecting it, then Modify/contract. That's got me a selected ring, inside the circle. Now how in the world do I make that little ring yellow? It just remains selected and I can't seem to find a way to color it.

View 9 Replies View Related

AutoCAD .NET :: Random OK Showing Up In MTEXT

May 29, 2012

I've found some example code on how to create Leaderline and have been playing around with it. So far so good, but when I create my leaderline and the Mtext generates, it is always preceeded by an "OK" and i can't figure out where it's coming from. I've tried using TrimStart on a number of the strings to no avail. I know it must be something insanely simple but it can't seem to get it.
 
using Autodesk.AutoCAD.Runtime;using Autodesk.AutoCAD.ApplicationServices;using Autodesk.AutoCAD.DatabaseServices;using Autodesk.AutoCAD.EditorInput;using Autodesk.AutoCAD.Geometry;namespace DimensionLibrary{ public class DimensionCommands

[code]....

View 3 Replies View Related

AutoCAD Map 3D :: Random Selection Dialog Box

Sep 15, 2011

I am using 2011 Map3D. Suddenly I am getting a "Selection Dialog Box" ?assist me to disable it? It would be super to get rid of it.

View 2 Replies View Related

AutoCAD 2013 :: Red Circles When Hatching?

Mar 15, 2013

When a co-worker is trying to hatch using pick point, multiple red circles start appearing and choke up the program. He is not even picking inside the area where these gap indication circles are appearing. I have had him adjust the hatch gap tolerance but am wondering if I can turn off this behavior entirely?

View 4 Replies View Related

AutoCad :: Unable To Get Rid Of Two Circles On Drawing

May 26, 2012

Two circles have appeared on my drawing, I cant select them to get rid of them, they scale differently to the rest of the drawing when I zoom, i.e. I zoom out and the get large, I zoom right in and they are small. Where did they come from and more importantly how can I get rid of them?

View 2 Replies View Related

AutoCad 2D :: Solid Hatch Circles

Sep 21, 2011

when I create a shape and fill it in for a colour ( so I can send it to a screen printer to be put on our product ), I get an issue with DN-P-2726.dwg. I was trying to recreate the part being painted red, so the screen printer overlays with the black and grey.

View 7 Replies View Related

AutoCad :: Center Mark For Several Circles At Once

Jun 1, 2009

Is it possible to put a center mark on multiple circles instead of one at a time?

View 9 Replies View Related

AutoCad 2D :: Large X's Coming From Circles

Aug 26, 2012

There are large x's coming form the center of the circles of an object that I am pasting into a drg, why does this happen?

View 2 Replies View Related

AutoCad 3D :: 2 Different Size Circles Into A Solid?

Aug 16, 2012

I am trying to make 2 different size cirlces into to on Solid object. One circle is 20 in diameter and the other is 50 in diameter. I was wondering what the command was.

View 3 Replies View Related

AutoCad :: Multileader Using Balloons (circles)

Mar 2, 2012

Trying to create a multileader callout that doesn't have a landing and the leader axis passes through the center of the ballon circle and not the side. Most the CAD applications I have worked with don't use leaders with "Landings".

View 3 Replies View Related

AutoCad :: Car Turning Circles / Paths

Aug 23, 2012

A program that will show vehicle paths once start and end locations of vehicles are entered?

I have a restricted area and wish to know if a vehicle will be able to turn around in this area.

View 4 Replies View Related

AutoCad :: Connecting Lines And Circles

Mar 21, 2011

Im having a little issue with connecting lines and circles but not sure how to shorten the question to do a search on here. I have 2 concentric circles (the two circles form the walls of a round tower wall) which have 2 lines (representing a wall) passing through them. I want to join the circles from the circumference to the lines, but each time I try to do it the line seems to default to the center of the circles and to the endpoints of the lines which is not what I want. The eventual aim will be to remove a section of the circles and the lines where the new line connects to them to form an opening in the walls.

Ive tried <shift>right click and selecting tangent on the circles but I cant figure out what to do on the lines and it constantly defaults to the end of the line not to where I want to intersect the lines.

View 7 Replies View Related

AutoCad 3D :: Loft A Profile Between 3 Circles

Mar 17, 2012

I'm trying to loft a profile between 3 circles and i have created 2 2d spline guides to loft through (see picture).

I get an error when i select the two splines as guides which says

"Modeling Operation Error:

The guide is not G1 between first and last sections. The selected entities are not valid"

The guides are definitely touching the profile edges so I'm not sure what the problem is.

View 9 Replies View Related

AutoCad :: Circles Acting Like Wipeouts?

Aug 30, 2011

We've got a couple drawings where circles in the model tab are hiding objects behind them like a wipeout will, but only when printing or print previewing.

We're using AutoCAD 2010 and the viewport shad plot setting is set to hidden.

View 5 Replies View Related

AutoCad 3D :: Get Two Circles Joined By Two Lines?

Apr 27, 2011

Like when I draw a cylinder, instead of a solid cylinder I get two circles joined by two lines. How do I change this so that I get the solid?

View 3 Replies View Related

AutoCad 2D :: Can't Trim Overlapping Circles

Dec 9, 2011

9 times our of 10, I can't trim away the overlap on a pair of circles.. as every now and then the trim suddenly decides it will work!

Trim_Issue.jpg

I just can't work out why these pesky circles refuse to trim! I'm trying to merge them into one 'cloud' like shape, by removing the overlapping section from each circle.

View 7 Replies View Related







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