AutoCad :: North Points Layers In Viewports

Aug 15, 2013

Want to know if there is a better way to have multiple north points in a drawing with out having them on their own layer

I produce drawing along the length of a road so use viewports to cover the length so when the viewports overlap I have a cut line and this often means at the end of one viewport you see the next viewports north point.

Currently I have the north point block drawn on its own layer then I end up creating 2 or 3 move layers to put the blocks on so I can freeze the new layers in different viewports hiding then from the previous if that makes sense.

View 3 Replies


ADVERTISEMENT

AutoCAD Visual LISP / AutoLISP :: Insert North Block Oriented On Two Selected Points

Sep 19, 2012

I am trying to insert a norht block oriented on two selected points with the following

(defun c:North ( / ss )
 ;Orientate North Symbol
 (setq oldos (getvar "osmode"))
 (setq blk (vlax-ename->vla-object (car (entsel "

[Code] .......

I am not sure how to (a) erase the selected north block, then (b) make the  insert north block in its place bit work.

View 6 Replies View Related

Revit :: Determining Angle From Project North To True North?

Apr 23, 2013

I have a text file of several surveyed ponts throughout my model.  I can select one of these points in my model and specify the coordinates of East/West, North/South, and elevation from this file, but how do I determine the angle from project north to true north from these surveyed points?

View 1 Replies View Related

AutoCAD LT :: Visibility Of New Layers In Viewports

Jul 17, 2012

AutoCAD insists on making newly created layers visible in all previously established viewports, even when I have set the visibility to off when creating the new layer.  I have found to correct the problem is by going viewport to viewport (with the layer window open), clicking within the viewport and changing the layer visibility to "off." 

I would like to have a global variable for new layer viewport visibility.  by default, I would turn-off all visibility of new layers in existing or new viewports.  Then I could turn them on where I needed them without having to clean up after AutoCAD.  This is a logical default, because if I have not previously established a layer, it is likely that I would not want/need to see that layer in most previously established viewports.

View 1 Replies View Related

AutoCad :: Layers Not Staying Set In Viewports?

May 11, 2011

I'm having a problem setting layers in various viewports. I set them (using VP freeze), they appear to be fine, I save, yada yada, but after a while all the layers turn back on within the viewports. Very frustrating. I am starting to think that there is a fundamental problem with my layers system- possibly having to do with my profile setting, but I don't know enough about setting and managing profiles to know where to start. Or it could be something else.

View 6 Replies View Related

AutoCad :: How To Turn Off Layers In Viewports

Jul 17, 2012

I have a one drawing in MS with 5 layers.

I have 2 viewports in one layer tab from that drawing with different scales.

I want to turnoff 2 layers in one of the VP but have them turned on on the other VP.

View 8 Replies View Related

AutoCad :: Using Layers To Change Viewports

Apr 29, 2013

Attached is file.

Model Space: has two objects one being a circle and one a rectangle

Paper Space: I have created two layers title "Area 1 Viewport" and "Area 2 Viewport". My goal is to get it so I can "Area 1" layer and the circle appears but when I turn it off that viewport goes away. Then when I apply "Area 2" viewport the rectangle appears but when turned off the viewport goes away. Currently the frame of the viewport is assigned to the layer but the objects still stay.

View 7 Replies View Related

AutoCAD 2013 :: Freeze Layers In Certain Viewports

Oct 11, 2013

I'm using Autocad 2013, and im trying to freeze layers in certain viewports, but the VP freeze/thaw button is greyed out for all my layers and wont allow me to freeze anything. I dont want to use the New viewport freeze/thaw button.

View 1 Replies View Related

AutoCAD 2013 :: Freezing Layers In Viewports

Feb 6, 2013

I'm working with alot of overlapped x-refs and every layer for each x-ref will come in to the drawing. When I'm using the viewports I need to freeze all the layers for some x-refs that don't need to show in that viewport. Since each x-ref has well over 70 layers I am wondering if there is a simple way to freeze all the x-ref layers in the viewport.

View 3 Replies View Related

AutoCad :: Unable To See All Layers From Xref In Viewports

Mar 25, 2012

Im having some problems with a file im working on. I have a file with an x-ref, when im in the model space i can see all layers i want to see, but in the viewports i created in the file i noticed that 2 layers(layers that i really need to see) dont show up. Ive checked the freeze/thaw, on/off, plot/no plot settings, layerstate, i tried creating a new layer in the x-ref file(the parent file) and putting these things that dont show in the new layer but nothing changes. I'll attach two images for the layer settings.

So, whats missing in the viewports is the cyan text where it says "Klassisk sal"and some other text surrounding it and the cyan box with the text "Mko 12.002". The highlighted layers in the layer properties window are the associated with these items

Viewport.jpg

here is the layout, the layout is active and again the two highlighted layers are the ones associated with the objects missing.

View 5 Replies View Related

AutoCAD Architecture :: Freezing Layers In Xrefs Within Viewports?

Feb 21, 2011

I have an xrefernced drg , which i print from a layout/paperspace .I freeze certain layers using VPort freeze in layer properties and save the drg whenever i close and reopen the drawing the layers are thawed in the viewport again.

View 2 Replies View Related

AutoCAD 2010 :: VPFreeze New Layers In All Layout Viewports

Aug 23, 2013

I have a drawing file with lots of layouts, some of which have multiple viewports.  I want to create a new layer and use it in just a few viewports.  Is there a way to set the default vpfreeze setting to frozen for new layers?  That way I can just thaw it in a few viewports instead of trying to vpfreeze it in a lot.

LT, C3D 2005 - 2014
XP, Vista, 7

View 1 Replies View Related

AutoCad :: Multiple Viewports Where Layers Frozen To Get Desired Display

Aug 6, 2013

I have a few files with layouts that have multiple viewports where layers were frozen to get the desired display, the drawing was saved, yet everytime the drawing is re-opened those layers are on again. This is creating problems because I am batch plotting many drawings at once. The layers are not locked.

View 4 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Freezes Layers In Viewports But Not In Model Tab

Dec 27, 2013

Here is the lisp I am attempting to use:

(defun c:ada ()(setvar "cmdecho" 0)(command "-layer" "t" "*" "on" "*" "s" "0" "f" "*" "t" "*ex_*" "t" "*all_*" "t" "rev*all*" "t" "*prop_*" "f" "*geo_*" "f" "*util_*" "t" "*grd_*" "t" "rev*grd*" "f" "*z_*" "f" "alt*" "f" "*grd_elev*" "")(command "_vplayer" "f" "*grd_elev*" "c" "t" "*grd_ada_*" "c" "" "") (setvar "cmdecho" 1))

 The purpose is to show the proposed grading plan at a smaller scale so that we can give detailed grading plans to meet City Regulations per ADA codes. I understand that this can be accomplished by blocks and attributes, but when you have hundreds of spot elevations that can become cumbersome and less customizable than mtext. The large scale drawings can not have all of the spots shown or it would be too cluttered. But I want to be able to see all of my elevations when I am working in model space to ensure that all of my leaders and spots move together.

View 9 Replies View Related

AutoCAD 2010 :: How To Turn OFF display Of Layers In Layout Viewports

Aug 20, 2012

I have 2 quick questions:

1- How do I turn OFF the display of Layers in Layout viewports, but they remain ON in the Model?

2- How do I rotate a group of objects to match my orthogonal UCS?

View 2 Replies View Related

AutoCAD 2013 :: Freeze Layers In Xref'd Viewports By Selecting Them In The Viewport

May 8, 2013

In previous versions of Autocad 2008 and earlier you could start a new drawing xref in a drawing then switch to layout and create a viewport that would show the xref.    Then you could click inside that viewport and run the FL (freeze layer) command and selectively freeze layers by clicking on them.

In my current version of Autocad Civil 3D 2010,  when I follow the same steps as above and run the FL (freeze layer) command inside the viewport, the entire layer contents within the viewport freeze as if everything is on that one layer.

I notice that if I pull up the layer manager box and go down the list of xref'd layers and select the freeze in viewport option for each of the layers I need to freeze it will do what I need to have done,  But I'd like to be able to be able to selectively freeze these layers visually within the viewport like I've always been able to do, instead scrolling down a long list of layer names and freezing them that way.

how to do this in Civil 3D 2010?

View 4 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Freeze Layers In Viewports On Named Pages?

Jun 24, 2013

I am in need of a LISP to freeze layers in viewports on named pages. I found the following functions to return the frozen vport, but it only returns the list of already frozen and it only works if the viewport is active; besides just listing the frozen layers isn't enough. I need to be able to supply the page/tab and a list of layers to freeze.

; by Jürg Menzi 1999(DEFUN GetFrozenLaysInVport (/ LayLst) (FOREACH memb(GetMviewInfo) (IF(= (CAR memb) 1003) (SETQ LayLst (CONS (CDR memb) LayLst)) ) ) (REVERSE LayLst))(DEFUN GetMviewInfo (/ ActVpt CurSet IDX RetVal TmpVal) (SETQIDX TActVpt (CAAR (VPORTS)) ) (IF (OR(= ActVpt 1)(= (GETVAR "TILEMODE") 1) ) (SETQ RetVal nil) (PROGN (SETQ CurSet (SSGET "X" '((0 . "VIEWPORT")))) (WHILE IDX(SETQ TmpVal (ENTGET (SSNAME CurSet 0) '("ACAD")))(IF (= (CDR (ASSOC 69 TmpVal)) ActVpt) (SETQIDX nilRetVal (CDR (ASSOC "ACAD" (CDR (ASSOC -3 TmpVal)))) ) (SETQ CurSet (SSDEL (SSNAME CurSet 0) CurSet))) ) (SETQ CurSet nil) ) ) RetVal)

Is it possible to provide the page/tab name and a list of layers as aguments to a subfunction that could either activate the viewport and freeze a list of layers, or simply freeze the layer list for the named page's/tab's corresponding vport.

Important: most of my pages/tabs contain at least two vports. The largest of the two vports is the only one I wish to change, but if the layer list is frozen on all vports (per page/tab) it will make no difference because the smaller vport only requires that layer 0 is visible.

View 6 Replies View Related

AutoCad :: Viewports Automatically Rescaling When Clicking In Other Viewports - 2012

Sep 4, 2012

I have just installed 2012 and have drawn a 3d model. In paperspace i have a couple of viewports , all nicely set out at 1:5 scale. then i click in another viewport and bam, all the other viewports change scale (zoom out) and orientation. is there some system variable that i have overlooked?

View 9 Replies View Related

AutoCad :: Layout With Multiple Viewports To DWG With Viewports Flattened Out

Aug 23, 2011

I have a lot of sheet DWGs with a single layout in each. The layouts have several viewports into model space.

Is there a way to export out the layout tab where the viewport contents have been converted and placed into the layout space?

Ideally, I'm hoping to basically convert the viewport heavy paperspace into a dumb model space layout.

View 3 Replies View Related

AutoCAD .NET :: Viewports That Allow Freeze Vs Viewports That Do Not

Oct 21, 2011

The code I'm using is supposed to go through all of the layouts and freeze the specified layer in the single viewport that is defined on that layout.  It works for some viewports, but not for others.  A "List" of the objects show the viewports are the same.  I have a LiSP routine that gets me more info about selected objects.  The first is a viewport that does not freeze the specified layer, the second does freeze the layer.  Here is the code I'm using:

Public Sub FreezeNewLayerInVPs(ByVal pageNumber) Dim doc As Document = Application.DocumentManager.MdiActiveDocumentDim db As Database = doc.Database Dim layerToFreeze As String = "DETAIL_" & pageNumber Using tr As Transaction = db.TransactionManager. Start Transaction( )Dim layTable As LayerTable = DirectCast(tr.GetObject(db.LayerTableId, OpenMode.ForRead),
[code]...

View 1 Replies View Related

AutoCad :: True North Construction

Apr 12, 2012

I am making use of some of the building models created using CAD. Since the models are added to virtual earth, I would like to get clarified for few of my doubts,

1) say, when the buildings of true representation on ground is made, whether any reference axis with respect to ground is considered to build the model?
2) How the scaling is made for the same model with respect to ground?

View 0 Replies View Related

AutoCad :: Setting 0 Degrees As North?

Apr 11, 2013

my default 0 degrees is set at east. setting 0 degrees as north, south etc

View 6 Replies View Related

AutoCAD 2013 :: North Arrow Libraries

Apr 2, 2013

I am looking for a North Arrows block files that I can choose from. I have been searching in my library (local drive) but I did not get any. Is there any place that I can find them?

View 1 Replies View Related

AutoCAD Civil 3D :: Can't Load Custom North Arrow

Jul 5, 2013

In some templates I can't load a custom North arrow. AutoCAD can't find block.

The built-in north Arrows works fine. In a standard template from Autodesk there is no problem.

Wich settings should I change so I can select a block?

View 2 Replies View Related

AutoCAD Civil 3D :: Showing North Arrow On Drawing?

May 23, 2012

I would like to show a north arrow on my drawing, but i dont know where north is,

Does autocad know where it is, my site is in a very remote mountaineous area with nothing to reference off on goole earth or maps.

View 5 Replies View Related

AutoCAD Civil 3D :: Invert Direction And Construction North

Apr 20, 2012

How to get my invert labels to reference construction north rather than actual (surveyed) north?

C3D 2012, SP1
Win7-64 bit

View 1 Replies View Related

AutoCad :: Rectangle Is Angled According To North / Not Vertical And Horizontal In MS

Jan 10, 2013

The building plan has been drawn according to North, etc. When I try and draw a rectangle, for example, the rectangle is angled according to North and not vertical and horizontal in the MS.

How do I turn this off. I tried changing VPORT to 0,0 and it rotated the whole drawing with North at the top.

View 5 Replies View Related

AutoCad :: Move North Arrow Symbol To ArcGIS

Sep 4, 2013

After I select the north arrow in my cad drawing what format should I save it as?

View 3 Replies View Related

AutoCad :: Inserting A Scale Bar Under Compass / North Arrow

Aug 28, 2011

I have found 3 installed dynamic scale bars that cad offers that can be inserted onto a map, but i don't like the graphics of the 3 choices.

is there other choices for dynamic scale bars offered somewhere, or do people just build there own?

View 3 Replies View Related

AutoCAD Map 3D :: Creating Map Book Where North Is Rotated In View

Jan 4, 2008

I'm having trouble creating a map book where north is rotated in the view. I've tried using ucsfollow, and the ucs command to rotate the map correctly, but when I try to create the map book the map doesn't show up in the main viewport.

How to rotate the map when creating a map book?

View 9 Replies View Related

AutoCad :: Setting BASE ANGLE To North - Does Not Appear To Work

Nov 4, 2007

If I want North (top) to be my Zero Degrees point (rather than east - to the right) then I go into FORMAT / UNITS which takes me to DRAWING UNITS..I then have a button called DIRECTION...Here is says:

East 0
North 90
West 180
South 270
Other pick/type

Now logic tells me that currently East (to the right) is currently set to 0 degrees (which it is)And that clicking North, should then make North (up) Zero degrees.

I click North, the button shows North has been selected, but none of the values change, and East is still zero degrees.From what I found on these forums, doing this should set North to zero, but it makes no difference.

View 9 Replies View Related







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