User DJClayworth - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T12:22:11Z http://stackoverflow.com/feeds/user/19276 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1631091/java-double-to-string-conversion-without-formatting/1631625#1631625 0 Answer by DJClayworth for Java Double to String conversion without formatting DJClayworth 2009-10-27T15:30:52Z 2009-10-27T15:30:52Z <p>If what you are storing is an ID (i.e. something used only to identify another entity, whose actual numeric value has no significance) then you shouldn't be using Double to store it. Precision will almost certainly screw you.</p> <p>If your database doesn't allow integer values then you should stored IDs as strings. If necessary make the string the string representation of the integer you want to use. With appropriate use of leading zeros you can make the alphabetic order of the string the same as the numeric order of the ints.</p> <p>That should get you round the issue.</p> http://stackoverflow.com/questions/1452864/how-to-rotate-a-picture-using-jogl/1533205#1533205 0 Answer by DJClayworth for How to rotate a picture using jogl ? DJClayworth 2009-10-07T17:54:44Z 2009-10-07T17:54:44Z <p>I'm assuming that you are drawing a 3D scene and want to change it's orientation, rather than having a 2D image which you wish to rotate.</p> <p>The short answer is that it takes place in two parts. You need to store an orientation of your scene as a 4x4 matrix (homogeneous matrix - search for it if you don't know what that is). You first need to write code that translates a mouse drag into a change of that 4x4 matrix. So when the mouse is dragged up apply an appropriate rotation or whatever to the matrix.</p> <p>Then you need to redraw the scene, but using the new transformed 4x4 matrix. Use glMatrixMode to specify which matrix (use either GL_PROJECTION or GL_MODELVIEW) and then functions like glMultMatrixf() to manipulate the appropriate matrix.</p> <p>If that didn't make sense pick up an OpenGL tutorial on how to rotate scenes. OpenGL and JOGL are close enough that methods from OpenGL work in JOGL.</p> http://stackoverflow.com/questions/1374671/java-iterator-iterable-subinterface/1375643#1375643 1 Answer by DJClayworth for java iterator/iterable subinterface DJClayworth 2009-09-03T20:02:30Z 2009-09-03T20:02:30Z <p>Your design decisions are your own, but I can't think of any reason for EVERY class in a design to implement Iterable. There must be some kind of thing that is contained in a collection but isn't actually a collection itself. I would take a long hard look at the fundamental design. Maybe some iterables will want to return iterators of things that are not related to themselves.</p> http://stackoverflow.com/questions/345363/how-does-jogl-search-for-opengl-libraries 3 How does JOGL search for OpenGL libraries? DJClayworth 2008-12-05T22:16:26Z 2009-08-05T13:19:50Z <p>I'm writing a desktop app using JOGL, and deploying on Win/Mac/Linux. On Linux we find that the OpenGL libraries installed are not always up to the job, and we need to have the capability of switching our own software emulation OpenGL in. Naturally we expected that we could place out libraries <em>after</em> /usr/lib or <em>before</em> /usr/lib to favour ours or the default.</p> <p>It turns out that ours are picked up preferentially by JOGL. Does anyone know if the JOGl libraries do special processing looking for libGL etc, favouring perhaps a later version over an earlier? Any information welcome.</p> http://stackoverflow.com/questions/1074630/generating-excel-documents-programmatically/1074694#1074694 4 Answer by DJClayworth for Generating excel documents programmatically DJClayworth 2009-07-02T14:23:50Z 2009-07-02T14:23:50Z <p>I'm currently working with Apache POI, ( <a href="http://poi.apache.org/index.html" rel="nofollow">http://poi.apache.org/index.html</a> ) which is very comprehensive. The 2003 file format version is still in beta, but seems to work well enough. I'm not exercising it's power very much, just straightforward reads and writes of Excel, but it seems reliable.</p> http://stackoverflow.com/questions/891824/call-subclass-constructor-from-abstract-class-in-java/893026#893026 0 Answer by DJClayworth for Call subclass constructor from abstract class in Java DJClayworth 2009-05-21T13:48:53Z 2009-05-21T13:48:53Z <p>I would suggest replacing this whole thing with a Factory pattern, where you have complete control over what gets a peer added and you don't have to do it in the constructor. </p> http://stackoverflow.com/questions/848481/problem-with-painting-in-java-swing-app-in-java-1-6/848769#848769 1 Answer by DJClayworth for Problem with Painting in Java Swing App in Java 1.6 DJClayworth 2009-05-11T15:55:29Z 2009-05-11T15:55:29Z <p>Java introduced in R6 update 10 a pipeline that renders graphics based on Direct3D. According to the release description <a href="http://java.sun.com/javase/6/webnotes/6u10.html" rel="nofollow">here</a> it supports only NVidia and ATI cards, which means anyone not using those cards may have a problem. Since it is a recent innovation I would suggest that anyone using old drivers for those cards may also have problems. Upgrading a video driver will probably fix the first case but not the last.</p> <p>If you set sun.java2d.d3d to false the worst that can happen is that some users will not achieve the performance that they theoretically could. You will have to balance whether this is preferable to the issues that you are seeing at the moment. </p> http://stackoverflow.com/questions/837060/smooth-lines-in-opengl 1 Smooth lines in OpenGL DJClayworth 2009-05-07T21:06:54Z 2009-05-11T13:38:24Z <p>I'm trying to a draw a more-or-less smooth multi-segment line in OpenGL. However I find that if the line is over a thickness about 3 then the joins between the segments are not seamless. They sometimes have gaps between them. Is there a good way of making these joins smooth and gapless? I'm looking for something like the equivalent of BasicStroke.JOIN_MITER in Java.</p> http://stackoverflow.com/questions/834758/preserving-keyboard-layout-in-a-jtextfield/835044#835044 0 Answer by DJClayworth for Preserving keyboard layout in a JTextfield? DJClayworth 2009-05-07T14:38:11Z 2009-05-07T14:38:11Z <p>If you know exactly the layout of the Spanish keyboard in question you could theoretically process KeyEvents yourself, translating them into the appropriate character. However this would not be an easy thing to do. You would probably end up inserting characters into the textfields yourself.</p> http://stackoverflow.com/questions/148478/java-2d-drawing-optimal-performance/812812#812812 0 Answer by DJClayworth for Java 2D Drawing Optimal Performance DJClayworth 2009-05-01T19:11:00Z 2009-05-01T19:11:00Z <p>There's an important one which hasn't been mentioned yet, I think: cache images of everything you can. If you have an object that is moving across the screen, and it's appearance doesn't change much, draw it to an image and then render the image to the screen in a new position each frame. Do that even if the object is a very simple one - you might be surprised at how much time you save. Rendering a bitmap is much faster than rendering primitives.</p> <p>You might also want to look at setting rendering hints explicitly, and turning off things like antialiasing if quality considerations permit.</p> http://stackoverflow.com/questions/811916/export-jpanel-to-vector-graphics/812365#812365 1 Answer by DJClayworth for Export JPanel to vector graphics DJClayworth 2009-05-01T17:29:51Z 2009-05-01T17:29:51Z <p>The Java EPS mentioned by Pierre looks good, but if it isn't you might also like to look at <a href="http://java.freehep.org/vectorgraphics" rel="nofollow">FreeHEP Vector Graphics</a>. Written to allow Java reuse in the High Energy Physics field it includes a vector graphics package, done through an implementation of Graphics2D. We've used it to export EPS very successfull for a number of years.</p> http://stackoverflow.com/questions/791470/java-jogl-applet-paint-not-working/799421#799421 1 Answer by DJClayworth for Java jogl applet paint not working? DJClayworth 2009-04-28T19:09:25Z 2009-04-30T15:04:42Z <p>I'm not exactly clear what the rest of your program looks like. However you should be aware that JOGL components don't draw like other components; in other words if this code is on an instance of GLAutoDrawable (i.e. GLJPanel or GLCanvas) then it won't do anything useful.</p> <p>What you need to do is create a GLEventListener and attach it to the GLAutoDrawable. Then you need to implement <code>display (GLDrawable drawable)</code> with code that draws your 3D scene.</p> <p><a href="http://today.java.net/pub/a/today/2003/09/11/jogl2d.html" rel="nofollow">This tutorial</a> is useful in getting you started.</p> http://stackoverflow.com/questions/745463/jogl-why-wont-my-text-show-up/748160#748160 1 Answer by DJClayworth for [JOGL] Why won't my text show up? DJClayworth 2009-04-14T15:34:44Z 2009-04-21T15:39:53Z <p>I tried some mods on this but I can't make anything show up either. </p> <p>The gluLookAt call was definitely bad: you were placing the camera at (0,0,0) and looking towards z=-800, yet you are placing your text at z=0. Clearly nothing will show up.</p> <p>I also notice that you haven't called glViewport() which you should normally do, to map your scene into the component.</p> <p>What you have here is almost certainly a GL issue, not a JOGL issue. Have a look at the troubleshooting hints in the OpenGL Programming Guide. If you don't have a copy, and are going to be doing any significant GL programming, I recommend you get one. I would also replace your text with a polygon drawn in the same place. When I do that nothing shows up, so it's almost certainly a matrix issue, not anything to do with your text. When you get the polygon to show up, then you can replace it with the text. Eliminate one issue at a time. You might also try adding the opengl tag to this question, since that will attract some expert OpenGL programmers.</p> http://stackoverflow.com/questions/773008/qt-best-choice-for-animation-on-embedded/773080#773080 0 Answer by DJClayworth for Qt best choice for animation on embedded? DJClayworth 2009-04-21T15:10:13Z 2009-04-21T15:10:13Z <p>Qt's primary selling point is that it's a cross-platform GUI toolkit, which is a nice feature but one that Java has already. You may prefer Qt's version, and many people do, but don't use it just because it's cross-platform. <a href="http://labs.trolltech.com/blogs/2008/11/05/qt-animation-framework/" rel="nofollow">This article</a> shows that the Qt animation framework is not yet integrated into Qt. </p> <p>If you can program in GL then JOGL is an obvious start point, but if you can't be aware that GL programming is not easy. You might also consider Java3D. Possibly what you want can be done in JavaFX.</p> http://stackoverflow.com/questions/768705/java-applets-with-hardware-accelerated-3d-graphics-opengl-and-ordirectx/769322#769322 0 Answer by DJClayworth for Java applets with hardware accelerated 3D graphics? OpenGL and/orDirectX DJClayworth 2009-04-20T17:39:20Z 2009-04-20T17:39:20Z <p>DirectX is a proprietary Microsoft 3D system, so unless you are sure you will only run on Microsoft systems I would avoid DirectX. </p> <p>JOGL and Java3D are very different. JOGL is a thin layer over OpenGL, with all the advantages and disadvantages that implies. Java3D is a full scenegraph system.</p> http://stackoverflow.com/questions/756567/regular-expression-for-excluding-special-characters/757563#757563 0 Answer by DJClayworth for Regular expression for excluding special characters DJClayworth 2009-04-16T18:58:06Z 2009-04-16T18:58:06Z <p>Why do you consider regex the best tool for this? If your purpose is to detect whether an illegal character is present in a string, testing each character in a loop will be both simpler and more efficient than constructing a regex.</p> http://stackoverflow.com/questions/726652/creating-a-logical-exclusive-or-operator-in-java/726663#726663 2 Answer by DJClayworth for Creating a "logical exclusive or" operator in Java DJClayworth 2009-04-07T17:02:23Z 2009-04-07T17:02:23Z <p>Java does not have the ability to define new operators.</p> http://stackoverflow.com/questions/712528/does-up-casting-in-java-hide-the-subclass-methods-and-fields/714788#714788 0 Answer by DJClayworth for Does up casting in Java hide the subclass methods and fields? DJClayworth 2009-04-03T16:56:52Z 2009-04-03T16:56:52Z <p>The technical answer has been given by John Calsbeek. I want to think about the design issue. What you are trying to do is prevent some segment of the code, or some developers, from knowing anything about the User class. You want them to treat all Users as if they were RestrictedUsers.</p> <p>The way you would do that is with permissions. You need to prevent the developers in question having access to the User class. You can probably do that by placing it in a package and restricting access to the package.</p> http://stackoverflow.com/questions/707264/shape-at-actual-size/707596#707596 1 Answer by DJClayworth for Shape at "Actual Size" DJClayworth 2009-04-01T22:30:01Z 2009-04-01T22:35:10Z <p>In theory you can do it this way. The java.awt.Toolkit will tell you the size of a pixel, and the pixel dimensions of the screen. So, to draw a 1" circle, you'd use a diameter of 1.0 * tk.getScreenResolution(), a 2.5" circle is 2.5 * tk.getScreenResolution(), etc. Or you can use the GraphicsConfiguration.getNormalizingTransform() method which adjusts the resolution to a 'fixed' size.</p> <p>Unfortunately both of these methods rely on the underlying system knowing (and telling you) the actual resolution of your screen. In practice this very rarely occurs. All sorts of things can affect the actual size of a pixel. The actual size and make of monitor is one, and some monitors even allow you to adjust the size of the image on the screen. </p> <p>This article <a href="http://www.developer.com/java/other/print.php/626071" rel="nofollow">http://www.developer.com/java/other/print.php/626071</a> discusses this.</p> <p>Printers are generally better at telling you their real resolution. If you absolutely must have a picture which is the correct size, send it there.</p> <p>Acknowledgements to the various answers from which I synthesized this one.</p> http://stackoverflow.com/questions/658059/graphics-drawimage-in-java-is-extremely-slow-on-some-computers-yet-much-faster/659533#659533 0 Answer by DJClayworth for Graphics.drawImage() in Java is EXTREMELY slow on some computers yet much faster on others DJClayworth 2009-03-18T18:25:56Z 2009-03-18T18:25:56Z <p>Performance of writing an image to a screen is very much affected by the format in which the image is stored. If the format is the same as the screen memory wants then it can be very fast; if it is not then a conversion must be done, sometimes pixel by pixel, which is very slow.</p> <p>If you have any control over how the image is stored, you should store it in a format that the screen is looking for. Here is some sample code:</p> <pre><code> GraphicsEnvironment env = GraphicsEnvironment.getLocalGraphicsEnvironment(); GraphicsDevice device = env.getDefaultScreenDevice(); GraphicsConfiguration config = device.getDefaultConfiguration(); BufferedImage buffy = config.createCompatibleImage(width, height, Transparency.TRANSLUCENT); </code></pre> <p>If you are going to draw the image many times it may be worth converting to a compatible format even if it came in some other format.</p> http://stackoverflow.com/questions/658488/iterator-for-all-elements-in-hash-maps-stored-in-an-array/658843#658843 0 Answer by DJClayworth for Iterator for all elements in hash maps stored in an array DJClayworth 2009-03-18T15:42:30Z 2009-03-18T15:42:30Z <p>As an alternative you could try storing all the entries for a graph in a single HashMap, in which the key is an object containing both the node number and the neighbour node number. I presume the node number would normally be the index into the array of HashMaps, and the neighbour node the key to the current HashMap. That would enable you to do the same retrievals that you do now, and iterate over all the entries without having to write any special code.</p> <p>Don't forget you'll need to write an equals() and a good hash function for the object used as the key (which object can otherwise be very simple). If you have very large graphs this may not be appropriate of course.</p> http://stackoverflow.com/questions/650556/is-performance-a-sufficient-reason-for-having-a-singleton-or-static-class/652222#652222 1 Answer by DJClayworth for Is performance a sufficient reason for having a singleton or static class? DJClayworth 2009-03-16T21:29:10Z 2009-03-16T21:29:10Z <p>You should use a Singleton only in cases where there can <em>conceptually</em> only be one instance of an object, not to artificially restrict the developer to one instance. If there could possibly be two instances then it shouldn't be a Singleton.</p> <p>If the former is the case, and there is state associated with the object, then a Singleton is useful if there is substantial cost associated with initialization and either a chance the class will never be used, or a reason to defer the initialization. In that case a Singleton is good. The alternative us a static class, and you should use it whenever the above doesn't apply.</p> http://stackoverflow.com/questions/650461/what-are-some-tricks-i-can-use-with-macros/650539#650539 1 Answer by DJClayworth for What are some tricks I can use with macros? DJClayworth 2009-03-16T13:59:55Z 2009-03-16T13:59:55Z <p>My favourite trick with a macro:</p> <p>Use a macro - Hey Presto, the code quality disappears!</p> http://stackoverflow.com/questions/611732/what-to-do-with-java-bigdecimal-performance/611821#611821 5 Answer by DJClayworth for What to do with Java BigDecimal performance? DJClayworth 2009-03-04T18:23:44Z 2009-03-04T20:35:54Z <p>Assuming you can work to some arbitrary but known precision (say a billionth of a cent) and have a known maximum value you need handle (a trillion trillion dollars?) you can write a class which stores that value as an integer number of billionths of a cent. You'll need two longs to represent it. That should be maybe ten times as slow as using double; about a hundred times as fast as BigDecimal.</p> <p>Most of the operations are just performing the operation on each part and renormalizing. Division is slightly more complicated, but not much.</p> <p>EDIT:In response to the comment. You will need to implement a bitshift operation on your class (easy as along as the multiplier for the high long is a power of two). Shift the divisor until it's not quite bigger than the dividend; subtract shifted divisor from dividend and increment the result (with appropriate shift). Repeat.</p> <p>EDIT AGAIN:You may find BigInteger does what you need here.</p> http://stackoverflow.com/questions/610458/why-isnt-calling-a-static-method-by-way-of-an-instance-an-error-for-the-java-com/611894#611894 -2 Answer by DJClayworth for Why isn't calling a static method by way of an instance an error for the Java compiler? DJClayworth 2009-03-04T18:40:08Z 2009-03-04T18:40:08Z <p>Because of cases like this:</p> <pre><code>class myClass { static void sMethod() { ... doComplexCalculation(); ... } void iMethod() { ... doComplexCalculation(); ... } private static void doComplexCalculation() { ... } } </code></pre> <p>Without the ability to call static from instances you need to write doComplexCalculation() twice.</p> http://stackoverflow.com/questions/602614/what-are-some-faster-alternatives-to-java2d/603728#603728 1 Answer by DJClayworth for What are some faster alternatives to Java2d? DJClayworth 2009-03-02T19:55:52Z 2009-03-02T19:55:52Z <p>JOGL is a 3D drawing package, and very unlikely to be faster that Java2D for drawing things that are essentially 2D. If what you are drawing is essentially 3D then absolutely go to JOGL.</p> <p>Obviously the answer depends on what you are trying to do. If you are animating a drawing of some physical process then I would recommend trying to optimize the process. Here are some suggestions:</p> <ol> <li>If you are drawing many symbols that are the same but in different places, create a bitmap for the symbol and draw it many times;</li> <li>Turn off antialiasing if you are drawing something that changes quickly</li> <li>If only one area of the screen is changing, make sure you redraw only that area;</li> <li>If some elements of the picture are not changing, consider creating a bitmap cache for the things that don't change.</li> </ol> http://stackoverflow.com/questions/591228/automatically-refactor-a-loop-into-a-recursive-method/592704#592704 0 Answer by DJClayworth for Automatically refactor a loop into a recursive method? DJClayworth 2009-02-26T22:17:45Z 2009-02-26T22:17:45Z <p>If you are doing this for teaching purposes I would think you can get away with doing it for a very limited set of cases. So could you just write something that took</p> <pre><code>myMethod() { // startcode for (init,cond,incr) { // loopcode } //endcode } </code></pre> <p>and transformed it to</p> <pre><code>myMethod() { //startcode init; recursive(value); //endcode } recursive(value) { if (!cond) { return } else { //loopcode incr; recursive(value); } </code></pre> <p>I'm sure you can sort out the pseudocode for yourself.</p> http://stackoverflow.com/questions/585534/what-is-the-best-way-to-find-the-users-home-directory-in-java/586345#586345 5 Answer by DJClayworth for What is the best way to find the users home directory in Java? DJClayworth 2009-02-25T15:05:43Z 2009-02-25T15:05:43Z <p>Since you specifically mention bug 4787391 I assume you are not satisfied with the System.getProperty("user.home") functionality. Are you sure? the user.home approach seems to work in a very large number of cases. If you have read <a href="http://bugs.sun.com/bugdatabase/view%5Fbug.do?bug%5Fid=4787931" rel="nofollow">the bug page</a> you will find that a 100% bulletproof solution on Windows is hard, because Windows has a shifting concept of what the home directory means.</p> <p>If user.home isn't good enough for you I would suggest choosing a definition of 'home directory' for windows and using it, getting the appropriate environment variable with System.getenv(String).</p> http://stackoverflow.com/questions/577943/how-accurate-are-the-technical-arguments-in-jwzs-ten-year-old-java-sucks-artic/578122#578122 -3 Answer by DJClayworth for How accurate are the technical arguments in JWZ's ten-year-old "java sucks" article with today's Java? DJClayworth 2009-02-23T15:52:22Z 2009-02-23T15:52:22Z <p>Lets get straight to some issues: Using a word like 'sucks' in your question automatically makes it non-neutral. The fact that the original article used the word 'sucks' in it's title makes it non-neutral. Who is this guy that you are still paying attention to some rant he wrote ten years ago?</p> <p>But to try to answer your question, I made a random sampling of his 'technical points'. </p> <p>1) Some were not even true then. </p> <p>2) Many were the author's personal opinion about what he didn't like with the language, not an actual technical defect: "The notion of methods belonging to classes is lame";</p> <p>3) hardly any technical issues are still true. "Can't cast short to Short"; "can't change the type on a method return override"; "can't do assert"; "there are no weak pointers."</p> http://stackoverflow.com/questions/575767/what-programming-technique-practice-done-by-you-was-ahead-of-its-time/577963#577963 2 Answer by DJClayworth for What programming technique / practice done by you was ahead of its time? DJClayworth 2009-02-23T15:17:21Z 2009-02-23T15:17:21Z <p>In 1987 I attended a presentation on a new way of writing code called 'object oriented programming' (we were writing FORTRAN code at the time). The only response I can remember was "it would be great for writing Adventure type games'. Unfortunately we didn't pick up on this for many years.</p> http://stackoverflow.com/questions/1339870/fastest-way-to-compare-strings-literal-and-numerical/1340076#1340076 Comment by DJClayworth on Fastest way to compare strings (literal and numerical) DJClayworth 2009-08-27T14:00:41Z 2009-08-27T14:00:41Z If eliminating the parsing doesn't improve matters, then either most of your Strings can't be parsed to doubles (in which case the code trying to do it is useless and should be eliminated) or the String comparison really isn't making any difference and you should really go and look at the sort algorithm. http://stackoverflow.com/questions/1073909/side-effect-whats-this/1074315#1074315 Comment by DJClayworth on Side effect--what's this? DJClayworth 2009-07-02T14:32:40Z 2009-07-02T14:32:40Z A side-effect can be other things than changing a class state, as described above. http://stackoverflow.com/questions/1008023/how-to-serialize-static-data-members-of-a-java-class/1008205#1008205 Comment by DJClayworth on How to serialize static data members of a Java class? DJClayworth 2009-06-17T16:57:13Z 2009-06-17T16:57:13Z If the state of the computation isn't embedded in the object you are serializing then you shouldn't be storing it as part of serialization of that object. http://stackoverflow.com/questions/892999/is-defining-a-probablebugexception-code-smell-paranoia-or-good-practice/893040#893040 Comment by DJClayworth on Is defining a "ProbableBugException" code smell, paranoia or good practice? DJClayworth 2009-05-21T16:31:56Z 2009-05-21T16:31:56Z Any particular reason you don't use assert here? http://stackoverflow.com/questions/888815/any-there-any-circumstances-where-java-reference-equality-could-be-different-to-e/889478#889478 Comment by DJClayworth on Any there any circumstances where Java reference equality could be different to equals() equality for a an object of a type which has not overridden equals()? DJClayworth 2009-05-20T18:31:47Z 2009-05-20T18:31:47Z String overrides equals. That's how it gets that behaviour. http://stackoverflow.com/questions/888088/how-do-i-convert-a-string-to-double-in-java-using-a-specific-locale/888105#888105 Comment by DJClayworth on How do I convert a String to Double in Java using a specific locale? DJClayworth 2009-05-20T15:42:30Z 2009-05-20T15:42:30Z I see nothing to promise that NumberFormat.parse() returns a Double. In fact it appears to say that if the value can be contained in a Long, it returns Long, causing your method 1 to throw a ClassCastExeption. http://stackoverflow.com/questions/856124/breaking-out-of-a-recursion-in-java/856199#856199 Comment by DJClayworth on Breaking out of a recursion in java DJClayworth 2009-05-14T19:30:44Z 2009-05-14T19:30:44Z I would always start from the position that the performance in an exceptional condition doesn't matter. If profiling showed me otherwise I would change my mind. http://stackoverflow.com/questions/856124/breaking-out-of-a-recursion-in-java/856199#856199 Comment by DJClayworth on Breaking out of a recursion in java DJClayworth 2009-05-13T15:27:21Z 2009-05-13T15:27:21Z The OP writes &quot;I want it to break completely if a violation is found&quot;, which sounds to me like an &quot;exceptional condition&quot;, and is exactly what exceptions are for. http://stackoverflow.com/questions/856124/breaking-out-of-a-recursion-in-java Comment by DJClayworth on Breaking out of a recursion in java DJClayworth 2009-05-13T15:25:10Z 2009-05-13T15:25:10Z Stasis, the important question is: is each of your 'branches' a separate thread, or are you running a single-threaded recursive algorithm? http://stackoverflow.com/questions/837060/smooth-lines-in-opengl/837078#837078 Comment by DJClayworth on Smooth lines in OpenGL DJClayworth 2009-05-11T16:02:07Z 2009-05-11T16:02:07Z It turns out polygon stipple isn't quite the same as line stipple. I think I'm going to have to go with polygons for solid lines and use the renderers own line drawing for stippled lines, where the defects are not quite so obvious. http://stackoverflow.com/questions/837060/smooth-lines-in-opengl/848131#848131 Comment by DJClayworth on Smooth lines in OpenGL DJClayworth 2009-05-11T16:00:16Z 2009-05-11T16:00:16Z On some renderers thick lines are drawn by extending the line in one direction only. In that case the points are not drawn in the centre of the line. It seems OpenGL really doesn't handle this very well. I think polygons are going to end up being the best way. http://stackoverflow.com/questions/837060/smooth-lines-in-opengl/837078#837078 Comment by DJClayworth on Smooth lines in OpenGL DJClayworth 2009-05-08T13:27:18Z 2009-05-08T13:27:18Z I didn't know that. It might be helpful. http://stackoverflow.com/questions/837060/smooth-lines-in-opengl/837225#837225 Comment by DJClayworth on Smooth lines in OpenGL DJClayworth 2009-05-08T13:26:59Z 2009-05-08T13:26:59Z The problem here is not the curviness of the lines, but that the ends of the segments don't match up against each other, even if they are supposed to be straight segments. The program still ends up sending line segments to OpenGL and we are back where we started. http://stackoverflow.com/questions/837060/smooth-lines-in-opengl/837091#837091 Comment by DJClayworth on Smooth lines in OpenGL DJClayworth 2009-05-08T13:20:44Z 2009-05-08T13:20:44Z Another good idea, but it turns out that some renderers make a line thicker by extending it only on one side. The points are not centered on the line when both are thick. http://stackoverflow.com/questions/837060/smooth-lines-in-opengl Comment by DJClayworth on Smooth lines in OpenGL DJClayworth 2009-05-07T21:27:57Z 2009-05-07T21:27:57Z I don't have a place to post an image to right now.