AutoCad 3D :: Number Of Tabulations Changes Graphical / Visual Appearance Of Surface

Jan 26, 2012

Whether the number of tabulations (for example in a ruled surface) changes the graphical/visual appearance of the surface or whether it actually affects the accuracy and subsequent quality of the surface when machined. In other words if you machined the object with a surftab1 set to 6 and the same object again but set to 32 would the latter be physically smoother after machining it?

View 2 Replies


ADVERTISEMENT

AutoCAD Civil 3D :: Surface Statistics - Revision Number

Feb 13, 2013

What is the Revision Number field in Surface Statistics for and how/when is it populated?

IDSP Premium 2014 (mainly Civil 3D 2014 UKIE SP1 & Infraworks with some limited 3ds Max Design)
Win 7 Pro x64, 256Gb SSD, 300Gb 15,000 rpm HDD
16Gb Ram Intel Xeon CPU E5-1607 0 @ 3.00GHz (4 CPUs), ~3.0GHz
NVIDIA Quadro 4000, Dual 27" Monitor, Dell T3600

View 2 Replies View Related

AutoCAD Civil 3D :: Maximum Number Of Points In A 2013 Surface - 1.5 Mill?

May 4, 2012

C3D 2013. 64 bit. Windows 7.

Question 1.In C3D 2013 is there a ceiling to the number of points allowable in a C3D surface? Is it 1.5 million?

Question 2. In C3D 2013, when creating a surface from Point Cloud data is there a maximum point count based on the answer to question 1 - or is a different point count limit applied?

View 5 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Number Of Layouts In Another Drawing

Oct 4, 2013

As you smart individuals can figure out, we do up drawing packages for construction that consist of several drawings, hundreds of drawings, for several modules of construction.  Our process usually consists of one layout per drawing, so that the lisp guy can do a drawing count and put in sheet numbers based on how I manipulate the list of drawings in the one directory folder.

Now I have a client, despite the way we currently do things, requires that about 70% of the drawings will have multiple layouts.  Now we're back in the stone ages, manually putting in sheet numbers, eating up our budget for this contract.

View 4 Replies View Related

AutoCAD Visual LISP / AutoLISP :: BIOS Serial Number

Feb 13, 2013

I know that in the MS Windows' "command prompt windows" I can type:

WMIC BIOS GET SERIALNUMBER

to get BIOS serial number. so how can I get it with LISP?

View 3 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Multiply By A Number Of All Element

Jul 7, 2012

I have a list and i want to multiply by a number all the element how is it possible with Mapcar

View 2 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Next / Previous Sheet Number Field

Sep 21, 2006

The Field dialog box has an item for CurrentSheetNumber with field expression: %<AcSm Sheet.Number>%

Is it possible to create a Field to display the Next Sheet Number (CurrentSheetNumber + 1) and a Field to display the Previous Sheet Number (CurrentSheetNumber - 1)?

View 1 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Drawing Name Set Equal To Number From Provided List?

Nov 25, 2013

I have the need to make the current open dwg (name) equal to its predefined number in a large list. For example, building66.dwg is equal to 123789. I’ll have a large list in a tab delimited txt file with the example below. I can put the list in the lsp file if needed. Something like (if (getvar "dwgname") make equal to listname) and go out to the list and return its number. Seems kind of easy but I can’t make it happen. 

building66.dwg 123789
building12.dwg 333789
building94.dwg 345789

View 7 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Copy Block Increase Attribute Number

Jun 19, 2012

I have a simple hexagon block with one attribute, i need to be able to copy it and as i do it increases the number by one.

the Block name is note1-2006 the attribute name is NOTENUM. I have tried using some other Lisps but i cant ge them to work. Sometimes i have to put 40 of these on a sketch i hate copying and changing the attribute by one everytime. so it would be nice to copy and as i pick mutliple spots it increase number. Dont know if there is a way to ask user to keep same number or increase. This would save me so much time.

View 9 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Generating Table With Point Number From Attribute?

Sep 8, 2011

I have a simple block that consists of a point and an attribute that contains the point number. I want to generate a table with point number from the attribute, and x, y and z of the block's insertion point. I want a routine that sets out the blocks and then create the table. The first part of the routine I have (in LISP), I need it to generate the table. I was intended to use the -DATA EXTRACTION but unfortunately it does not allow me to select objects (blocks). Are there other ways to do this? I'm using AutoCAD 2011.

