AutoCAD Map 3D :: Creating A Layer For Features
Nov 25, 2013
I want to use the different features in Map 3d such as the points, lines and polygon. I went to the help file and it instructed me to go to the display manager and right click on the "feature" layer to create a layer for the relevant feature that i want to use, but i have no "feature" layer in the display manager.
How do i create this layer? I use a template that is setup for c3d, is it due to this that there is no standard layer in the template?
View 1 Replies
ADVERTISEMENT
Aug 2, 2012
Let's say that I'm making a simple L bracket. I'm going to form it, and machine the holes in both ends *after* forming. So I don't want the holes to show in my flat pattern.
On the few threads I found, the consensus seemed to be that you may have to have the part file contain no holes and put them in as assembly. So I just accepted this that it must not be able to be done.
Then I ran across a piece of promo literature online from AutoDesk that made mention of the ability to create "postform" features that obviously are created after the forming process.
View 3 Replies
View Related
Mar 26, 2007
Can the API be used to select feature edges in a drawing view and assign them to a layer? I am using IV10.
View 6 Replies
View Related
Dec 1, 2011
When I insert a drawing from another source as a block into one my drawing - and then explode the block and change the exploded block layers to my layers. Then I purge out the old layers. Normally this works fine, but I have lately had trouble getting rid of some unwanted layers as everytime I have tried, I get the message that they are x-ref dependent and cannot be deleted or purged. I have tried to isolate them by freezing and turning off everything else, but there are no features, entities, "specks" whatever, to erase. I have looked at the xref command, and my drawing shows no rogue xrefs. I am not sure what to do to get rid of these layers.
View 8 Replies
View Related
Sep 3, 2012
Is there any way to set features to be invisible when create sketch after those 3D features so as to make the sketch more easy to see?
View 3 Replies
View Related
Feb 17, 2012
I am transitioning from ACAD2008LT to ACAD2012 and am having a new problem when trying to create a new layer. I use many layers in my drawings and I set up specific layer naming conventions and use many layer property filters (filtered by layer name - for example, dimension layers named '*-Dim' and a property filter for '*-Dim') to manage the many layers.
In ACAD2008LT you could create a new layer while in a property filter view (in the Layer Properties Manager) and could type in the new layer name from that filtered view. If, after entering the new layer name, it matched the current property filter, it would remain in view, if it did not, it would automatically be moved to the appropriate filter or to the 'All Layers' view. That seems very logical.
In ACAD2012, as soon as I create a new layer while in a property filter view, the default layer name 'layer' does not match the filter parameters (say '*-Dim') and the new layer immediately moves to 'All Layers' before a new name can be entered. I have to then switch filter views back to 'All Layers' and find the new layer now named 'layer' and rename it there, trying to match the desired property filter name.
Am I missing something or is this an intended change from earlier versions? It was really nice to be able to see the layers in the property filter view while creating a new layer with a naming convention that matches that filter. In fact, I often create multiple new layers matching a property filter by copying and pasting similar layer names and just changing a character or two. In ACAD2008LT I could do that all from the appropriate property filter view.
View 2 Replies
View Related
Aug 8, 2013
I am writing a function to create a layer with as many attributes as I need in when creating a layer. The problem I am running into when creating a color definition to the layer. What sort of thing do I pass to the function to change color as a color index number? using col dim?
The passing call would look like this...
createNewLayer("E-SCHDL-BRDR", 15, 0.4) 'I would hope to somehow pass an interger of the to the sub, but get an error when trying to do so, of course
Private Sub createNewLayer(ByVal NewLayerName As String, ByVal AColor As Autodesk.AutoCAD.Colors.Color, ByVal AWidth As Double) Dim doc As Document = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument Dim docLock As DocumentLock = doc.LockDocument() Dim ed As Editor = doc.Editor Dim db As Database = doc.Database Dim tr As Transaction = db.TransactionManager.StartTransaction 'Dim tm As DBTransMan = db.TransactionManager 'Dim dba As Database = HostApplicationServices.WorkingDatabase Try Dim LT As LayerTable = tr.GetObject(db.LayerTableId, Autodesk.AutoCAD.DatabaseServices.OpenMode.ForRead, False) If LT.Has(NewLayerName) = False Then Dim LTRec As New LayerTableRecord() LTRec.Name = NewLayerName LTRec.Color = AColor LTRec.LineWeight = AWidth LT.UpgradeOpen() LT.Add(LTRec) tr.AddNewlyCreatedDBObject(LTRec, True) tr.Commit() End If Finally tr.Dispose() End Try End Sub
View 8 Replies
View Related
Aug 15, 2011
I am trying to automate opening a document and inserting a new layer in it. Inserting the layer and opening the document is quite easy, but doing both is proving to be quite difficult.
Here is the Code that I am working with. The code for creating the layer works fine in an already opened document. It seems that autocad cannot find the opened file.
Sub Open_and_new_layer()Application.Documents.Open ("C:UsersPatrickDesktopAutocad program66986691_BL_01.dwg")Dim strLayer As StringstrLayer = "BOM"Dim layCurrent As AcadLayerOn Error Resume NextSet layCurrent = ThisDrawing.Layers(strLayer)If layCurrent Is Nothing ThenSet layCurrent = ThisDrawing.Layers.Add(strLayer)If layCurrent Is Nothing ThenMsgBox "Error creating layer " & strLayer & "."Exit SubEnd IfEnd IfThisDrawing.ActiveLayer = layCurrentEnd Sub
View 6 Replies
View Related
Sep 7, 2011
I'm an ACAD LT 2008 user demo'ing ACAD LT 2012.
In ACAD LT 2008 you can create a new layer (or layers) from a layer property filter and can edit all of the new property characteristics and the filters will not sort until you are done (apply). This is useful for creating multiple layers (especially matching your current filter) that you can copy and paste layer names. However, in ACAD LT 2012, as soon as you select "New Layer", a new layer named "Layer 1" automatically sorts/filters and it is gone from view, requiring you to find it before you can rename it and edit its properties. Is there a way around this?
View 1 Replies
View Related
Jul 27, 2012
I need to create a truncated contour map based on data from a .asc file. I have connected the .asc file but there is no option for adding with query so I have brought the whole file in.
I then created a contour layer and added to map (all good so far) but when attempting to query this layer for my area of interest nothing appeared on screen.
I then did some manipulation of the sdf to create polylines at the contour elevation and tried to MAPTRIM but I stopped Civil 3D after having "not responding" for 15 minutes
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
May 15, 2013
When I am trying to label an object, surface slope, elevation or lot line distance my text reverts back to layer 0. I have checked the Label style composser and have everything that I see set to the layer I want it on. When creating the label I am even physically on the proper layer but when I make the label it still goes to 0.
View 1 Replies
View Related
Nov 7, 2011
I wrote some code in VB .NET 2010 getting started from Kean Walmsley project to create a new layer. I did it working directly from code and not using a command line as he did.
[URL] ...
The problem is that the same code works if I call it directly inside the application code, but doesn't if I throw it from a push button.
I get the eLockViolation error code.
View 3 Replies
View Related
May 11, 2013
I'm wondering how you can get the same orange effect that is on this photo. I tried putting an orange layer on top of my image and then doing multiply. It makes the sky the same thick orange (which I like), but the building I have in my image doesn't get as saturated.
View 4 Replies
View Related
Sep 21, 2012
I have a collage of photos on a layer and want to create a smoke effect layer on top of it. How can you do that in an elegant way?
View 4 Replies
View Related
Jan 1, 2012
I use adobe photoshop quite often and one thing that has always been a valuable tool is the ability to create a group or a layer set. Is this possible in GIMP or would I have to obtain a plugin to do this.
View 3 Replies
View Related
Sep 23, 2009
I am trying to create a 3d object with depth and lighting that I can export to After Effects for a 3D logo with movement. I assume that this is pretty easy with text or an object created in photoshop but the image I am trying to extrude and make a 3d object is a layer I cut out from a jpeg. I am aware that I can wrap that layer around an object, but I am looking for the cut out object to be 3D. Do I need to convert the cutout layer to a vector? Is there a simple way to do that? Is this possible through illustarator or photoshop?
View 3 Replies
View Related
Dec 11, 2012
I'm creating an animated gif from a video clip (cinemagraph). In order to acheive the effect I need, I need to move each layer with the move tool to get an object to stay in the same position. I have gone through layer by layer and used the move tool to move the contents of each layer. When I play the animation I see the layers in the position I put them in. I stop playing the animation the contents of each layer snap back to their original positions. I have tried using the lock tools (both lock position and lock all) but they don't make a difference. why layer positions would reset when creating animations and how to get it to stop?
View 6 Replies
View Related
Mar 25, 2013
When creating a new layer using the icons in the adjustments palette and holding ALT in CS5 a dialog box would appear before creating the new layer. At this point you could rename the layer change the blending mode etc.
In CS6 I do not get the dialog box to appear the new layer is just created. I've tried to reset my preference twice and this has not work.
View 3 Replies
View Related
Mar 23, 2013
I have a problem with Photoshop automatically creating strange boxes on the layer mask when I'm sharpening the image, first with high pass, then unsharp mask. After I've already created a stamp visible layer on top of the layer mask.
View 5 Replies
View Related
May 9, 2011
I am struggling with clipping masks and after a few hours of scouring the internet and trying different techniques, I am left no closer to my end result than from when I started.
I am creating a banner. The banner contains 1 background image and some text. I'd also like to include 9 photos on top of the background image, all bound by a textured border. I have created the borders for all 9 images and have placed them on the background. Now, my questions is how I make these base layers of a clipping mask. I want the the mask to show the image, even through some of the textured border.
I know how to create the actual clipping mask of the image to be placed in the border. My question lies entirely within the base layer/border layer.
View 5 Replies
View Related
Mar 21, 2013
I have a shape that I want to add a blend layer to by creating a square, adding a gradient then making it an overlay on top of said shape. The issue I am having is I cant find a way of masking out the unwanted areas of the blend layer. I have tried to follow the steps the official help and other internet help sections but it's not working. It's so easy in photoshop. How come it's so difficult in Illustrator? Is there something I am missing? Additionally, a blend layer (in most modes) wouldn't show any colour if overlaying upon white in photoshop. How come this isn't so in Illustrator?
View 4 Replies
View Related
May 8, 2013
If I already have an object selected and then click the "new layer" icon in the layers palette, the object I have selected deselects as soon as the new layer is created. Why is this? Also, it only happens on one of my computers, so I figured it was a setting that I'm missing but I certainly can't find it.
View 2 Replies
View Related
Aug 3, 2013
In Elements 9 I want to select and copy a layer which is partly empty. This is to make a layer mask. The non-empty part is too complicated to select using any of the Select tools. If I use Select All, then copy and paste to a new layer, the pasted image is not in the right place - it has been displaced significantly. I am then not able to use it to create a layer mask, because it will not be properly placed above the original image. Why does this displacement happen ? Is there something I can do to avoid it ?
View 7 Replies
View Related
May 18, 2013
i cannot open create new layer in elements 9 the cursor does not activate
View 1 Replies
View Related
Aug 7, 2012
I have a picture of a baseball player with grandstands and spectators in the background. To focus attention on the subject, I want to blur and slightly darken everything but the player (subject).
So I duplicated the background layer and created a mask over the player. Then I selected the background layer, added lens blur, and darkened it.
The problem is that this step blurs the image of the subject in the background, causing it to extend out beyond the masked image of the subject on the foreground layer, creating a ghostly "halo" effect.
I've tried creating an inverted mask on the background layer, but that doesn't work.
Photoshop PS6, Windows 7
View 5 Replies
View Related
Apr 29, 2013
In Photoshop CS5, some of my rectangular layer masks are creating a lighter shadow like bandin just below the top of the mask. No effects are applied to the mask.
View 1 Replies
View Related
Aug 8, 2012
In Photoshop CS5, some of my rectangular layer masks are creating a lighter shadow like bandin just below the top of the mask. No effects are applied to the mask. How do I correct this issue?
View 3 Replies
View Related
Aug 9, 2012
Is it possible to create an art which is present on the document but not on the 'Layer' panel(F7)?
My requirement is to create an art which is visible on the document, but could not be seen on the Layer panel and user is not able to select it.
Just like it happens in case of reflection, when we are creating a copy of selected art object, the reflected copy doesn't present on the 'Layer' panel but it is visible on the document and user is not able to select the reflected one, while he can only select the original art.
View 1 Replies
View Related
May 6, 2013
Using photoshop CS6 on Mac, I am seeing a problem with one of my batch processing sript who's only task is to apply an embossed water mark to images which I have resized such that the longest side is always 500px. (short side varies depending on how I have cropped).
In most cases, the piece of text I am adding to the image appears fine. But then for no apparent reason, it will suddenly apply the text (which I have set to 24pt) and it is way to big. To address the issue, I have to reduce the font size (via the actions pallate) down as far as 8 pt. Then it starts to appear more or less correctly (for a while) until maybe a few weeks later when I open up photoshop to run the job again and suddenly 8 pt font is WAY too small and I have to bump it up to 24 pt again.
View 11 Replies
View Related
Apr 10, 2013
I'm trying to create a custom stamp in Photoshop. Done it with a 16 bits colorspace, saved as TIFF with the required options from the official documentation.
Why do i get a 'grainy' result, even painting with a 100% strength white color ? It happens only on a bump layer. On a diffuse layer, its ok.
Do the bump layer use a 8bits color space ???
View 2 Replies
View Related
Aug 1, 2012
It appears that the Layer Filters functionality is broken again with 2013. Unchecking the "Apply layer filter to layer toolbar" disables the function of layer filters in the tool palette.
View 5 Replies
View Related