File with 3 lines (A, B, C) 2 models (A, B) Create multiple sections automatically and can be modified by moving a line or model. I've tried but SECTIONPLANE SECTIONPLANE previous close.
Is there a way to create a 3D object such as a motor, by using 2D sections from multiple view points? For instance, I have a side view, front view, and rear view of a motor in 2D but I would like the motor in 3D. Besides cutting one of the views in half and revolving around it or push/pulling an enclosed area a certain distance for each individual feature of the motor or extruding many faces is there a QUICK and SIMPLE way to do this?
I'm trying to find a way to plot multiple (over a thousand) DWG files to PDF without doing each one manually. I've played around a little bit but without any luck. I'm using AutoCAD 2002 LT. Is there any way to do this?
I've also got little to no experience with the more complex settings and abilities of autocad so do so in laymans terms.
2002 lt has no general publish (only publish to web) option and how sheet sets work.
using Civil 3d version 2012...Want to add existing and proposed profile grades to cross sections for the eastbound and westbound lanes. I have an alignment established for each
I've got a series of cross sections that show an existing and proposed scenario and I need to show the location of the site boundary on the (multiple) sections.
I tried making a feature line from the site boundary but all the feature lines get projected - how can I just get the site boundary to be shown?
I am using Land Desktop 2005 w/ Civil 2005 and how to create a profile/cross section. My scope of work is as follows: The land for survey is approximately 1,500 feet by 110 feet. The survey shall consist of cross sections every 200 feet along the length of the rectangular shaped piece of land equating to no more than 8 cross sections. I am use to just doing regular topos and boundaries.
civil3d 2012. I'm trying to find out how to create cross sections from existing ones that i have in autocad file. I allready have read for the way with offsets points, but is there a way to make full cross sections from the allready drawned?Is it possible to convert the existing lines?
I want to create cross sections in a blank drawing via a Data shortcut Project.
My intent is to keep my file size to a minimum. I can include surface, alignment and profile per data shortcut but not my corridor. My corridor is 3000 feet long and when I do cross sections in the same drawing, it runs real slow.
Is it possible to have the production tool for cross sections create separate sheet drawings, rather than creating multiple sheet layouts in one drawing?
I am trying to create a label for slopes in cross sections for a surface created from breaklines using gade breaks as you can not weed segment labels
I am weeding the labels out based on the change in grade of the section profile and making the label text high very small of the labels I do not want to see. But the first label returns ??? because there is no grade coming in so I get ??? instead of something usefull like null. Any way to convert?? to something you can evaluate and use.
I'm currently sitting with the following problem in CorelDraw 11:
I have four circles, one inside the other, with the circles getting smaller towards the centre. I want the two outer circles to be joined and the two inner circles to be joined. Text will be placed on top of these circles and I want to cut out those sections of the circle which will be covered by the text. The circles will also be filled with different colours. Simply placing the text on top of the 'rings' is not an option as the there are also two logos on the right which cover part of the circle (the part which I want to 'cut' out).
I've tried Combine and the Knife tool but somehow I just don't seem to achieve my goal. This would be a lot easier to explain if I could upload a PDF of the image.
I'm creating/applying Object Data for Pipe Size and Valve Number for a Water Main Atlas I'm creating in Map 3D.
Is there a way to define Annotation for the Valve Nubmer and Pipe Size, so the Annotation is automatically created when each Valve feature (entity) is created? Or when each Pipe entity gets drawn?
I've been working a while with AutoCad now but this week I received a task which I am not sure is not even possible to do.
I've been exporting drawnings from an other program into AutoCad2013 and all the objects in my drawning appear as loose objects in AutoCad. Can AutoCad create automatically blocks from these loose objects ?
Example : I added a picture of a transformer in this message. This object (2 circles, triangle and star) becomes all loose objects and is NOT one symbol anymore. My question is, if it it is possible that Autocad can recognize these loose objects and create automatically blocks from them. There are a lot of transformers in my drawnings and If I have to do it myself it will be loads of work.
Another thing they asked to do is working with correct European Symbols. I should therefore change blocks in my drawnings into correct one's. I believe when the wrong symbol is already a block it's more easy to change them. I think I should just select all wrong blocks, edit them and then update them. But before this, I have to get blocks in my drawning ofcourse.
how to create cross sections without cutting up the model similar to applications like Autodesk Inventor? Maybe inserting a poly plane into the object and tell Maya to only render stuff in the normal direction of the plane if that is even possible?
Is there a way to create key notes automatically in R2013? Similar to automatic numbering in mtext, but with a hexagon or circle around each number at the beginning of each line. Right now I just type my paragraph then manually insert a key note with attributes at the appropriate location. Problem is when I add or delete text from the paragraph, the line spacing may change, then I have to manually re-align all the key note blocks.
I could not get the code to work for me, and I am not a programmer or pretend to be. I need to take a model and create a dwg with ilogic. It only needs to be one flat pattern view and one isometric view.
I also need it to have center marks for all the holes and I need to add certain dimensions.
Can autocad automatically create a sequentially numbered array. I do concert seating and am looking to create an array of seats and have them be numbered automatically as I create the array.
I need assign automatically, a unipersonal code at file, before saving it. When i do save as or save at the first time, inventor take automatically the name listed over the tree of operations at the left of screen, My problem is, that i can't identify this paramter or property, for assign this code in ilogic.
Seeing if there is a option/3rd party plug in where it will save a dwf(x) along with the inventor files - WITHOUT using vault.I'm Currently using Inventor 2013.
How I can modify this code to create a block, ask for a new name for the block, then add the attributes listed inside the code below to the new created block. The lisp does a wonderful job - however, it only works if you already have a block created. We are in the process of drawing components and making blocks one by one, so it makes sense to add the attributes automatically when the block is created. We currently have over 500 components to create as a block and set the attributes to each one by one.
Also I would like to know, If Fields can be used inside the lisp routine. That way we can always have access to the attributes from outside the block and change values for all the blocks at once.
(defun c:addattribs ( / blk def ) (while (not (or (= "" (setq blk (getstring t " Name of block to update: "))) (tblsearch "BLOCK" blk) ) ) (princ (strcat " Block "" blk "" not found.")) ) (if (/= "" blk) (progn (setq def (vla-item (vla-get-blocks (vla-get-activedocument (vlax-get-acad-object))) blk)) (vla-addattribute def (getvar 'textsize) acattributemodelockposition "New Attribute 1" (vlax-3D-point 0 0) "NEW_TAG1" "New Value 1" ) (vla-addattribute def (getvar 'textsize) acattributemodelockposition "New Attribute 2" (vlax-3D-point 0 (- (* 1.5 (getvar 'textsize)))) "NEW_TAG2" "New Value 2" ) (command "_.attsync" "_N" blk) ) ) (princ))(vl-load-com) (princ)
i have 55 images that need resizing and turning into thumbanails. looking to create a photo gallery on a web page. Is there any way that photoshop cs can automatically create thumbnails if i put the originals in a folder?
When I try to create a document, Gimp finds my web cam, but not the twain driver. The scanner is a perfection 636U. When I click on "create>scanner/camera", it gives me a Twain.exe system error - error message that reads:
"The program can't start because PMDD32F3.dll is missing from your computer. Try reinstalling the program to fix this problem."
Some more info that might be useful:
If I go into epsonscan directly, it finds the scanner and scans just fine. I can export the image and open in Gimp just fine.
The laptop is a win7 machine. There are no Win7 drivers for the scanner. I am using some Win2000 drivers that I used to use in XP with no issue.
The PMDD32F3.dll file is in the Windows>System32 file
I'm at a loss on why epsonscan works itself perfectly, but not in Gimp like it does on my XP machine.
I have just discovered actions which are great and timesaving. One question I have is that if I have an action to adjust levels will the script just bring the highlights and shadows buttons to where i ran in the script or is it clever enough to realise that the script is taking them to the ends of the histogram?