View 5 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Add Sequential Number As Suffix To Specific Attribute?

Nov 11, 2011

I currently have a LISP routine that will replace the value of a specific attribute name with sequential numbers in the order that the blocks are selected. Like TCOUNT for attributes - and it only looks for a specific attribute Tag Name called "ID".

However, what I want it to do now, instead of just putting the number into the attribute value, I want the number to be a suffix to the existing default tag value of the tag named "ID" which is "ADDRESS:" for some blocks and "ELEVATION:" for other blocks but the tag name that the routine always has to filter for is "ID". That way the user can pick anywhere on the block - not being forced to pick the tag we want to add numbers to.

What I need the new LISP to do is append a space and then a number to the existing tag value in the block, so that the result would look like "ADDRESS: 1", "ADDRESS: 2", "ADDRESS 3" or "ELEVATION: 1", ELEVATION: 2", etc. depending on whatever the default value for the tag "ID" is.

there are several hundred different block names - but they all have a Tag Name of "ID" - whose default value is sometimes "ADDRESS:" and sometimes "ELEVATION:".

View 8 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Determining Number Of Lines In Multiline Attribute

Sep 26, 2013

I am basically trying to determine how many lines are in the mutliline attribute. I have abandoned the idea of directly trying to find the the number of lines and have moved on to trying to fine the height of the multiline attribute. I have included the lisp and sample drawing that will draw a box of the boundingbox around the mutiline attribute. 

This block as originally a dynamic block that different visual states. I have tried using the bounding box option on the block itself, however, if there are blocks hidden with the visual state, it will draw the bounding box according to the largest element in dynamic block every time. So I need to determine the height of the multiline attributes instead and adjust the dynamic block accordingly. 

View 3 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Retrieving Number Of Entities In Dynamic Block

May 19, 2013

I am modifying stuff in a dynamic block insert entity. There is no "endblk" entity at the end of these definitions and I need to cycle through every entity within the block definition. When it gets to the last entity,  I get an error because you cannot entnext passed the last entity. There are 2 things:

1. How to retrieve the # of entities in a block without cycling through it.
Or
2. A quick lesson in the *error* function, I cannot figure out how to implement this. I basically want to to say:

(if (entnext myent)) returns a error, don't abort & continue on.

View 4 Replies View Related

AutoCAD Visual LISP / AutoLISP :: How To Loop Based On Number Of Selected And Filtered Objects

Jun 13, 2013

I am looking for a way to extract (filter) all polylines, and loop a lisp based on the number that are found within a "W" selection window.I am frustrated getting "malformed list" or errors, even after defining "n" for repeat.The code I have so far looks like this:

