AutoCad 2D :: Chamfer / Fillet Commands Do Not Work - Lines Are Non Coplanar
Dec 29, 2013
I am working on someone else's file, using CAD2010..For many lines, Chamfer & Fillet commands do not work, "lines are non coplanar "..In the Properties, all Z = 0
I tried Flatten, nothing changed.
View 3 Replies
ADVERTISEMENT
May 30, 2012
I want to "Fillet" a round angle. If I set the radius and then click the 2 lines then Autocad comes with the message: "Lines are non Coplanar" This problem just started in a drawing i was working in ( 50% were already done by Fillet perfectly ) , I draw only 2D.
View 2 Replies
View Related
Mar 6, 2012
How to set chamfer and Fillet. I have tried but just can not get it to do anything.
I may have maladjusted some other setting. Operator error for sure. I do not need to use these functions for anything else but the 3 shown in the attachment.
View 2 Replies
View Related
May 22, 2012
We are trying to apply a chamfer / fillet, anywhere betwen 0.5mm - 1.00mm, to the attached ACAD 2004 / ACAD 2012, 3D model, along the edges connectiing from the existing chamfer / fillet, up each side to the top - where you will see there is no chamfer / fillet - (the outside of the cup profile,Attachment 34929 Attachment 34928not the inside of the cup profile).
That resolved the problem, the software struggled a bit with filleting till we tried a smaller degree, then it worked - we thought it would automatically fillet (flow) in / out according to what dims were available.
View 1 Replies
View Related
Jun 14, 2011
Why do the Fillet and Chamfer commands sometimes inexplicably require three clicks to execute? At "Select First Object", the first line I select doesn't highlight, and is ignored. The second pick selects the first line to be filleted, the third pick performs the fillet. There's no predictability to when this happens. Does this happen to others?
View 1 Replies
View Related
Oct 27, 2013
I'm trying to create these rounded divots in a solid. However the only way I know how to get this sort of shape is with a revolved PLINE - which I of course can't use to subtract material from my regular old box.
The shape I want is something like this: (the 2D is a profile of what I want in the end, a divot in a box)
View 5 Replies
View Related
Oct 21, 2011
I am getting the lines are not coplanar when working off of a surveyor's drawings which is testing my patience. I am using LT so I do not believe I have access to LISP. How to use the FLATTEN command which must not be a function for LT because it is unrecognized.
Do I have options to flatten it?
View 2 Replies
View Related
Feb 10, 2008
I've been having a drawing problem at work lately on Autocad 2007. Some lines I draw cannot be filled so I have to trim them instead. The reason why is that these lines are not coplanar. I've also noticed that the Z coordinate is not 0 and have checked on the 3d View that lines are awfully not in the same plan. Does it have to do with the X-line?
View 9 Replies
View Related
Dec 18, 2013
I am trying to place a 5mm chamfer along edge so as it meets the cylinder....i cannot get it to work on this model but on an exact other model i can place a 5mm chamfer...
Inventor 2013/Inventor 2014
View 2 Replies
View Related
Jan 26, 2012
In both model and paper space, rectangles with corners filleted look fine. However, the filleted curved corners are not joined with straight lines once it's exported/plotted to PDF. I have to zoom in very closely to see this, so it won't be a big problem for actual printing. But I can't figure out why the lines are broken on PDF when they are well joined in both model and paper space.
I tried changing PDF quality, plot style, and anything I can think of, but to no avail.
Autocad 2012 on MAC, 10.7.2 with Acrobat X.
View 9 Replies
View Related
Jul 17, 2013
I am trying to teach myself how to use 3D and when trying to chamfer my objects, the chamfer works, but it leaves the original lines.
I have it set to TRIM under the CHAMFER command. My TRIMMODE is set to 1. I don't know what else to do.
View 4 Replies
View Related
Dec 23, 2013
I need to fillet below lines in .net...Iam having the entities list..How to fillet those lines with radius using .net?
View 2 Replies
View Related
Apr 16, 2013
I have searched the discussion groep and have not came up with any usefull information.
I have an inside web plate sketch that i want to offset but my offset does only do one line at a time.
So my problem basicly is that I want it to do the whole sketch in one click. Is it possible to join all the lines? or is there another function that I do not know of that will do this for me.
Attached is photos of the problem I have
1 picture - How do I join these lines
2 picture - How the whole sketch looks
3 picture - The offset does only do one line at a time (i want it to do the whole sketch)
View 6 Replies
View Related
Nov 26, 2012
I create a feature line including some arcs. While editing I need to redimension the feature line, but the arcs will lose tangency. Therefore I have to break/ trim/delete/manually edit the tangents until they intersect and then FILLET them to get a new arc. I tried EDIT CURVE with 0 Radius but it's not acceptable. Any workaround on this one (filleting feature lines like polylines or a closing option)?
View 2 Replies
View Related
Dec 13, 2012
I am attempting to fillet plines to make rounded curbs at street intersections. Whenever I create the fillet, the 2 plines that were filleted remain as they were before the fillet.
This only happens on my computer and only in AutoCAD 2011, it works fine in Civil3D 2011. We only have a limited number of Civil3D licenses or I would just use that all the time.
The attached screenshot shows an example of what happens. The 2 red lines are what were filletted (the fillet is in white). Both lines are long enough to accomodate the radius of the fillet.
What is causing this problem?
View 4 Replies
View Related
Sep 15, 2013
I generate 3 points, two lines between point 1,2 and 2,3 and make a bend between the two lines. Cannot do it correctly.
On one side the fillet is not trimmed correctly. I think it is a bug in Inventor. Also when I have the sketch I manually cannot make a decent bend/fillet in the 3D sketch I created.
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click 'add 3d sketchpoints in open partdoc Dim oPartDoc As PartDocument Dim oPartDef As PartComponentDefinition Dim oTG As TransientGeometry oTG = _invApp.TransientGeometry oPartDoc = _invApp.ActiveDocument oPartDef = oPartDoc.ComponentDefinition Dim oSketch As Sketch3D oSketch = oPartDef.Sketches3D.Add() Dim sp1(2) As SketchPoint3D Dim rod(1) As SketchLine3D sp1(0) = oSketch.SketchPoints3D.Add(oTG.CreatePoint(0, 0, 10)) sp1(1) = oSketch.SketchPoints3D.Add(oTG.CreatePoint(0, 0, 0)) sp1(2) = oSketch.SketchPoints3D.Add(oTG.CreatePoint(10, 0, 0)) rod(0) = oSketch.SketchLines3D().AddByTwoPoints(sp1(0).Geometry, sp1(1).Geometry) rod(1) = oSketch.SketchLines3D().AddByTwoPoints(sp1(1).Geometry, sp1(2).Geometry) 'bending it oSketch.SketchArcs3D.AddAsBend(rod(0), rod(1), 2.5) End Sub
The resulting part-file is added, for who wants to try to get a bend with both sides trimmed correctly.
View 2 Replies
View Related
Mar 21, 2012
one of the pc at my work place seemed to be working funny, compared to the other pc.
For example, the command CO won't work, but instead i have to type CC to copy. The command MA doesn't work at all, and i don't know how to match properties.
Along the way, there are other commands that I encounter before. Basically, it jus feels funny for this PC.
Is there any way to restore every single setting without re-installing the autocad?
View 2 Replies
View Related
May 6, 2009
I've just installed ACA 2010 on my laptop on Windows XP64 bit
When I select a command such as the wall or door command. The command starts then exits out before I can draw anything.
View 7 Replies
View Related
Jun 28, 2012
When I type PL for polyline and then END or MID or PER they don't work, but they do for lines? Any way to change this? When I manually type in any of these snap commands my OSNAP settings turn off.
View 6 Replies
View Related
Jun 28, 2013
1. When I attempt to COPY or MOVE an object that has a line attached to it the line also moves with it. It seems as though AutoCAD is considering them as one unit instead of separate objects. This is especially frustrating when using lines to mark Datum placements.
2. Also, I notice that the above occurs when moving objects, but instead of moving a line with the selection it stretches it. I must have an option selected, but would like to change that.
View 9 Replies
View Related
Oct 25, 2013
I recently upgraded to Civil 3D 2013 and now all of my "Create Surface" commands do not work. I get the message " _AeccCreateSurfaceGridFromDEM Unknown command "AECCCREATESURFACEGRIDFROMDEM".
View 2 Replies
View Related
Oct 1, 2012
after install the last service pack, I can't use the MAPPOLYLINETOPOLYGON command, it works only for the first time;
also, I've personalized the acad.pgp file, changing some commands, but some don't work (as EQ=matchprop); they work right before updating
View 9 Replies
View Related
Oct 20, 2012
I made my plug-in for Autocad 2012.I register my plug-in in registry and so it's autoloaded.If I open Autocad I saw my toolbar, my message from IExtensionApplication.Initialize and all my commands (marked as [assembly: CommandClass) works fine. No problem.
BUT! If I open autocad file by double click - autocad opened. Now I saw my toolbar, saw my message from Initialize!But any commands didn't work. Autocad said that command is unknown. What can be a problem? My be in Autocad version? I have student version and startup message about it.
View 4 Replies
View Related
May 2, 2012
Commands Work features is not active in edit base solid.
How to make plane? How to make active ?
View 2 Replies
View Related
Jan 11, 2013
lost ability to preselect lines when typing keyboard commands?
View 3 Replies
View Related
Jan 9, 2006
just installed CS on to my new computer, and all the key commands i use no longer work. For instance holding down the space bar to get the hand tool isn't working, holding down the shift key when i want to proportionally transform something doesn't work, holding down the apple/command key and the space bar to get the magnifying glass tool doesn't work, and so on...
I have seen under the Edit menu the keyboard shortcuts option, but i never set these short cuts up myself, they were just defaults in photoshop. When i was using CS on my old computer, the key commands i spoke of above worked fine....so what has changed? why don't they work anymore?
View 5 Replies
View Related
Dec 13, 2011
I use PaintShop Pro v. 11.20 at work. I was using it as normal one day, and it crashed. This is nothing new, the crash is because I tend to have a lot of programs open at the same time and I had not rebooted my computer soon enough to clear the RAM. The problem occurred when I reopened the paint shop after rebooting, and all commands involving the control key (copy/paste, etc.) as well as the delete key do nothing. Very occasionally, it will allow one of these commands to work, but this is now very rare. If I have an object selected, the highlighting will blink briefly as it does when you try to copy it, but otherwise does nothing. I can still use these commands from the drop-down menus. I think this is probably just some random bug that happened when it crashed for whatever reason. If I can avoid reinstalling that would be preferable, as I would have to have the disks mailed to me by the head office. I looked to see if there was some setting that would put things back to normal but could find nothing. I reset defaults, no change.
View 1 Replies
View Related
Mar 12, 2013
We just upgraded to 2013, and one computer is having a weird issue. There is nothing in the drawing. He draws two polylines. When he goes to fillet them, it says they are non-coplanar. The properties palette says both polylines are elevation 0. why this is happening and how I can fix it?
View 4 Replies
View Related
Jul 8, 2013
I have recently received a drawing in which I found that there are several blocks and plines which are not coplanar the lines and other objects in the drawing. Now, I know that there is the flatten command to use when this stuff happens.. It works fine for 2d simple lines but when it comes to plines and other objects its a bit too cumbersome, and I even tried exploding everything and flattening everything but not even that worked to my likings.
View 6 Replies
View Related
Mar 20, 2013
Out of nowhere my AutoCAD commands such as line, offset, circle, etc will only work if i type in the amount in inches. I use feet / inches when i use these commands. It says specify second point... Not sure what this means. For example I want to offset a line 15'-8". It won't let me do that. If i offset a line at 146" it lets me do it.
View 5 Replies
View Related
Aug 6, 2013
How to go about creating a surface, region or 3D object using non-coplanar points? I'm drawing a few different 3D models for an artist friend of mine to use in her proposal on a local public art project.
However for this version I am bottlenecking on how to create these regions. I have vertical(ish) beams of varying height twisting in different directions with sheets of alternating metals welded in-between, the bottoms line up straight with the tops following an S curve but with the twisting geometry the top two endpoints for each will always be in separate planes.
PublicArtModel.dwg
View 2 Replies
View Related