AutoCad :: How To Draw Red Line (Arc Between Points In Spherical 4 Side Segment)
Jun 2, 2011
how can i draw this red line in autocad, its an arc from point 1 to point 3 in spherical 4 side segment? point 1 to point 2 to point 3 to point 4 closing the segment at point 1 and point 4 (fused)
View 9 Replies
ADVERTISEMENT
Oct 18, 2012
I must have pushed one or the other button but I don't know which one!
I use CS5 and have now a small arrow on my line segment tool (as shown in the picutres):
Ever since that when i click shift, it just allows me to draw vertical lines, rather than vertical or horizontal.
View 1 Replies
View Related
May 3, 2012
I made a 3D box shape in AutoCAD. I would like to draw a line on one of the surfaces of the box. Also I know you can use the the linear tool under Annotations to display dimensions of 2D lines. But I don't know how to do it so that it that shows the dimension on a vertical axis as shown in the picture below.
View 9 Replies
View Related
Oct 19, 2013
I'm sure this is a simple thing but it's driving me crazy. Every time I draw a line it gets erased as soon as I try to draw the next one.
View 7 Replies
View Related
Sep 9, 2012
I want to draw triangle in segment of polyline in segment direction.
I have target segment and center point of it:
Polyline line = ...
LineSegment3d centerSegment = line.GetLineSegmentAt(centerSegmentIndex);
Point3d centerPosition = centerSegment.MidPoint;
I can find direction of this segment:
Vector3d zaDirection = line.GetLineSegmentAt(centerSegmentIndex).Direction;
Next, I create list of points:
List<Point3d> points = new List<Point3d>();
points.Add(centerPosition);
points.Add(centerPosition.Add(new Vector3d(ZASize, +ZASize, 0)));
points.Add(centerPosition.Add(new Vector3d(ZASize, -ZASize, 0)));
And draw it:
wd.Geometry.Polygon(new Point3dCollection(points.ToArray()));
Ok, I have triangle but... it's not in segment direction, it's X-direction.
I try to rotate it:
points.Add(centerPosition.Add(new Vector3d(ZASize, +ZASize, 0)).RotateBy(0, zaDirection, centerPosition));
But it's not the same as I want.
How I can draw triangle by serment direction?
View 5 Replies
View Related
Jul 31, 2012
I'm trying to figure out the height of my line segment. It has a 1.5 stroke point. How many inches is that?
View 3 Replies
View Related
Feb 14, 2011
I have 2 points and a line given (both points on one side of line)
I want to draw a circle so that it passes through two points and tangent to the given line.
View 9 Replies
View Related
Jan 13, 2014
Here is my situation: I want to draw a vertical line on the left-hand side of my workspace about an inch away (to the right) from the left edge. Then I want to fill up that inch-wide column with a particular color. The end result being that I will have an inch-wide bar of color running vertically down the left side of my project.
I know this is probably really easy to do but it's been a long time since I had a course in Photoshop.
I use PSE 6.
View 6 Replies
View Related
Jul 7, 2012
I have a list with many points is it possible that i can draw a line or polyline on those points using MapCar function.
View 6 Replies
View Related
Jul 13, 2012
Using Photo & Graphics Designer 6, can I draw a straight line between two pre-determined points, eg. X=0, Y=0 to X=100, Y==0?
View 5 Replies
View Related
Oct 25, 2012
Is there a somewhat easy way to draw this blue line, other than manually click on each anchor points at the top of the black lines?
View 32 Replies
View Related
Mar 11, 2012
Can a Lightroom adjustment brush draw a straight line by clicking the start and stop points?
View 8 Replies
View Related
Jan 16, 2013
I would like to know how to draw segment elbow 90 degrees ( segments are not equal ) and create Flat Pattern for each of the segments - using sheetmetal in Autodesk Inventor?
View 9 Replies
View Related
Jun 27, 2013
When i put 2 pictures side by side, if both have a black background, everything fine. When one of the picture have a lighter background, there a white line apear on the edge of the lighter background (see yellow circles on the attached picture).
View 4 Replies
View Related
Feb 21, 2012
I want to draw reinforcement on inclined side but offset command is not working for reinforcement, How to draw equally spaced reinforcement on inclined side? I tried geometric constraint but it also not working for circle.
View 9 Replies
View Related
Oct 9, 2012
I have a subdivision plat that I'm working on with a curved lot line. When I label this particular lot line, Civil 3D labels it like it's two different segments. In other words, instead of labeling the line as a 100 foot long arc with a radius of 100 feet, it labels it as a 60 foot arc and a 40 foot arc. I can't figure out how to combine the two segments.
All of the lots lines were created from polyline objects, and there was no break in the original line work (nor is there any indication of a break in this location when I select it).
View 2 Replies
View Related
Apr 7, 2013
I'm trying to figure a "fast" algorithm to obtain the amount of material (in linear distance) between 2 points within an assembly i.e. if I draw a line between any two points P1 & P2 in an assembly, what is the length of this segment that goes through material and what is the length that goes trough empty space?
For now I'm creating a thin cylinder as a new part, place it with one end at P1 and the other end at P2, calculate the interference volume of this body with the rest of the assembly and divide this number by the total volume of the cylinder. but has some problems:
1. It is VERY slow, and I want to call this function lots of times.
3. Is not accurate due to the finite diameter of the cylinder.
2. If the assembly has some interferences, the result is wrong (accounting same volume more than once)
View 2 Replies
View Related
Jul 3, 2012
I have a bunch of lines that are created with multiple segments. I'd like to annotate the total length. I can't figure out to do this without labelling each segment along the line using Line and Curve commands. How do I get one annotation that only shows the total of all the sements?
View 9 Replies
View Related
Jan 30, 2013
I am trying to create surface elevation labels along a polyline and I am having an issue with the label anchor point. I have created a line label style that uses a reference text to produce the elevation from a specified surface, however when I insert the label the default anchor point for the label is in the center of the line segment and that is where the reference text is taking the surface elevation. I am looking for the elevation of the surface at the start of each line segment, and I do not know how I can make it stop defaulting to the center of the line segment.
Attached is an overview of what my labels look like, where the anchor point is, and the layout properties within my label style. I am using C3D 2012.
View 9 Replies
View Related
Aug 31, 2011
I have to create a hole (extrude) in a wall part in my assembly document where a stack will be installed.
To determine where, I verify if a line segment pass through the wall (XY Plane).
But I get an error with the command: IntersectWithLine
Here's my
Public Function IntersectionPoint(ByVal app As Inventor.Application,
ByVal wp As Inventor.WorkPlane) As Inventor.Point
Dim oTransGeom As Inventor.TransientGeometry = app.TransientGeometry
Dim startPoint As Inventor.Point = oTransGeom.CreatePoint(Me.StartVertex.X,
[Code] ......
View 2 Replies
View Related
Mar 13, 2012
I have a feature line, and a labels table created for it. The table has the following columns: Line or Curve #, Station, Segment Start X, Segment Start Y, Segment Start X, Bearing/Delta, Length, Radius, Grade Ahead.
what code I need for the table to display the station of the feature line at the start of the segment?
I also have an alignment with the same stationing over top of the feature line, but Im not sure how to code a reference text into the table either. I can create an end segment reference text for the plan view labels but even if I copy that code into the labels table it doesn't work.
View 4 Replies
View Related
Apr 25, 2011
Im currently trying to draw a layout for a simple angle iron part using the front, side, and angled view. Its a flat part made of sheetmetal and it will get 1 90* bend in it.
My first question is how do i bend a part in autocad LT 2011? Ive been using autocad for years but ive never had a request for an angled view.
My second question is how would i create a layout using all 3 views and include the info block in the bottom right displaying all the info?
View 9 Replies
View Related
Dec 5, 2011
I have a problem with a recently downloaded version of Inventor. When I start a new drawing all I get is a blank blue screen instead of one with a grid display. If I start a line I can see the cursor change to draw the line but a line does not appear. I don't know if it something with how I installed the program or just system settings.
View 2 Replies
View Related
Jan 22, 2012
How can I draw a straight line without that protractor shaped dotted line following my cursor making it lag and also not snap correctly to the next line? Also, I have noticed that I can't set my user interface to auto cad classic settings. There seems to be no option for it in workspace settings.
View 3 Replies
View Related
Sep 14, 2011
in autocad we use offset commend to draw a parallel line to another line what we should we use in Chief Architect x2
View 1 Replies
View Related
Jun 27, 2012
How to draw a line that STARTS at a perpendicular angle to another line ???
View 4 Replies
View Related
Nov 29, 2012
I'm working whit a LAS points draw an i want cut only a little of space in my draw.i have 500 points in this format and only i need 100.I want delete some LAS points of my draw
View 6 Replies
View Related
Jun 2, 2011
Using autocad 2008. I cant draw a rectangle using 2 points. I don't need a specific size just want to put a box around text. I used to pick a point and then pick point 2 to draw rectangle. On this computer when I use rectangle it ask for length and then width. Is there a system variable that won't let me put in p1 and drag to p2 to make a rectangle?
View 9 Replies
View Related
Sep 5, 2012
is there a way to limit the length of a line segment stay a default length instead of it getting longer as you drag your mouse ? For example in a program called ChemBioDraw you can limit the default length for drawing molecules
View 6 Replies
View Related
May 6, 2013
How do you delete just one segment of a pen tool line? For example, if I draw a square and later I want to delete just one side of the square?
View 4 Replies
View Related
Oct 31, 2012
If I do Transform, Move, 40 40 40 0 Copy it seems to just make another line segment on top of the one I already have. I want to copy it down and to the right continually pressing CTRL+D. I think I am making a simple mistake since I have done this before.
View 4 Replies
View Related