AutoCad :: How To Change Elevation Of Object
Jul 18, 2012
Its been a while since I have needed to change the elevation of a object. The problem is that does not list the elevaation in the Properties manager on my quick access tool bar or in QP window. I have used it in the past but now its gone. I an using AutoCAD 2011. Ive tried to use the CUI to find it but no luck.
View 5 Replies
ADVERTISEMENT
Dec 19, 2012
When I snap a point to an object, the point takes on the elevation of the object. I would rather the point's elevation stay as is.
-changing osnapz variable
-latest civil 3d service pack
A few weeks ago I did not have this problem but once my computer was switched to the company's global server and c3d was reinstalled the problem appeared. Furthermore (post switchover), when a colleage of mine prepared a simple test drawing with just a line and a point, he was able to snap to that line without the point changing elevation. When he sent that drawing to me and I tried snapping the point to the object, the same problem occured with the point taking the elevation of the line object. I suspect it is a system variable issue
View 7 Replies
View Related
Apr 16, 2012
i have some existing drainage pipe and structures in a base plan that i need to change the invert (which is the easy part) and the top elevation to the existing top elevation that does not meet the minimum presect in civil 3d 2012 is there a way to change these min. to match my exisitng elevation for example i have a catch basin invert is 15.45 top is 17.56 with a 18" rcp the cover will be less than 12" and i need to change this.
View 3 Replies
View Related
Jun 20, 2013
Any way to label the elevation of an object where it is picked? For example, I'd like to be able to pick on the node of a feature line or 3D polyline (or any object really) and have a label placed that displays the elevation of the object at the point where it was picked. This could appear similar to the surface spot elevation label, but instead of getting it's elevation from a surface, it would come from the object where picked.
Alternatively, any way to create a label style, perhaps using the Note label, to display something like this? I don't even care if it is dynamic or not, static would be fine. However, I do need it to scale innovatively . Tool Pac has a feature that does this, but the label is just a polyline and text that is not annotative.
View 4 Replies
View Related
Mar 18, 2013
I have an Object ARX application where I consult a TIN surface for elevation samples. I need several thousand point's elevations in a straight line.
I have the surface declared as
CComQIPtr<IAeccTinSurface> mTINSurface;
And given coordinates (x,y) I can easily and successfully find the elevation using
//x and y are given double valuesdouble z;HRESULT result = mTINSurface->FindElevationAtXY(x, y, &z);
//+error treatment
This, however, takes a lot of time when I have to do it thousands of times inside a for-loop varying the x-coordinate. Reading the documentation on IAeccSurface I found the Sample Elevation method (I don't paste the link here, it's pointing to 'invalid HTML' and forbidding me to post). In the hopes of improving performance, this is what I tried:
SAFEARRAY* safearray;SAFEARRAYBOUND bound;bound.lLbound = 0; //zero-basedbound.cElements = number_elements; //does this define the number of samples?safearray = SafeArrayCreate(VT_I8, 1, &bound); //zero based, safe array of X,Y,Z doubles
CComVariant variant(safearray);variant.vt = VT_ARRAY | VT_I8; //type: safe array of doubleHRESULT result = mTINSurface->SampleElevations(x,y,n_x,y,&variant); //sample in line
This is what I took from the description given by the documentation; that the last parameter should be a "VARIANT containing a zero based, one dimensional safe array of X, Y, Z values. ". My problem is that 'result' is always E_FAIL - and I'm not sure why - and 'safe array' is filled with zeroes.
I have the following questions:
Am I passing the right parameters? I have little experience with VARIANT and SAFE ARRAY types.Does the entire Sample Elevation operation fails whenever a single elevation cannot be found? (I have sections without elevation information in the surface - I'm sure the first point (x,y) DOES have a valid elevation value, though). Would I really see performance gain by using Sample Elevation instead of multiple FindElevationAtXY, as I assumed?When calling Sample Elevation, I'm not entirely sure how the sampling is considered. Does the method recognize the size of the array and divides the distance between the initial point and ending point equally, resulting in that many samples?
View 3 Replies
View Related
Jul 2, 2012
Is there a way to make 3d view of an object ( say a box) from its plan and elevation? I'm requesting you to all to get a solution.
View 9 Replies
View Related
Mar 19, 2013
I have an ObjectARX application where I consult a TIN surface for elevation samples. I need several thousand point's elevations in a straight line. Initially, I was making thousands of FindElevationAtXY calls, but that proved to be somewhat slow, so I searched and found SampleElevation in the documentation and was hoping it'd provide me with performance gain.
I had some problems, due to my inexperience with VARIANT and SAFEARRAY types, but now I get what seems to be correct results when passing an initial and ending point. Here's a code snippet of my call, which succeeds and gives me the correct elevations;
HRESULT result = mTINSurface->SampleElevations(x,y,n_x,y,&variant); //sample in line
Note that I'm sampling a line along the x-axis (y constant).
The problem i'm facing is that the number of samples along the line provided by the method is far smaller than I expected. I need thousands of points along this line (in fact, I want all points with exact round x-coordinates), and no matter what size I provide for the safe array of doubles given by 'variant', I get only a few hundred points. Furthermore, I've checked and the offset between any two points in the resulting sample is not constant, nor are they the same when I sample a different line (increase y coordinate by one).
Here are my questions: Why are these points chosen by the method - I mean, are they chosen because they are somehow 'significant'?Is there a way to specify the number of points I want along this line?Would it be at all possible to determine a constant offset for the samples (i.e., I want coordinates at specific points x-units apart from each other)?
View 3 Replies
View Related
Nov 26, 2012
I'm running Architecture 2013. When creating an elevation object from a 3D model, the hidden lines are not being removed. I've never seen this before, though I have been using Architecture and ADT for years. I've recently upgreaded from 2009 to 2013, and VOILA!
Hidden lines not removed from elevation and section objects. I've tried various tests, to no avail.....
View 5 Replies
View Related
Dec 12, 2013
Is there a setting I can change so if I am drawing an object (line, polyline, etc.) if I am snapping to a contour line, the objects will NOT take on the elevation of the contour line?
View 3 Replies
View Related
Sep 1, 2011
how to change the elevation of each vertex on a polyline so that each vertex has a different value. The way I attempted this in the past was to click on polyline, click properties and give each vertex the required elevation. However when I looked back at the values I noticed that every vertex had the same value as the last elevation value entered. is it something to do with ensuring polyline is 3D?
View 2 Replies
View Related
Apr 13, 2013
I need to draw a polyline (or spline) in the XY-plane, followed by a vertical segment before continuing in the XY-plane again. The challenge is working out the vertical part while still in the top view. There's no way to change its elevation on the fly that I know of.
View 2 Replies
View Related
Dec 18, 2012
I am trying to create a property definition that will display the elevation of a space object. I looked through the automatic properties and did not find anything that looked like the elevation.
I have tried the following but was unable to achieve any success.
RESULT="--"
On Error Resume Next
Set AcadApp = GetObject(, "AutoCAD.Application")
Set Obj = AcadApp.Activedocument.Objectidtoobject("[ObjectID]")
RESULT = Obj.elevation
That formula does work if i swap elevation with say height, width,length or any of the properties found in the automatic property list that are a single word. I know the elevation is there I just don't know how to access it.
View 2 Replies
View Related
Jun 22, 2012
Is there a way to change or create a new scheme (banding) by elevation? For eg. I would like to use only a range of grey no other colors.
View 6 Replies
View Related
Aug 22, 2013
I assume nobody has been able to create a parametric part used for storm pipe networks that can have the pipes attached to a point within the structure other than the insertion, or have the elevation read from a point other than the insertion.
With that in mind, we are trying to develop a tool that would allow us to pick a strucutre, and set its "rim" elevation to a point on a proposed surface that is not at the insertion of the strucure. I am decent with lisp, but have not attempted to gather info from random points on civil ojects.
View 9 Replies
View Related
Aug 28, 2012
I'm looking to change an elevation of a survey point within a drawing. I can see where it is possible to manually unlock the points from the Survey Database to allow the user to edit the point. I'm not seeing a method or property in the API Help for 2013 to do the unlocking with code.
Also is it possible to convert a Survey Point to a regular Cogo Point through the code? Or do I have to delte the point and then recreate it as a COGO point? I think this will be my work around if the above doesn't work.
View 5 Replies
View Related
May 21, 2012
Trying to change the position of the "elevation" labels on the horizontal axis. They come default as being inside the profile and i want them shown on the outside of the profile box.
View 3 Replies
View Related
Mar 15, 2012
How to change the number of decimal places of the elevation of points?
as the points are labeled with their elevations, I couldn’t find how the number of the decimal places of the elevation be chosen. In this case, I wanted to let the number of the decimal places to be zero.
How to set the number of the decimal places to be zero or 1, for example? how to sepcify it height (size)?
Screenshot below.
View 6 Replies
View Related
May 7, 2012
The defaul label style for the Elevation of points is set to 3 decimal places. We are trying to change the elevation display to 2 decimal places. We have tried the directions in the following discussion: [URL].......
Which is:
Toolspace
->Settings
-->Drawing name
--->Edit Drawing Settings
---->Ambient Settings
----->Elevation
------>Precision -> We modify from 3 to 2 decimal places.
It does not modify the display settings.
Also:
Toolspace
->Settings
-->Drawing
--->Point
---->Label Styles
----->(right-click) Edit label styles
------>Layout
------->Text
-------->Contents
--------->click on the "..." (three points) button
(Open "Text Component Editor - Contents"
--------->Select Point Elevation in the driop down list.
---------->Precision: Set to 0.01
------------>Ok, Apply, etc...
This does not seem to work either.
View 3 Replies
View Related
Jun 11, 2013
How do I model (or calculate) the fewest welds/fittings required to change angle and elevation in a pipe run, as shown in Option1 below.
For this example the constants are: 8" standard steel pipe, one of the fittings is a standard butt weld 45 (12" radius), bend angle is 70 degrees, and the elevation change is 9". The custom fitting is cut from a standard 8" long radius 90.
Note: Option2 is just shown for reference, I'm only interested in solving Option1
Bend with Elevation change.gif
View 9 Replies
View Related
Jul 11, 2013
I am trying to create an elevation label that will give me the spot elevation followed by the letters "TC" and then on the line below subtract 4 inches from the elevation followed by the letters "BC". It's easy enogh to add the letters but the simple equation of elevation - 4 inches eludes me.
View 3 Replies
View Related
Oct 17, 2013
Mleader arrow head didn't change size when change the scale on Object property?
The Arrow head size didn't change corresponding to the scale, i included the pic below, the top picture, the arrow head was set at .18" but was really small when i plot out, so i wanted to make it bigger, when i changed to .50" or .75" or even 1" the arrow head became even smaller than .18". Only when .18" than the arrow side is legible
Mleader.jpg
View 9 Replies
View Related
May 22, 2013
Why there is no infill when there is a hight elevation change? the path is a "building pad", and I'm pretty sure normally it's filled with dirt....Did I do something with the site setting?
View 4 Replies
View Related
Mar 11, 2010
Is there a way to change the elevation of the cut line for an individual stair without changing the cut line for the entire view? The only way I know change the cut line is thru View Properties > View Range > Cut Plane.
View 7 Replies
View Related
Apr 4, 2012
Is there any way to change the referenced surface on a Surface Elevation Label. I can see the surface in the properties but cannot change it.
C3D 2011
View 1 Replies
View Related
Aug 6, 2012
I got a simple question about the creation of copies of an object. Is it possible to have the objects in the mirroring of an object change with the object used as reference for mirroring?
If there is no function to do this directly is there a way to do it via Ilogics to update the mirrored objects? If possible even by deleting and creating a new the mirroring yet not manually but by i logic?
- 2500K @ 4.2Ghz- 8GB - Radeon7970 -
- Xeon 1230V2 @ stock Ghz- 32GB - Quadro 2000 -
View 2 Replies
View Related
Sep 9, 2013
I would like to change current WCS to the object's UCS.
In AutoCAD I manually do this:
a) WCS -> OBject.
b) I'm selecting object;
c) PLAN.
I wrote this
if (sourceObject is Entity) {
Entity ent = (Entity)sourceObject as Entity;
Point3dCollection pts = new Point3dCollection();
ent.GetStretchPoints(pts); Point3d pt = pts[0];
double viewsize = (double)Application.GetSystemVariable("VIEWSIZE");
[Code]....
how to set current coordinate system to the object's UCS?
View 1 Replies
View Related
Jan 28, 2012
how to change coordinates of an objects in autocad 2009? for example i have a drawing and i don't want to move the drawing, instead i select single object and make zero positions (X,Y,Z) for this object default.
View 4 Replies
View Related
Apr 15, 2011
When I press/pull a shape into a 3d object it turns out black like this, how do I get it to a lighter shade so that I can see what I'm doing?
View 1 Replies
View Related
Aug 18, 2012
According to this [URL] article I tried to add context menu to my object:
ContextMenuExtension nodeContextMenu = new ContextMenuExtension();
....
Application.AddObjectContextMenuExtension(RXClass.GetClass(typeof(DBPoint)), nodeContextMenu);
Next, I found selected object:
private static ObjectId GetSelectedObject()
{
Document doc = Application.DocumentManager.MdiActiveDocument;
Editor ed = doc.Editor;
[Code] ........
Ok, I found it and tried to change properties of selected object:
using (Transactiontx = db.TransactionManager.StartTransaction())
{
DBPoint point = tx.GetObject(selectedObject, OpenMode.ForWrite) asDBPoint;
At this line Autocad has been crashed. This line works if I open object ForRead, but I can't open it ForWrite or call UpgradeOpen. Is it possible to change object from context menu?
View 3 Replies
View Related
Mar 18, 2013
Is there a way to change linetypes within a certain object?
EXAMPLE:
I want to show hidden lines under another object.
So far, what I do is trim the existing lines and draw new ones with a new layer.
View 3 Replies
View Related
May 30, 2009
I cannot change the color of any object in any drawing file from the properties manager or color command. I can change the color through the layer manager by assigning a new color to that layer, but cannot override the ByLayer and ByBlock settings with the object properties. The color drop down is simply grayed out. I am using Autocad lt 2006.
View 7 Replies
View Related