Are you saying you want to draw a 2D polyline, but you want to snap to 3D points and ignore the Z elevation?
Type: Posts; User: rkmcswain
Are you saying you want to draw a 2D polyline, but you want to snap to 3D points and ignore the Z elevation?
There is your issue. A scanned PDF is nothing more than a PDF container for a TIF (raster image) file, and raster to vector is an inexact science at best.
Yea, I think that has been in the "menu" for years and years.
Along with a few other "commands", that are actually macros to do more than the command by itself.
Not in the way you are talking about.
There are a few ways to embed an image inside of a drawing, but none of them will give you the same results as you have while attaching the image as a...
Ditto what BlackBox said above ^^^^^^^^^^^^^ generally.....
At install time, we have an "acad.lsp" file that contains one line -> (load "\\\\server\\share\\version\\acad.lsp")
and I place a copy...
I don't have anything to test really. I build the deployment right OOTB with no mods, and push customization post-install. Been working fine since R2005.
I see that with CHSPACE all the time.
Read this thread for some theories on why this happens:...
I didn't realize the entire article was going to be pushed into a forum post, that's probably on my end though.
Having said that, it looks incomplete since the images are missing.
I'm not trying to...
Have you opened the .DCL file that gets created in your %temp% directory, and examined it?
BTW: it all works fine here.
Just an FYI, the points do have some object data, but you say it wasn't what you were looking for?
41033
What you have there is an ESRI Shapefile (all the "DBrKraftvGarpebodav*" files put together).
Put all those files (there are 7 in your ZIP file) into a new empty directory.
In Civil 3D, run the...
Reminds me of a story Lee. We once had some code here (written by someone else) in VBA that did some layer checking at startup.
It was really slow, and for no obvious reason to end users, so I...
Something like this?
(defun c:foo ()
(if (tblsearch "layer" "mylayer")
(do_your_stuff_here)
(alert "Mylayer not found")
)
(princ)
So true....
Ugghhhh... Same old vague errors for years and years...
The loading of a linetype from file should either (a) create the textstyle, or (b) tell you in the error message exactly what the...
Assuming you are seeing this on a quote from your reseller - just ask them.
A good rule of thumb is...
PSLTSCALE = 1 (in each layout)
MSLTSCALE = 1
LTSCALE = 1 (or some factor close, we use 0.5)
Then just make sure your viewports and MS scale factors are set correctly.
It's just FILEDIA (for File DIAlogs)
CMDDIA is for CoMmanD DIAlogs, and generally only affects AutoCAD Map and/or Raster Design dialogs these days. I'm not aware of any current AutoCAD command...
Are you using plain vanilla AutoCAD?
The risk with only doing those steps is that the contents of the viewport are scaled using the center of the viewport as the zoom point.
So if the model is not centered, it is possible and even...
Double click inside the viewport.
This should take you into model space, but constrained to the viewport itself.
Now you can zoom in on your model.
Without knowing what units and paper size you...