(defun cWW (/ p1 p2 sspw myObj ss)
(setq p1 (getpoint "
Pick first corner: "))
  (setq p2 (getcorner p1 "
Specify opposite corner: "))
  (if
   (setq sspw (ssget "W" p1 p2 '((0 . "*POLYLINE")))
 [code].....

Without the (repeat () portion, it was working ok with selection window, however it only would run the commands for a single polyline.  What needs to be done without overhauling the code?  The lisp has worked on a drawing-wide basis, however needs to run on only on user-windowed polylines since there are other polylines within the drawing which are attached to layouts via viewports. 

View 9 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Assign Variable Based On The Number Of Characters To Be Removed

Apr 1, 2013

(defun layun (target_obj / original_layer original_layer_info target_obj_atts new_layer )(setqoriginal_layer (cdr (assoc 8 (entget target_obj)))original_layer_info (tblsearch "layer" original_layer)target_obj_atts (entget target_obj));setq(if (or(wcmatch original_layer "*-P123"); REMOVES 4 CHARACTERS(wcmatch original_layer "*-P123456"); REMOVES 7 CHARACTERS(wcmatch original_layer "*-P123456789"); REMOVES 10 CHARACTERS );or(progn(setq new_layer (substr original_layer 1 (- (strlen original_layer) ??))) ; NEED TO ASSIGN VARIABLE TO MATCH THE NUMBER OF CHARACTERS TO REMOVE(if (not (tblsearch "layer" new_layer))(progn(entmake ;;;begin to make new layer(list'(0 . "LAYER")'(100 . "AcDbSymbolTableRecord")'(100 . "AcDbLayerTableRecord")(cons 2 new_layer) ;;; layer name(assoc 6 original_layer_info) ;;;re-use original linetype'(70 . 0) ;;;flags - use default flags(assoc 62 original_layer_info) ;;;re-use original color);list);entmake);progn);if(entmod (subst (cons 8 new_layer) (assoc 8 target_obj_atts) target_obj_atts)));progn);if);defun

assign a character where ? is shown so that it matches with the number of characters to remove based on the 3 lines above (see wcmatch lines).  At present, whatever number I replace that ?? with, it removes that number of characters from the layer that I selected (if it meets that WCMATCH criteria).  Another option which may be more difficult is to be able to have the routine look at the object layer and if it contains -N- or -D- or -NEW- or -DEMO- then to remove all the characters that follow these layer modifiers.  This way I can cleanly add another project modifier behind these modifers. 

View 9 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Get Separate Block To Load If Third Number Entered When Prompted

Aug 23, 2011

I am wanting to get a separate block to load if a third number is entered when prompted. If enter is hit or only 2 of the numbers are entered, load the other block. I couldn't even get it to do right by even equaling a specific number.

View 8 Replies View Related

AutoCAD Inventor :: Graphical Glitch With Sectioned Parts

Sep 14, 2010

When rotating and viewing sectioned parts I keep having a graphical problem, normally I loose the face the part is sectioned through, leaving a view into the hollow shell of the parts. Other times the problems get worse and random sections become visible. This doesn't happen all the time and both of these problems are solved if you click on the part. I have included a pic of a test piece that hopefully illustrates what I am talking about.

I am running Inventor 2011 SP1, on windows 7 with a Nividia Quadro FX 580 with the latest drivers.

View 7 Replies View Related

AutoCad :: Linking Database Records To Graphical Objects

Feb 21, 2012

linking database records to graphical objects within AutoCAD2012?

View 3 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Distribute Object (circle) In Selection Of Great Number Of Points?

Aug 6, 2013

How to distribute object (circle) in selection of great number of points?

View 5 Replies View Related

AutoCAD Inventor :: What Would Cause Origin 3D Indicator In Graphical Window To Be Enormous

Dec 7, 2011

what would cause the origin 3d indicator in the graphical window to be enormous? I'm talking 4x normal size.

Also, in the sketch environment, the little green and yellow dots that represent sketch points are huge, and the grid has gone really small. 

Have tried changing graphics mode to "Compatibility" and selecting "Software Graphics" - No change.

View 2 Replies View Related

AutoCAD Visual LISP / AutoLISP :: ANGTOS Return Accurate Result For Number If Decimal Places Requested

Jan 5, 2012

I work with ANGTOS and ANGTOF quite a bit.  I'm working with latitude and longitude conversions in MAP 3D for an application where accuracy is top priority.  Most of the time ANGTOS (and RTOS, for that matter) return an accurate result for the number if decimal places requested, but then I run into a situation like this:

Command:
(angtos (angtof "120.0") 1 16)
"119d59'59.999999999949""

I got it to return properly by specifying only 13 decimal places, but the result makes conversion between coordinate systems inaccurate.

View 1 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Surface Angle With 4 Points

Nov 6, 2013

I need very very often to know the angle between two surfaces to write cnc programms...At the moment i draw allways two lines normal to the line between the two surfaces an use then the angle measuring tool.Works good, faster then bks and dimensioning, but need also time and always need to delete the lines after...

Is it possible to get a lisp which ask für 1 point on the first surface, 1 point on the other surface and two points on the line between the 2 surfaces? So the lisp know 3 points of each surface and can give out the angle between... Should be allways between 0-180°

So it needs only 4 klicks to get a angle! That would be so great! Is there a lisp programmer who can make this possible?

View 9 Replies View Related

AutoCAD Print / Plot :: Incomplete Graphical Content In PDFs Created Via Publish To PDF

Dec 20, 2011

The Publish to PDF option in the Sheetset Manager which I believe is using the native/built-in AutoCAD 2012 PDF driver is creating PDF's with incomplete and inconsistent graphical content.  See attached PDF examples wherein the PDF "...(CONTENT GOOD)" created via CutePDF Writer contains the desired output...

Note both PDFs were plotted with essentially the same plot settings, driver excepted...

View 4 Replies View Related

3ds Max :: Graphical Glitches With The UI

Jul 29, 2012

Just installed 3ds Max 2013 and I am having some graphical glitches in the UI.

Attached a picture of the issues.

View 2 Replies View Related

AutoCAD Visual LISP / AutoLISP :: How To Select All Tangent Surfaces To A Selected Surface

Nov 13, 2011

i.e. it would be usefull for separating the top and bottom of a sheet metall or plastic part.

Other cad systems I have seen have a function to do this automatically....

View 9 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Connect Two Points With Given Elevation Following Surface File / Entities

Dec 4, 2013

I am working on a flood inundation, I would like to find a lisp or command(i'm not finding) to connect two points with a given elevation following the surface file or surface entities. 

here is a small section as example right now it's just guesswork, some of these have taken a week to connect all the sections.

View 7 Replies View Related

Photoshop :: See Two Or More Graphical Files In Workspace At Once?

Jun 9, 2012

In PS CS3 you could open as many graphical files as you wanted, move them around on the scrren, edit them, then create a new file and copy those into it creating a composite image. 

Now, with CS6, I haven't figured out how to do that yet. If I load an image, it takes up the entire workspace, with rulers going negative to hugely positive with no reason to do so. If I load another image, I can't see them both unless I tile. if there is a way to put ALL files, say 10 of them all on ONE workspace at once?  I'm almost ready to go BACK to CS3!

View 5 Replies View Related

Photoshop :: CC Graphical Errors On System?

Jun 26, 2013

i installed Photoshop cc on a Trail to check if it runs well on my pc, when i opend/or made any image on the main area were you edit the Graphics go mental  at places were collor changes... even if you open a new image and use the gradient tool,its not gone be on the final image or anything its just in that window..

so i fought maybe theres something wrong with my AMD ATI HD7950 Graphic's card thats pretty new, but after reinstalling all of the drivers and software for it its still there, just went through the troubleshoot page.. (windows7)

View 1 Replies View Related

Photoshop :: Crop Tool Graphical Bug On Retina MBP?

Nov 8, 2013

I opened a 16 bit image. When using the crop tool in default mode (NOT classic) when the entire canvas is visible (so not zoomed in), I switched to the crop tool, click on the canvas to get the crop rectangle, then zoomed in more and more. At some point the image goes black, with bits of image showing through, and further zooming reveals a bunch of noisy colorful pixels.
 
This does not happen in 8 bit mode.

I've not yet had this happen ever on any non-retina computer.

It does not happen when you start already zoomed in somewhat.

It does not happen when the crop tool is set to Classic mode.

It does not happen in Windowed mode, only in Full Screen With Menu Bar mode (so press F once).

I can reproduce it.

View 2 Replies View Related

Lightroom :: Center A Graphical Identity Plate In Web Gallery?

Jul 8, 2012

Using LR 4.1, I have uploaded a custom logo as my identity plate. When constructing a web gallery in the web module, I am unable to center the logo in the galleries I create - it always aligns left and looks terrible.
 
*** this is NOT a question about watermarking - I know how to center watermarks ***

View 4 Replies View Related

Lightroom :: 4.2 - How To Get Crisp Graphical Identity Plate On Prints

Nov 24, 2012

I'm a long time LR user (currently LR 4.2), but just recently started producing a series of limited edition prints that include a graphical identity plate centered below the image.  As LR insists on having to scale the identity plate, the result is that I can never produce a print where the text appears crisp and sharp.  Rather there's always some perceptible softness in the text.
 
I'm using PhotoShop to produce the graphical identity plate and have produced it in the exact dimensions as it should appear beneath the print.  When I bring it into the LR print module, however, it immediately scales it to 100% of the page size so I'm left with no option but to select a scaling % that most closely represents the original size.
 
Is there a solution to this?  I only recently purchased PS CS6 and am thinking I should probably be doing this within that application, but honestly I'm just more comfortable in LR.  For this print, I have the page size set to 20" x 30" and the cell size containing the image at 16" x 24".  I think I know the correct process to duplicate this within Photoshop, but verify the procedure if LR isn't up to the task.

View 5 Replies View Related







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