active questions tagged arrow - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T00:20:15Z http://stackoverflow.com/feeds/tag/arrow http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1745986/diagramming-server-connections-in-visio-what-direction-should-arrows-point 0 Diagramming server connections in Visio - what direction should arrows point? frankadelic 2009-11-17T01:08:45Z 2009-11-17T20:59:18Z <p>Suppose I would like to depict data flow between two servers in Visio.</p> <p>I have boxes to represent servers and arrows to represent communication / data flow.</p> <p>In this situation:</p> <ul> <li>Server A always initiates connections to Server B.</li> <li>Server A reads from server B, but does not write.</li> </ul> <p>How would this be depicted? Which way would the arrows point?</p> <p>Is there are convention used for arrows connecting these two servers? Is it based on...</p> <ul> <li>Which server initiates connections to the other</li> <li>Whether the operation is read, write, or both</li> </ul> http://stackoverflow.com/questions/1563285/how-to-draw-an-arrow-in-silverlight 0 How to draw an arrow in Silverlight. Joseph Liberty 2009-10-13T22:23:23Z 2009-10-14T16:34:38Z <p>I need to draw an arrow between controls in a canvas. Currently I'm using the Line object but it doesn't have a way to draw a triangle at the end of the line.</p> <p>This is roughly what I need:</p> <pre><code>[TextBox] &lt;----- [Button] </code></pre> <p>I was trying to subclass Line and add a couple of lines at the end but the class is sealed.</p> <p>How would you build a custom control that draws an arrow between X1,Y1 and X2,Y2?</p> <p>Thanks</p> http://stackoverflow.com/questions/1538084/edge-direction-in-network-diagrams 3 Edge direction in network diagrams toaster 2009-10-08T14:13:55Z 2009-10-08T19:22:04Z <p>When I draw a network diagram with, say, browser A communicates with http-server B which talks to a database C, I draw the nodes for A, B and C and edges between A and B and between B and C. Then I want to materialize the flow direction by adding arrows. On which side should I place the arrowheads?</p> <p><img src="http://www.forteresse.net/site/stack-overflow-question/image" alt="alt text" /></p> <p>Variant 2 is the intuitive one, but IMHO, the variant 1 is the correct one since the data is really flowing from B towards A.</p> <p>I want to indicate that the browser is accessing the http-server for reading a web page, for example A is browsing <a href="http://www.xyz.com" rel="nofollow">http://www.xyz.com</a></p> <p>So, are there any references to help me on this?</p> http://stackoverflow.com/questions/1471998/expression-blend-3-sliding-content 0 Expression blend 3 Sliding content? judi 2009-09-24T14:17:47Z 2009-09-24T14:26:34Z <p>Hi </p> <p>I'm trying to create an effect whereby when I click an arrow my content slides to the left and dissapears thus leaving an new set of content in its place. Much like the way wp-coda works <a href="http://wordpress.bustatheme.com/coda/" rel="nofollow">http://wordpress.bustatheme.com/coda/</a>, but i wan to do this in expression blend which uses silverlight.</p> <p>Thanks Judi</p> http://stackoverflow.com/questions/1344867/java-3d-arrow-problem 0 Java 3D Arrow problem Frank 2009-08-28T03:20:29Z 2009-08-28T03:20:29Z <p>I have the following Java class that draws a 3D arrow in space, but there are two problems,I don't quite know how to fix them.</p> <pre><code>import javax.swing.*; import java.awt.Frame; import com.sun.j3d.utils.applet.MainFrame; import com.sun.j3d.utils.universe.*; import com.sun.j3d.utils.geometry.*; import javax.media.j3d.*; import javax.vecmath.*; public class Arrow extends JApplet { public static final long serialVersionUID=26362862L; public static TransformGroup createArrow(float ArrowDia,Vector3f stPt,Vector3f endPt,Color3f Color,String Name) // Creates an 3D arrow between point stPt and endPt { double lenSq=(stPt.x-endPt.x)*(stPt.x-endPt.x)+(stPt.y-endPt.y)*(stPt.y-endPt.y)+(stPt.z-endPt.z)*(stPt.z-endPt.z); float ArrowLen=(float)Math.sqrt(lenSq); float ArrowHeadLen=12.0f*ArrowDia; float ArrowHeadDia=3.0f*ArrowDia; float ArrowTailDia=ArrowDia; float AroowTailLen=0.5f*ArrowDia; float CylenderLen=ArrowLen-ArrowHeadLen-AroowTailLen; Transform3D caTransform=new Transform3D(); Matrix4d RotMat=new Matrix4d(); // Rotation Matrix for whole arrow (cylinder + two cones) if (stPt.equals(endPt)) caTransform.setIdentity(); else { Vector3d unitVect=new Vector3d((endPt.x-stPt.x),(endPt.y-stPt.y),(endPt.z-stPt.z)); unitVect.normalize(); /* X-axis rotation Y-axis rotation Z-axis rotation ------------------------------------------------------------------------- 1 0 0 0 cosT 0 sinT 0 cosT -sinT 0 0 0 cosT -sinT 0 0 1 0 0 sinT cosT 0 0 0 sinT cosT 0 -sinT 0 cosT 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 */ double angle_x=Math.acos(unitVect.y); // find rotation about X axis double angle_y=-0.5*unitVect.x*Math.PI; // find rotation about Y axis if (unitVect.z!=0.0) angle_y=Math.atan(unitVect.x/unitVect.z); if (unitVect.z&lt;=0) angle_y+=Math.PI; // determine the transform matrix for X.Y axis rotation and translation to the midpoint of the line segment. double A=Math.cos(angle_x); double B=Math.sin(angle_x); double C=Math.cos(angle_y); double D=Math.sin(angle_y); RotMat.m00=C; RotMat.m01=B*D; RotMat.m02=A*D; RotMat.m03=stPt.x+0.5f*(endPt.x-stPt.x); RotMat.m10=0.0; RotMat.m11=A; RotMat.m12=-B; RotMat.m13=stPt.y+0.5f*(endPt.y-stPt.y); RotMat.m20=-D; RotMat.m21=B*C; RotMat.m22=A*C; RotMat.m23=stPt.z+0.5f*(endPt.z-stPt.z); RotMat.m30=0.0; RotMat.m31=0.0; RotMat.m32=0.0; RotMat.m33=1.0; } Appearance caAppearance=new Appearance(); // Apperance for the arrow ColoringAttributes caColor; caColor=new ColoringAttributes(); caColor.setColor(Color); caAppearance.setColoringAttributes(caColor); caTransform.set(RotMat); TransformGroup caTransformGroup=new TransformGroup(caTransform); Node cArrowCylinder=new Cylinder(ArrowDia,CylenderLen,caAppearance); cArrowCylinder.setName(Name); Transform3D arrowHeadTransform=new Transform3D(); arrowHeadTransform.set(new Vector3f(0.0f,0.5f*CylenderLen+0.5f*ArrowHeadLen,0.0f)); TransformGroup arrowHeadTransformGroup=new TransformGroup(arrowHeadTransform); Transform3D arrowTailTransform=new Transform3D(); arrowTailTransform.set(new Vector3f(0.0f,-0.5f*CylenderLen-0.5f*AroowTailLen,0.0f)); Transform3D arrowTailTransformTmp=new Transform3D(); arrowTailTransformTmp.rotZ(Math.PI); arrowTailTransform.mul(arrowTailTransformTmp); TransformGroup arrowTailTransformGroup=new TransformGroup(arrowTailTransform); Node ArrowHeadCone=new Cone(ArrowHeadDia,ArrowHeadLen,1,caAppearance); ArrowHeadCone.setName(Name); Node ArrowTailCone=new Cone(ArrowTailDia,AroowTailLen,1,caAppearance); ArrowTailCone.setName(Name); arrowHeadTransformGroup.addChild(ArrowHeadCone); arrowTailTransformGroup.addChild(ArrowTailCone); caTransformGroup.addChild(arrowHeadTransformGroup); caTransformGroup.addChild(arrowTailTransformGroup); caTransformGroup.addChild(cArrowCylinder); return caTransformGroup; } static BranchGroup create_Arrow_SceneGraph() { BranchGroup SceneRoot=new BranchGroup(); SceneRoot.addChild(Arrow.createArrow(0.01f,new Vector3f(-0.8f,0.0f,0.0f),new Vector3f(0.8f,0.0f,0.0f),new Color3f(0.0f,0.8f,1.0f),"1")); SceneRoot.addChild(Arrow.createArrow(0.01f,new Vector3f(0.0f,-0.8f,0.0f),new Vector3f(0.0f,0.8f,0.0f),new Color3f(0.0f,0.8f,1.0f),"2")); SceneRoot.addChild(Arrow.createArrow(0.01f,new Vector3f(0.0f,0.0f,-0.8f),new Vector3f(0.0f,0.0f,0.8f),new Color3f(0.0f,0.8f,1.0f),"3")); SceneRoot.addChild(Arrow.createArrow(0.01f,new Vector3f(0.35f,0.25f,0.0f),new Vector3f(0.35f,-0.25f,0.0f),new Color3f(0.0f,0.8f,1.0f),"4")); return SceneRoot; } public static void main(String[] args) { Arrow scene=new Arrow(); Canvas3D jCanvas3D=new Canvas3D(SimpleUniverse.getPreferredConfiguration()); scene.getContentPane().add(jCanvas3D); BranchGroup jScene=create_Arrow_SceneGraph(); jScene.compile(); SimpleUniverse jVirtualUniverse=new SimpleUniverse(jCanvas3D); jVirtualUniverse.getViewingPlatform().setNominalViewingTransform(); jVirtualUniverse.addBranchGraph(jScene); Frame jFrame=new MainFrame(scene,600,600); } } </code></pre> <p>&lt;1> When the starting point is 0 and end point is also 0, there is an error message.</p> <p>&lt;2> When ArrowDia gets larger, the arrow's starting point is moving away from where it is intended. You can see this effect when you draw two arrows starting from the same point, but with two different ArrowDia values, the bigger ArrowDia is, the further it is from the intended starting point, the arrow should start from exactly the same point no matter how thick it gets.</p> <p>Anyone knows how to fix them ?</p> http://stackoverflow.com/questions/920481/arrow-keys-and-changing-controls-focus-hang-the-app 0 arrow keys and changing control's focus hang the app sthay 2009-05-28T11:50:01Z 2009-08-26T13:00:01Z <p>I have a usercontrol that contains a flowlayoutpanel (topdown flow) with a bunch of radiobuttons. The control exposes a CheckedChanged event that fires whenever one of the radiobuttons's check changed.</p> <p>My form contains the usercontrol and a textbox. I subscribe the the usercontrol's CheckedChanged event and depending on which radiobutton gets checked, I either disable the textbox or put a focus inside the textbox.</p> <p>All this works fine with mouseclick when changing the radiobutton's check state. However, this will hang indefinitely when using the arrow keys. I don't understand why the difference.</p> <p>Please help before I go crazy...</p> <p>The following are steps to reproduce the behavior I'm seeing:</p> <ol> <li>Create a usercontrol and drop a flowlayoupanel control and set its FlowDirection = TopDown. Then add two radiobuttons to the flowlayoutpanel.</li> <li><p>Provide an event handler in the usercontrol</p> <p>public event EventHandler CheckedChanged { add { radioButton2.CheckedChanged += value; } remove { radioButton2.CheckedChanged -= value; } }</p></li> <li><p>Create a windows form and drop the above user control. Add a textbox and set Enabled to False. Subscribe to the usercontrol's CheckedChanged event as followed</p> <pre><code> private void userControl11_CheckedChanged(object sender, EventArgs e) { textBox1.Select(); } </code></pre></li> <li><p>Run. Notice that if you use the mouse to click between the radiobuttons, thing works fine; but it will crash if you use the up/down arrow keys.</p></li> </ol> http://stackoverflow.com/questions/1224808/how-to-remove-visual-c-expand-menu-arrow 1 How to Remove Visual C++ "Expand Menu" Arrow? Nathan Fig 2009-08-03T21:51:24Z 2009-08-06T11:34:07Z <p>When creating menus with submenus in Visual C++, I find that submenus begin as arrows that I must click to expand to see their contents. Is there a way (programmatically) to have the submenus pop-out already expanded (with no arrow to click)? </p> <p>Here is an image of what I am talking about, before and after clicking aforementioned arrow: <img src="http://www.postimage.org/Pq1qL6rr-94b725163c3880972bb5b7518d00732b.jpg" alt="screen shot" /> <a href="http://www.postimage.org/image.php?v=Pq1qL6rr" rel="nofollow">also here</a></p> http://stackoverflow.com/questions/941976/drawing-an-arrow-on-a-line-object-in-vb6 0 Drawing an arrow on a line object in VB6 Dmatig 2009-06-02T21:19:06Z 2009-06-03T04:21:52Z <p>Using VB6, i have a line object that can be dragged around at its end points by the user, and i'd simply like an arrow in the middle of it to show the direction of the line.</p> <p>Is there a simple way to do this?</p> http://stackoverflow.com/questions/222826/silverlight-keydown-event-doesnt-fire-for-arrow-keys 0 silverlight keydown event doesn't fire for arrow keys Mike Blandford 2008-10-21T18:01:02Z 2009-01-22T17:10:14Z <p>I have a canvas inside a scrollview. I attached a keydown event handler to the scrollview. For most keys, the handler gets called. </p> <p>However, for the arrow keys, the handler does not get called. Instead, the scrollview gets scrolled in the appropriate direction.</p> <p>I also attached a keyup handler to the scrollview and the keyup does get called for the arrow keys.</p> <p>Is there any way to get the arrow key down event here?</p> http://stackoverflow.com/questions/402448/access-div-contents-using-up-and-down-arrow-keys-using-javascript 0 Access Div Contents using Up and Down Arrow Keys using javascript Sandhurst 2008-12-31T07:05:23Z 2008-12-31T10:09:00Z <p>I have a Div Tag which contains 4 child Div Tags</p> <pre> <code> &lt;Div id="Parent"> &lt;div id="childOne">ChildOne &lt/div> &lt;div id="childOne">ChildTwo &lt/div> &lt;div id="childOne">ChildThree &lt/div> &lt;div id="childOne">ChildFour &lt/div> &lt/Div> </code> </pre> <p>Now I would like to access these Child Div's using up and Down Arrow Keys through Javascript The above div is show on click of a TextBox.I want that the user can choose any of the child div and its selected value appears in the TextBox. I have acheived the end result by attachinh onClick event to each childDiv.</p> http://stackoverflow.com/questions/105602/need-refactoring-ideas-for-arrow-anti-pattern 6 Need refactoring ideas for Arrow Anti-Pattern showens 2008-09-19T21:02:31Z 2008-09-28T22:22:25Z <p>I have inherited a monster.</p> <p>It is masquerading as a .NET 1.1 application processes text files that conform to Healthcare Claim Payment (ANSI 835) standards, but it's a monster. The information being processed relates to healthcare claims, EOBs, and reimbursements. These files consist of records that have an identifier in the first few positions and data fields formatted according to the specs for that type of record. Some record ids are Control Segment ids, which delimit groups of records relating to a particular type of transaction.</p> <p>To process a file, my little monster reads the first record, determines the kind of transaction that is about to take place, then begins to process other records based on what kind of transaction it is currently processing. To do this, it uses a nested if. Since there are a number of record types, there are a number decisions that need to be made. Each decision involves some processing and 2-3 other decisions that need to be made based on previous decisions. That means the nested if has a lot of nests. That's where my problem lies.</p> <p>This one nested if is 715 lines long. Yes, that's right. Seven-Hundred-And-Fif-Teen Lines. I'm no code analysis expert, so I downloaded a couple of freeware analysis tools and came up with a McCabe Cyclomatic Complexity rating of 49. They tell me that's a pretty high number. High as in pollen count in the Atlanta area where 100 is the standard for high and the news says "Today's pollen count is 1,523". This is one of the finest examples of the Arrow Anti-Pattern I have ever been priveleged to see. At its highest, the indentation goes 15 tabs deep.</p> <p>My question is, what methods would you suggest to refactor or restructure such a thing?</p> <p>I have spent some time searching for ideas, but nothing has given me a good foothold. For example, substituting a guard condition for a level is one method. I have only one of those. One nest down, fourteen to go.</p> <p>Perhaps there is a design pattern that could be helpful. Would Chain of Command be a way to approach this? Keep in mind that it must stay in .NET 1.1.</p> <p>Thanks for any and all ideas.</p>