User tfinniga - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T22:41:23Z http://stackoverflow.com/feeds/user/9042 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1885000/get-wix-to-write-a-new-guid-to-the-registry-after-each-install 0 Get WiX to write a new GUID to the registry after each install tfinniga 2009-12-11T00:07:52Z 2009-12-15T00:10:24Z <p>I'm trying to port an NSIS installer to WiX. Every time the installer runs it sets a registry key to a new GUID value, so that when my app runs it can see if it's first run after an install. On first run the app sets another registry key to the GUID value from the installer. As long as the two keys match then I know the installer hasn't been run.</p> <p>Here's the NSIS code:</p> <pre><code>#Write InstallGUID Call CreateGUID Pop $0 WriteRegStr HKLM "${REGKEY}" InstallGUID $0 </code></pre> <p>and</p> <pre><code>Function CreateGUID System::Call 'ole32::CoCreateGuid(g .s)' FunctionEnd </code></pre> <p>I've got a fairly complete WiX installer ready at this point, but I can't figure out how to replicate this functionality. Is there something in WiX to generate GUIDs at install time, or do I need to write a custom event? If I could avoid writing a little dll that would be best.</p> http://stackoverflow.com/questions/1885000/get-wix-to-write-a-new-guid-to-the-registry-after-each-install/1904429#1904429 0 Answer by tfinniga for Get WiX to write a new GUID to the registry after each install tfinniga 2009-12-15T00:10:24Z 2009-12-15T00:10:24Z <p>It looks like this can be accomplished with a packaged dll, as shown in the <a href="http://www.tramontana.co.hu/wix/lesson3.php#3.4" rel="nofollow">SampleAskKey example in the WiX tutorial</a>.</p> <p>Not the most elegant, but it should get the job done.</p> http://stackoverflow.com/questions/1750796/solving-for-optimal-alignment-of-3d-polygonal-mesh 1 Solving for optimal alignment of 3d polygonal mesh tfinniga 2009-11-17T18:23:22Z 2009-11-20T00:37:35Z <p>I'm trying to implement a geometry templating engine. One of the parts is taking a prototypical polygonal mesh and aligning an instantiation with some points in the larger object.</p> <p>So, the problem is this: given 3d point positions for some (perhaps all) of the verts in a polygonal mesh, find a scaled rotation that minimizes the difference between the transformed verts and the given point positions. I also have a centerpoint that can remain fixed, if that helps. The correspondence between the verts and the 3d locations is fixed.</p> <p>I'm thinking this could be done by solving for the coefficients of a transformation matrix, but I'm a little unsure how to build the system to solve.</p> <p>An example of this is a cube. The prototype would be the unit cube, centered at the origin, with vert indices:</p> <pre><code>4----5 |\ \ | 6----7 | | | 0 | 1 | \| | 2----3 </code></pre> <p>An example of the vert locations to fit:</p> <ul> <li>v0: 1.243,2.163,-3.426 </li> <li>v1: 4.190,-0.408,-0.485 </li> <li>v2: -1.974,-1.525,-3.426 </li> <li>v3: 0.974,-4.096,-0.485 </li> <li>v5: 1.974,1.525,3.426 </li> <li>v7: -1.243,-2.163,3.426</li> </ul> <p>So, given that prototype and those points, how do I find the single scale factor, and the rotation about x, y, and z that will minimize the distance between the verts and those positions? It would be best for the method to be generalizable to an arbitrary mesh, not just a cube.</p> http://stackoverflow.com/questions/1765014/convert-string-from-date-into-a-timet 0 Convert string from __DATE__ into a time_t tfinniga 2009-11-19T17:17:50Z 2009-11-19T18:42:04Z <p>I'm trying to convert the string produced from the <code>__DATE__</code> macro into a <code>time_t</code>. I don't need a full-blown date/time parser, something that only handles the format of the <code>__DATE__</code> macro would be great.</p> <p>A preprocessor method would be nifty, but a function would work just as well. If it's relevant, I'm using MSVC.</p> http://stackoverflow.com/questions/1765014/convert-string-from-date-into-a-timet/1765217#1765217 0 Answer by tfinniga for Convert string from __DATE__ into a time_t tfinniga 2009-11-19T17:50:13Z 2009-11-19T17:50:13Z <p>Jerry's function looks great. Here's my attempt.. I threw in the __TIME__ as well.</p> <pre><code>time_t time_when_compiled() { string datestr = __DATE__; string timestr = __TIME__; istringstream iss_date( datestr ); string str_month; int day; int year; iss_date &gt;&gt; str_month &gt;&gt; day &gt;&gt; year; int month; if ( str_month == "Jan" ) month = 1; else if( str_month == "Feb" ) month = 2; else if( str_month == "Mar" ) month = 3; else if( str_month == "Apr" ) month = 4; else if( str_month == "May" ) month = 5; else if( str_month == "Jun" ) month = 6; else if( str_month == "Jul" ) month = 7; else if( str_month == "Aug" ) month = 8; else if( str_month == "Sep" ) month = 9; else if( str_month == "Oct" ) month = 10; else if( str_month == "Nov" ) month = 11; else if( str_month == "Dec" ) month = 12; else exit(-1); for( string::size_type pos = timestr.find( ':' ); pos != string::npos; pos = timestr.find( ':', pos ) ) timestr[ pos ] = ' '; istringstream iss_time( timestr ); int hour, min, sec; iss_time &gt;&gt; hour &gt;&gt; min &gt;&gt; sec; tm t = {0}; t.tm_mon = month-1; t.tm_mday = day; t.tm_year = year - 1900; t.tm_hour = hour; t.tm_min = min; t.tm_sec = sec; return mktime(&amp;t); } int main( int, char** ) { cout &lt;&lt; "Time_t when compiled: " &lt;&lt; time_when_compiled() &lt;&lt; endl; cout &lt;&lt; "Time_t now: " &lt;&lt; time(0) &lt;&lt; endl; return 0; } </code></pre> http://stackoverflow.com/questions/1601600/how-to-map-a-point-onto-a-warped-grid/1609615#1609615 1 Answer by tfinniga for How to map a point onto a warped grid tfinniga 2009-10-22T20:01:13Z 2009-10-22T20:01:13Z <p>The other answers are great. The only thing I'd add is that you might want to take a look at <a href="http://tom.cs.byu.edu/~557/text/3dffd.pdf" rel="nofollow">Free form deformation</a> as a way of describing the deformations. </p> <p>If that's useful, then it's quite possible to fit a deformation grid/lattice to your known pairs, and then you have a very fast method of deforming future points.</p> http://stackoverflow.com/questions/1602008/is-it-premature-optimization-to-develop-on-slow-machines/1602034#1602034 0 Answer by tfinniga for Is it premature optimization to develop on slow machines? tfinniga 2009-10-21T16:37:51Z 2009-10-21T16:37:51Z <p>I typically develop on the fastest machine I can get my hands on. </p> <p>Most of the time I'm running a debug build, which is slow enough already. </p> http://stackoverflow.com/questions/1590462/what-is-negative-squared-euclidean-distance/1590475#1590475 7 Answer by tfinniga for What is negative squared euclidean distance? tfinniga 2009-10-19T19:04:10Z 2009-10-19T19:30:05Z <p>The correct answer is</p> <pre><code>-( (x1-x2)^2 + (y1-y2)^2 ) </code></pre> <p>The mathematical description is accurate, but not useful for implementation. It's stated as the square of the distance between the points, which if implemented directly would be something like:</p> <pre><code>len = sqrt( (x1-x2)*(x1-x2) + (y1-y2)*(y1-y2) ); result = -( len*len ); </code></pre> <p>which can simplified to</p> <pre><code>result = -( (x1-x2)*(x1-x2) + (y1-y2)*(y1-y2) ); </code></pre> <p>which is your #2.</p> http://stackoverflow.com/questions/1561008/sidebyside-error-on-another-computer-with-msvc-2005-installed/1561277#1561277 0 Answer by tfinniga for SideBySide error on another computer with MSVC++ 2005 installed tfinniga 2009-10-13T16:13:28Z 2009-10-13T16:13:28Z <p>Here's a <a href="http://social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/793f1dc8-bdd5-429f-8d42-589116cb0061" rel="nofollow">possibly related forum post</a>. Not sure if this is the problem, but it seems worth checking.</p> <p>The summary is that MS updated the ATL, CRT, MFC, and a few other libraries on VS 2005 developer machines via an automatic update. </p> <p>On machines without VS2005 installed, they only updated the ATL via an automatic update, causing SxS errors.</p> <p>You can either uninstall the update on the dev machine, or upgrade the runtimes manually on the machine you're trying to run on. Details on the <a href="http://social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/793f1dc8-bdd5-429f-8d42-589116cb0061" rel="nofollow">post</a>.</p> http://stackoverflow.com/questions/1545048/how-does-speed-bit-video-accelerator-work/1545280#1545280 0 Answer by tfinniga for How does speed bit video accelerator work? tfinniga 2009-10-09T18:09:38Z 2009-10-09T18:09:38Z <p>From the <a href="http://www.videoaccelerator.com/help/" rel="nofollow">help page</a>:</p> <blockquote> <p><strong>How it works</strong><br> Leveraging SpeedBit's unique technology, SpeedBit Video Accelerator downloads movies and music from multiple sources simultaneously allowing for significantly improved download speeds and video playback.</p> </blockquote> <p>So, looks like they open multiple http sessions and stitch the results together on the other end. Similar to many download managers.</p> http://stackoverflow.com/questions/1545222/how-do-you-define-an-opaque-struct-array-in-c/1545238#1545238 1 Answer by tfinniga for How do you define an opaque struct array in C? tfinniga 2009-10-09T18:02:28Z 2009-10-09T18:02:28Z <p>Sounds like you either want an <a href="http://en.wikipedia.org/wiki/Opaque%5Fpointer" rel="nofollow">opaque pointer/PIMPL</a> implementation, or you should include the appropriate header file.</p> <p>Structs in C++ are almost identical to classes, so the same techniques apply.</p> http://stackoverflow.com/questions/1515828/getting-the-point-of-a-catmull-rom-spline-after-a-certain-distance/1533152#1533152 1 Answer by tfinniga for Getting the point of a catmull rom spline after a certain distance? tfinniga 2009-10-07T17:47:41Z 2009-10-07T17:54:42Z <p>Goz's answer is accurate - here's a <a href="http://www.physicsforums.com/showthread.php?t=81449" rel="nofollow">related discussion about length of Bezier curves</a>. The summary of the posters was that it's less computation (and much simpler) to do an approximation than compute the exact answer. This is applicable because you can change the basis of parametric splines, so you could convert the Catmull-Rom curve to Bezier segments.</p> <p>For approximation, you're basically breaking it into primitives with simple analytical length, then summing all of the simple lengths. While most people use line segments, you do tend to have shrinkage. You can minimize the error by using small segments, but your approximation will always be less than the true length for non-linear curves.</p> <p>If you need more accuracy there's a <a href="http://jgt.akpeters.com/papers/VincentForsey01/" rel="nofollow">paper from jgt</a> that discusses how to use circles as your approximation primitives, which is apparently faster/more accurate but not much harder to implement. They include a sample C implementation.</p> http://stackoverflow.com/questions/1522107/how-can-i-communicate-between-two-c-mfc-plugins 1 How can I communicate between two C++ MFC plugins? tfinniga 2009-10-05T20:05:41Z 2009-10-05T20:30:56Z <p>I have a plugin for a c++ MFC app. I'm working with the developer of another plugin for the same app, that's trying to get notifications of events in my code. Both plugins are in the form of c++ dlls.</p> <p>How can I pass messages from my plugin to his plugin? The solution needs to be robust to mismatched versions of our two plugins, as well as the host app. The notifications are during control point movement, so several times a second.</p> <p>I could set up a callback mechanism, where upon load his plugin calls a function in my plugin with a function pointer. We're not guaranteed any loading order, but we could probably just check periodically.</p> <p>I know Win32 has a messaging system, but I'm not sure how it works, really. We could add a hook, and I could send messages, but I'm a bit fuzzy on how we'd synchronize what the message id is, or any details other than what I said, really.</p> <p>Any other ideas on how to do this?</p> http://stackoverflow.com/questions/1493352/when-do-you-use-third-party-code/1493677#1493677 0 Answer by tfinniga for When do you use third-party code? tfinniga 2009-09-29T16:39:46Z 2009-09-29T16:39:46Z <p>My rule of thumb is that I like to fully understand as much of the code as possible. A coworker that fully understands it is just as good.</p> <p>If the library is simple enough to read and understand, then I'll use it. If it's more complicated, the only reason I use it is if it's a very complex and commoditized problem. </p> <p>For example, I would use a third-party library for an html layout engine, regular expression engine, matrix solver, SQL server, etc. I would only use a third-party library for parsing ini files if I could read it and understand it fully.</p> http://stackoverflow.com/questions/1418831/c-2d-tessellation-library/1423507#1423507 1 Answer by tfinniga for c++ 2D tessellation library? tfinniga 2009-09-14T19:42:21Z 2009-09-15T15:40:45Z <p>A bit more detail on your desired input and output might be helpful. </p> <p>For example, if you're just trying to get the polygons into triangles, a triangle fan would probably work. If you're trying to cut a polygon into little pieces, you could implement some kind of marching squares.</p> <p><hr /></p> <p>Okay, I made a bad assumption - I assumed that marching squares would be more similar to marching cubes. Turns out it's quite different, and not what I meant at all.. :|</p> <p>In any case, to directly answer your question, I don't know of any simple library that does what you're looking for. I agree about the usability of CGAL.</p> <p>The algorithm I was thinking of was basically splitting polygons with lines, where the lines are a grid, so you mostly get quads. If you had a polygon-line intersection, the implementation would be simple. Another way to pose this problem is treating the 2d polygon like a function, and overlaying a grid of points. Then you just do something similar to marching cubes.. if all 4 points are in the polygon, make a quad, if 3 are in make a triangle, 2 are in make a rectangle, etc. Probably overkill. If you wanted slightly irregular-looking polygons you could randomize the locations of the grid points.</p> <p>On the other hand, you could do a catmull-clark style subdivision, but omit the smoothing. The algorithm is basically you add a point at the centroid and at the midpoint of each edge. Then for each corner of the original polygon you make a new smaller polygon that connects the edge midpoint previous to the corner, the corner, the next edge midpoint, and the centroid. This tiles the space, and will have angles similar to your input polygon.</p> <p>So, lots of options, and I like brainstorming solutions, but I still have no idea what you're planning on using this for. Is this to create destructible meshes? Are you doing some kind of mesh processing that requires smaller elements? Trying to avoid Gouraud shading artifacts? Is this something that runs as a pre-process or realtime? How important is exactness? More information would result in better suggestions.</p> http://stackoverflow.com/questions/1380371/what-are-the-most-widely-used-c-vector-matrix-math-linear-algebra-libraries-an/1380436#1380436 1 Answer by tfinniga for What are the most widely used C++ vector/matrix math/linear algebra libraries, and their cost and benefit tradeoffs? tfinniga 2009-09-04T16:57:03Z 2009-09-04T20:56:58Z <p>Okay, I think I know what you're looking for. It appears that GGT is a pretty good solution, as Reed Copsey suggested.</p> <p>Personally, we rolled our own little library, because we deal with rational points a lot - lots of rational NURBS and Beziers.</p> <p>It turns out that most 3D graphics libraries do computations with projective points that have no basis in projective math, because that's what gets you the answer you want. We ended up using Grassmann points, which have a solid theoretical underpinning and decreased the number of point types. Grassmann points are basically the same computations people are using now, with the benefit of a robust theory. Most importantly, it makes things clearer in our minds, so we have fewer bugs. Ron Goldman wrote a paper on Grassmann points in computer graphics called <a href="http://www.google.com/search?q=%22On+the+Algebraic+and+Geometric+Foundations+of+Computer+Graphics%22" rel="nofollow">"On the Algebraic and Geometric Foundations of Computer Graphics"</a>. </p> <p>Not directly related to your question, but an interesting read.</p> http://stackoverflow.com/questions/1324051/how-to-compute-a-pair-of-closest-points-on-two-3d-circles 8 How to compute a pair of closest points on two 3d circles? tfinniga 2009-08-24T18:49:13Z 2009-09-03T22:44:26Z <p>I have two 2d circles in 3d space (defined by a center, normal, and radius) and I'm trying to come up with a pair of points that is one of the set of closest pairs of points. I know that there are anywhere from 1 to an infinite number of point pairs, I just need a single matching pair.</p> <p>Is there a simple way to do that? Precision is not essential. The radius of both circles are the same, non-zero value.</p> <p>In case the background is helpful, my overall algorithm takes in a NURBS curve in space and extrudes a 2d polygon along the curve, yielding a deformed cylinder. I just sample several points along the curve. The normal of each circle is the NURBS curve tangent, and I'm trying to figure out how to align adjacent samples, so I don't get weird twisting. It seems that the closest points on adjacent samples should be aligned.</p> <p><hr /></p> <p>Thanks for all the responses here.. this part of the project got a little delayed, which is why I haven't tested all the answers yet. I'll be sure to toss up some images here and mark an answer when I get to work on this again.</p> http://stackoverflow.com/questions/1364793/initializing-arrays-in-c/1364815#1364815 8 Answer by tfinniga for Initializing arrays in C++ tfinniga 2009-09-01T21:49:10Z 2009-09-03T22:36:55Z <p>If you want to initialize them all at definition:</p> <pre><code>int grades[10] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 7 }; </code></pre> <p>If you want to initialize after:</p> <pre><code>int grades[10]; grades[9] = 7; </code></pre> <p>But, be aware that grades 0..8 will still be uninitialized, and will likely be junk values.</p> http://stackoverflow.com/questions/1369292/is-it-possible-to-generate-a-global-list-of-marked-strings-at-compile-time-runtim 2 Is it possible to generate a global list of marked strings at compile time/runtime? tfinniga 2009-09-02T18:11:19Z 2009-09-02T21:26:47Z <p>So, I'm working on translating my C++ app into multiple languages. What I'm currently using is something like:</p> <pre><code>#define TR(x) (lookupTranslatedString( currentLocale(), x )) wcout &lt;&lt; TR(L"This phrase is in English") &lt;&lt; endl; </code></pre> <p>The translations are from a CSV file which maps the english string to the translated string.</p> <pre><code>"This phrase is in English","Nasa Tagalog itong pagsabi" </code></pre> <p>This is simplified, but that's the basic idea.</p> <p>My question is about generating the list of English phrases that need to be translated. I just need the CSV with all the english phrases, and blank translated phrases. I was hoping that it might be possible to either generate this list at compile time or at runtime. At compiletime I was thinking something like this:</p> <pre><code>#define TR(x) \ #warning x \ (lookupTranslatedString( currentLocale(), x )) </code></pre> <p>and then maybe parse the compile log, or something. This seems not to work so well.</p> <p>At runtime would also be great. I was thinking of just starting the app and having a hidden command that would dump the english CSV. I've seen similar methods used to register commands with a central list, using global variables. It might look something like this:</p> <pre><code>class TrString { public: static std::set&lt; std::wstring &gt; sEnglishPhrases; TrString( std::wstring english_phrase ) { sEnglishPhrases.insert( english_phrase ); } }; #define TR(x) do {static TrString trstr(x);} while( false ); (lookupTranslatedString( currentLocale(), x )); </code></pre> <p>I know there's two problems with the above code. I doubt it compiles, but more importantly, in order to generate a list of all english phrases, I'd need to hit every single code path before accessing sEnglishPhrases. </p> <p>It looks like I'll end up writing a small parser to read through all my code and look for TR strings, which isn't really that tough. I was just hoping to learn a little more about C++, and if there's a better way to do this.</p> http://stackoverflow.com/questions/1368327/some-errors-in-vc/1369110#1369110 2 Answer by tfinniga for Some errors in VC++ tfinniga 2009-09-02T17:32:18Z 2009-09-02T17:32:18Z <p>Try selecting MAPVK_VK_TO_CHAR and hitting F12 to see if the symbol is declared elsewhere.</p> http://stackoverflow.com/questions/1325123/can-anyone-identify-this-image-format/1325142#1325142 2 Answer by tfinniga for Can anyone identify this image format? tfinniga 2009-08-24T22:36:16Z 2009-08-24T22:36:16Z <p>Looks like it might be a really simple format. 0A seems to be a header. Then it looks like pairs of darkness values, although it seems like 50% of the space is wasted. If you post a file, I'd be happy to try to write a converter.</p> <p>The whole file is necessary because it looks like there's a fixed image size, and it might take a little fiddling. Do you have an image that's not confidential, but still has data in it?</p> http://stackoverflow.com/questions/1024323/starting-point-for-learning-cad-cae-file-formats/1296037#1296037 0 Answer by tfinniga for Starting point for learning CAD/CAE file formats? tfinniga 2009-08-18T19:40:48Z 2009-08-19T20:50:28Z <p>Upon re-reading your question, let me completely change my answer. If you all need is meshes, then just use a simple mesh-based format. </p> <p>OBJ is simple, good, and very standard. Conversion from many CAD formats to OBJ requires a tessellator/mesher, which you don't want to be writing anyway, just get a seat of a CAD package to do the translation. Moi or Rhino are low-cost, and support many formats.</p> http://stackoverflow.com/questions/829786/ways-to-implement-manipulation-handles-in-3d-view/831178#831178 1 Answer by tfinniga for Ways to implement manipulation handles in 3d view tfinniga 2009-05-06T19:03:08Z 2009-05-06T19:03:08Z <p>I've coded up a manipulator with handles for a 3d editing package, and ran into a lot of these same issues.</p> <p>First, there's an open source manipulator. I couldn't find it in my most recent search, probably because there's a plethora of names for these things - 3d widgets, gizmos, manipulators, gimbals, etc.</p> <p>Anyhow, the way I did it was to add a manipulator object to the scene that, when drawn, draws all of the handles. It does the same thing for bounding box computation, and selection.</p> <p>Reed's idea about keeping them the same size is interesting for handles that exist on objects, and might work there. For a manipulator, I found that it was more of a 3d UI element, and it was much more usable if it did not change size. I had a bug where the size was only determined based on the active viewport, which resulted in horrible huge/tiny manipulators in other viewports, very useless. If you're going to add them to the scene, you might want to add them per-viewport, or make them actually have a fixed size.</p> http://stackoverflow.com/questions/808441/inverse-bilinear-interpolation 4 Inverse Bilinear Interpolation? tfinniga 2009-04-30T18:38:57Z 2009-05-01T23:27:47Z <p>I have four 2d points, p0 = (x0,y0), p1 = (x1,y1), etc. that form a quadrilateral. In my case, the quad is not rectangular, but it should at least be convex.</p> <pre><code> p2 --- p3 | | t | p | | | p0 --- p1 s </code></pre> <p>I'm using bilinear interpolation. S and T are within [0..1] and the interpolated point is given by:</p> <pre><code>bilerp(s,t) = t*(s*p3+(1-s)*p2) + (1-t)*(s*p1+(1-s)*p0) </code></pre> <p>Here's the problem.. I have a 2d point p that I know is inside the quad. I want to find the s,t that will give me that point when using bilinear interpolation. </p> <p>Is there a simple formula to reverse the bilinear interpolation?</p> <p><hr /></p> <p>Thanks for the solutions. I posted my implementation of Naaff's solution as a wiki.</p> http://stackoverflow.com/questions/808441/inverse-bilinear-interpolation/813702#813702 1 Answer by tfinniga for Inverse Bilinear Interpolation? tfinniga 2009-05-01T23:27:47Z 2009-05-01T23:27:47Z <p>Here's my implementation of Naaff's solution, as a community wiki. Thanks again.</p> <p>This is a C implementation, but should work on c++. It includes a fuzz testing function.</p> <p><hr /></p> <pre><code>#include &lt;stdlib.h&gt; #include &lt;stdio.h&gt; #include &lt;math.h&gt; int equals( double a, double b, double tolerance ) { return ( a == b ) || ( ( a &lt;= ( b + tolerance ) ) &amp;&amp; ( a &gt;= ( b - tolerance ) ) ); } double cross2( double x0, double y0, double x1, double y1 ) { return x0*y1 - y0*x1; } int in_range( double val, double range_min, double range_max, double tol ) { return ((val+tol) &gt;= range_min) &amp;&amp; ((val-tol) &lt;= range_max); } /* Returns number of solutions found. If there is one valid solution, it will be put in s and t */ int inverseBilerp( double x0, double y0, double x1, double y1, double x2, double y2, double x3, double y3, double x, double y, double* sout, double* tout, double* s2out, double* t2out ) { int t_valid, t2_valid; double a = cross2( x0-x, y0-y, x0-x2, y0-y2 ); double b1 = cross2( x0-x, y0-y, x1-x3, y1-y3 ); double b2 = cross2( x1-x, y1-y, x0-x2, y0-y2 ); double c = cross2( x1-x, y1-y, x1-x3, y1-y3 ); double b = 0.5 * (b1 + b2); double s, s2, t, t2; double am2bpc = a-2*b+c; /* this is how many valid s values we have */ int num_valid_s = 0; if ( equals( am2bpc, 0, 1e-10 ) ) { if ( equals( a-c, 0, 1e-10 ) ) { /* Looks like the input is a line */ /* You could set s=0.5 and solve for t if you wanted to */ return 0; } s = a / (a-c); if ( in_range( s, 0, 1, 1e-10 ) ) num_valid_s = 1; } else { double sqrtbsqmac = sqrt( b*b - a*c ); s = ((a-b) - sqrtbsqmac) / am2bpc; s2 = ((a-b) + sqrtbsqmac) / am2bpc; num_valid_s = 0; if ( in_range( s, 0, 1, 1e-10 ) ) { num_valid_s++; if ( in_range( s2, 0, 1, 1e-10 ) ) num_valid_s++; } else { if ( in_range( s2, 0, 1, 1e-10 ) ) { num_valid_s++; s = s2; } } } if ( num_valid_s == 0 ) return 0; t_valid = 0; if ( num_valid_s &gt;= 1 ) { double tdenom_x = (1-s)*(x0-x2) + s*(x1-x3); double tdenom_y = (1-s)*(y0-y2) + s*(y1-y3); t_valid = 1; if ( equals( tdenom_x, 0, 1e-10 ) &amp;&amp; equals( tdenom_y, 0, 1e-10 ) ) { t_valid = 0; } else { /* Choose the more robust denominator */ if ( fabs( tdenom_x ) &gt; fabs( tdenom_y ) ) { t = ( (1-s)*(x0-x) + s*(x1-x) ) / ( tdenom_x ); } else { t = ( (1-s)*(y0-y) + s*(y1-y) ) / ( tdenom_y ); } if ( !in_range( t, 0, 1, 1e-10 ) ) t_valid = 0; } } /* Same thing for s2 and t2 */ t2_valid = 0; if ( num_valid_s == 2 ) { double tdenom_x = (1-s2)*(x0-x2) + s2*(x1-x3); double tdenom_y = (1-s2)*(y0-y2) + s2*(y1-y3); t2_valid = 1; if ( equals( tdenom_x, 0, 1e-10 ) &amp;&amp; equals( tdenom_y, 0, 1e-10 ) ) { t2_valid = 0; } else { /* Choose the more robust denominator */ if ( fabs( tdenom_x ) &gt; fabs( tdenom_y ) ) { t2 = ( (1-s2)*(x0-x) + s2*(x1-x) ) / ( tdenom_x ); } else { t2 = ( (1-s2)*(y0-y) + s2*(y1-y) ) / ( tdenom_y ); } if ( !in_range( t2, 0, 1, 1e-10 ) ) t2_valid = 0; } } /* Final cleanup */ if ( t2_valid &amp;&amp; !t_valid ) { s = s2; t = t2; t_valid = t2_valid; t2_valid = 0; } /* Output */ if ( t_valid ) { *sout = s; *tout = t; } if ( t2_valid ) { *s2out = s2; *t2out = t2; } return t_valid + t2_valid; } void bilerp( double x0, double y0, double x1, double y1, double x2, double y2, double x3, double y3, double s, double t, double* x, double* y ) { *x = t*(s*x3+(1-s)*x2) + (1-t)*(s*x1+(1-s)*x0); *y = t*(s*y3+(1-s)*y2) + (1-t)*(s*y1+(1-s)*y0); } double randrange( double range_min, double range_max ) { double range_width = range_max - range_min; double rand01 = (rand() / (double)RAND_MAX); return (rand01 * range_width) + range_min; } /* Returns number of failed trials */ int fuzzTestInvBilerp( int num_trials ) { int num_failed = 0; double x0, y0, x1, y1, x2, y2, x3, y3, x, y, s, t, s2, t2, orig_s, orig_t; int num_st; int itrial; for ( itrial = 0; itrial &lt; num_trials; itrial++ ) { int failed = 0; /* Get random positions for the corners of the quad */ x0 = randrange( -10, 10 ); y0 = randrange( -10, 10 ); x1 = randrange( -10, 10 ); y1 = randrange( -10, 10 ); x2 = randrange( -10, 10 ); y2 = randrange( -10, 10 ); x3 = randrange( -10, 10 ); y3 = randrange( -10, 10 ); /*x0 = 0, y0 = 0, x1 = 1, y1 = 0, x2 = 0, y2 = 1, x3 = 1, y3 = 1;*/ /* Get random s and t */ s = randrange( 0, 1 ); t = randrange( 0, 1 ); orig_s = s; orig_t = t; /* bilerp to get x and y */ bilerp( x0, y0, x1, y1, x2, y2, x3, y3, s, t, &amp;x, &amp;y ); /* invert */ num_st = inverseBilerp( x0, y0, x1, y1, x2, y2, x3, y3, x, y, &amp;s, &amp;t, &amp;s2, &amp;t2 ); if ( num_st == 0 ) { failed = 1; } else if ( num_st == 1 ) { if ( !(equals( orig_s, s, 1e-5 ) &amp;&amp; equals( orig_t, t, 1e-5 )) ) failed = 1; } else if ( num_st == 2 ) { if ( !((equals( orig_s, s , 1e-5 ) &amp;&amp; equals( orig_t, t , 1e-5 )) || (equals( orig_s, s2, 1e-5 ) &amp;&amp; equals( orig_t, t2, 1e-5 )) ) ) failed = 1; } if ( failed ) { num_failed++; printf("Failed trial %d\n", itrial); } } return num_failed; } int main( int argc, char** argv ) { int num_failed; srand( 0 ); num_failed = fuzzTestInvBilerp( 100000000 ); printf("%d of the tests failed\n", num_failed); getc(stdin); return 0; } </code></pre> http://stackoverflow.com/questions/761026/is-a-closed-polygonal-mesh-flipped 2 Is a closed polygonal mesh flipped? tfinniga 2009-04-17T16:03:01Z 2009-04-17T16:34:14Z <p>I have a 3d modeling application. Right now I'm drawing the meshes double-sided, but I'd like to switch to single sided when the object is closed.</p> <p>If the polygonal mesh is closed (no boundary edges/completely periodic), it seems like I should always be able to determine if the object is currently flipped, and automatically correct.</p> <p>Being flipped means that my normals point into the object instead of out of the object. Being flipped is a result of a mismatch between my winding rules and the current frontface setting, but I compute the normals directly from the geometry, so looking at the normals is a simple way to detect it.</p> <p>One thing I was thinking was to take the bounding box, find the highest point, and see if its normal points up or down - if it's down, then the object is flipped.</p> <p>But it seems like this solution might be prone to errors with degenerate geometry, or floating point error, as I'd only be looking at a single point. I guess I could get all 6 axis-aligned extents, but that seems like a slightly better kludge, and not a proper solution.</p> <p>Is there a robust, simple way to do this? Robust and hard would also work.. :)</p> http://stackoverflow.com/questions/604917/is-qt-worth-learning/605430#605430 6 Answer by tfinniga for Is Qt worth learning? tfinniga 2009-03-03T07:25:43Z 2009-03-03T07:25:43Z <p>Different languages have strengths and weaknesses when it comes to GUI programming. It turns out that Qt is the best cross-platform GUI library.</p> <p>If you only need windows support (and speed isn't a big issue) then c# is quite good.</p> <p>If you only need OS/X support, Objective-C/Cocoa is the best GUI library I've seen, period.</p> <p>Both c# and objective-c try to spare you from some of the difficulties of c++, which are not insubstantial. </p> <p>But if you need a fast cross-platform GUI, there's really nothing better than Qt. Not only do they abstract away the GUI bits, but tons of other stuff as well - storing settings, network access, directory traversal, internationalization, etc. Fantastic stuff.</p> http://stackoverflow.com/questions/594089/does-stdvector-clear-do-delete-free-memory-on-each-element/594747#594747 2 Answer by tfinniga for Does std::vector.clear() do delete (free memory) on each element? tfinniga 2009-02-27T13:32:18Z 2009-02-27T13:32:18Z <p>Here's one way that you can tell that it doesn't - try it on a class that's not fully defined:</p> <pre><code>#include &lt;vector&gt; class NotDefined; void clearVector( std::vector&lt;NotDefined*&gt;&amp; clearme ) { clearme.clear(); // is delete called here? } </code></pre> <p>If this snippet compiles, then it can't be calling the destructor, because the destructor isn't defined.</p> http://stackoverflow.com/questions/590730/powerful-audio-lib/592471#592471 0 Answer by tfinniga for Powerful audio lib tfinniga 2009-02-26T21:15:37Z 2009-02-26T21:15:37Z <p>I've used <a href="http://www.surina.net/soundtouch/" rel="nofollow">soundtouch</a> in the past. Focused on changing speed/pitch/etc.</p> http://stackoverflow.com/questions/583821/how-do-i-return-hundreds-of-values-from-a-c-function/586057#586057 0 Answer by tfinniga for How do I return hundreds of values from a C++ function? tfinniga 2009-02-25T13:53:06Z 2009-02-25T13:53:06Z <p>I'd say your new solution is more general, and better style. I'm not sure I'd worry <em>too</em> much about style in c++, more about usability and efficiency.</p> <p>If you're returning a lot of items, and know the size, using a vector would allow you to reserve the memory in one allocation, which may or may not be worth it.</p> http://stackoverflow.com/questions/1750796/solving-for-optimal-alignment-of-3d-polygonal-mesh/1751467#1751467 Comment by tfinniga on Solving for optimal alignment of 3d polygonal mesh tfinniga 2009-11-19T19:05:14Z 2009-11-19T19:05:14Z This is very helpful, especially the reference to the Procrustes problem. I got a little lost when you moved from T, V, and M to A and B. How do they relate to each other? http://stackoverflow.com/questions/1765014/convert-string-from-date-into-a-timet/1765088#1765088 Comment by tfinniga on Convert string from __DATE__ into a time_t tfinniga 2009-11-19T17:48:08Z 2009-11-19T17:48:08Z @Michael - it looks like t.tm_dst is not part of visual c++. http://stackoverflow.com/questions/1750796/solving-for-optimal-alignment-of-3d-polygonal-mesh/1752561#1752561 Comment by tfinniga on Solving for optimal alignment of 3d polygonal mesh tfinniga 2009-11-18T03:56:23Z 2009-11-18T03:56:23Z That's a good point. In my case the topology is very important and not world aligned, which is why I'm trying a template system.. my output will be the control cage of a subdivision surface. If I didn't need to have a good topology I'd probably go the implicit surface/marching cubes route. http://stackoverflow.com/questions/1590462/what-is-negative-squared-euclidean-distance/1590475#1590475 Comment by tfinniga on What is negative squared euclidean distance? tfinniga 2009-10-19T19:31:44Z 2009-10-19T19:31:44Z Thanks Adam, I clarified my answer. http://stackoverflow.com/questions/1561183/c-operator-overloading-understanding-the-google-style-guide/1561260#1561260 Comment by tfinniga on C++ operator overloading, understanding the Google style guide tfinniga 2009-10-13T16:17:46Z 2009-10-13T16:17:46Z Good points on why this is a recommendation. On the other hand, many types only ever need to be sorted one way. It's not too difficult to switch from using operator&lt; to a functor if you own all the code, the main difficulty is if you are producing a library for others to use and can't just bounce changes off the compiler. http://stackoverflow.com/questions/1545222/how-do-you-define-an-opaque-struct-array-in-c/1545244#1545244 Comment by tfinniga on How do you define an opaque struct array in C? tfinniga 2009-10-09T18:10:49Z 2009-10-09T18:10:49Z Ah, I had interpreted the brackets as an overloaded operator[] call. http://stackoverflow.com/questions/1515828/getting-the-point-of-a-catmull-rom-spline-after-a-certain-distance/1532234#1532234 Comment by tfinniga on Getting the point of a catmull rom spline after a certain distance? tfinniga 2009-10-09T15:46:45Z 2009-10-09T15:46:45Z I just recently heard about the AGG library, but I'm very impressed with it. http://stackoverflow.com/questions/1522107/how-can-i-communicate-between-two-c-mfc-plugins/1522123#1522123 Comment by tfinniga on How can I communicate between two C++ MFC plugins? tfinniga 2009-10-05T20:29:04Z 2009-10-05T20:29:04Z Thanks, that's a great list. I can also use intraprocess communications, because we're both dlls hosted in the same process. http://stackoverflow.com/questions/1380371/what-are-the-most-widely-used-c-vector-matrix-math-linear-algebra-libraries-an/1380436#1380436 Comment by tfinniga on What are the most widely used C++ vector/matrix math/linear algebra libraries, and their cost and benefit tradeoffs? tfinniga 2009-09-09T18:49:01Z 2009-09-09T18:49:01Z What I was trying to say is that rational NURBS and Beziers use rational control points much more than most 3d applications, so we were making more mistakes. Typically most 3d apps only have vanilla 3d points and vectors until after going through the perspective transform. Many of our algorithms have to be able to correctly handle weighted/rational/projective and cartesian points, going back and forth, etc. http://stackoverflow.com/questions/1364793/initializing-arrays-in-c/1364815#1364815 Comment by tfinniga on Initializing arrays in C++ tfinniga 2009-09-03T22:37:16Z 2009-09-03T22:37:16Z @sbi thanks, fixed http://stackoverflow.com/questions/1369292/is-it-possible-to-generate-a-global-list-of-marked-strings-at-compile-time-runtim/1369750#1369750 Comment by tfinniga on Is it possible to generate a global list of marked strings at compile time/runtime? tfinniga 2009-09-02T23:00:41Z 2009-09-02T23:00:41Z It looks like this is about the best solution, which is to say that there's no really clean solution. I guess that makes sense, since everyone I've seen, from gettext to Qt all just implement a little parser. http://stackoverflow.com/questions/1369292/is-it-possible-to-generate-a-global-list-of-marked-strings-at-compile-time-runtim/1369341#1369341 Comment by tfinniga on Is it possible to generate a global list of marked strings at compile time/runtime? tfinniga 2009-09-02T18:38:19Z 2009-09-02T18:38:19Z Yes, this is what it looks like I'll end up doing. I was just wondering if there's a better way. http://stackoverflow.com/questions/1324051/how-to-compute-a-pair-of-closest-points-on-two-3d-circles/1324554#1324554 Comment by tfinniga on How to compute a pair of closest points on two 3d circles? tfinniga 2009-08-27T19:17:46Z 2009-08-27T19:17:46Z My first attempt at a solution was using Frenet frames, which led to bad results, I think when the curve has an inflection point. I'll try to get a screenshot up here shortly. http://stackoverflow.com/questions/1324051/how-to-compute-a-pair-of-closest-points-on-two-3d-circles/1324975#1324975 Comment by tfinniga on How to compute a pair of closest points on two 3d circles? tfinniga 2009-08-24T22:12:32Z 2009-08-24T22:12:32Z Good point, I'll have to check my assumptions. I think for piping a curve, there's got to be some kind of constraint between minimum radius of curvature and radius of the pipe. I'm still trying to visualize what's going on with the example you posted, but it seems related. The twisting I'm worried about is twisting about the tangent.. http://stackoverflow.com/questions/170036/decent-profiler-for-windows/264033#264033 Comment by tfinniga on Decent profiler for Windows? tfinniga 2009-06-15T16:26:56Z 2009-06-15T16:26:56Z I didn't downvote, but the link you sent is basically a manual sampling profiler.