User Adrian - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T18:29:08Zhttp://stackoverflow.com/feeds/user/23624http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1190112/comparing-default-constructed-iterators-with-operator3Comparing default-constructed iterators with operator==Adrian2009-07-27T19:24:42Z2009-07-27T19:53:27Z
<p>Does the C++ Standard say I should be able to compare two default-constructed STL iterators for equality? Are default-constructed iterators equality-comparable?</p>
<p>I want the following, using std::list for example:</p>
<pre><code>void foo(const std::list<int>::iterator iter) {
if (iter == std::list<int>::iterator()) {
// Something
}
}
std::list<int>::iterator i;
foo(i);
</code></pre>
<p>What I want here is something like a NULL value for iterators, but I'm not sure if it's legal. In the STL implementation included with Visual Studio 2008, they include assertions in std::list's operator==() that preclude this usage. (They check that each iterator is "owned" by the same container and default-constructed iterators have no container.) This would hint that it's not legal, or perhaps that they're being over-zealous.</p>
http://stackoverflow.com/questions/74326/how-should-i-detect-unnecessary-include-files-in-a-large-c-project/273669#2736691Answer by Adrian for How should I detect unnecessary #include files in a large C++ project?Adrian2008-11-07T21:19:03Z2008-11-07T21:19:03Z<p>If you're interested in this topic in general, you might want to check out Lakos' <a href="http://rads.stackoverflow.com/amzn/click/0201633620" rel="nofollow" title="Large-Scale C++ Software Design">Large Scale C++ Software Design</a>. It's a bit dated, but goes into lots of "physical design" issues like finding the absolute minimum of headers that need to be included. I haven't really seen this sort of thing discussed anywhere else.</p>
http://stackoverflow.com/questions/155670/invert-4x4-matrix-numerical-most-stable-solution-needed/155705#1557057Answer by Adrian for Invert 4x4 matrix - Numerical most stable solution needed.Adrian2008-10-01T00:24:52Z2008-10-01T00:24:52Z<p>Meta-answer: Is it really a general 4x4 matrix? If your matrix has a special form, then there are direct formulas for inverting that would be fast and keep your operation count down.</p>
<p>For example, if it's a standard homogenous coordinate transform from graphics, like:</p>
<pre><code>[ux vx wx tx]
[uy vy wy ty]
[uz vz wz tz]
[ 0 0 0 1]
</code></pre>
<p>then there's an <a href="http://www-graphics.stanford.edu/courses/cs248-98-fall/Final/q4.html" rel="nofollow">easily-derivable direct formula</a>, which is</p>
<pre><code>[ux uy uz -dot(u,t)]
[vx vy vz -dot(v,t)]
[wx wy wz -dot(w,t)]
[ 0 0 0 1 ]
</code></pre>
<p>(ASCII matrices stolen from the linked page.)</p>
<p>You probably can't beat that for loss of precision in fixed point.</p>
<p>If your matrix comes from some domain where you know it has more structure, then there's likely to be an easy answer.</p>
http://stackoverflow.com/questions/155490/os-independent-api-to-monitor-file-system/155675#1556751Answer by Adrian for OS-independent API to monitor file system?Adrian2008-10-01T00:11:14Z2008-10-01T00:11:14Z<p>And on OS X it's called <a href="http://en.wikipedia.org/wiki/FSEvents" rel="nofollow">fsevents</a>. It's an OS-level API, so it's easiest to access from C or C++. It <em>should</em> be accessible from nearly any language, although bindings for your preferred language may not have been written yet.</p>
http://stackoverflow.com/questions/25646/what-could-prevent-opengl-gldrawpixels-from-working-on-some-video-cards/154444#1544441Answer by Adrian for What could prevent OpenGL glDrawPixels from working on some video cards?Adrian2008-09-30T18:57:06Z2008-09-30T18:57:06Z<p>The default raster position should be (0,0,0,1), but you can reset it to make sure.</p>
<p>Just before calling glDrawPixels(), try </p>
<pre><code>GLint valid;
glGet(GL_CURRENT_RASTER_POSITION_VALID, &valid);
</code></pre>
<p>This should tell you if the current raster position is valid. If it is, then this is not your problem.</p>
http://stackoverflow.com/questions/154079/what-is-the-formula-for-alpha-blending-for-a-number-of-pixels/154234#1542346Answer by Adrian for What is the formula for alpha blending for a number of pixels?Adrian2008-09-30T18:03:46Z2008-09-30T18:11:11Z<p>Alpha-blending is one of those topics that has more depth than you might think. It depends on what the alpha value means in your system, and if you guess wrong, then you'll end up with results that look kind of okay, but that display weird artifacts.</p>
<p>Check out Porter and Duff's classic paper "<a href="http://keithp.com/~keithp/porterduff/p253-porter.pdf" rel="nofollow">Compositing Digital Images</a>" for a great, readable discussion and all the formulas. You probably want the "over" operator.</p>
<p>It sounds like you're doing something closer to volume rendering. For a formula and references, see the <a href="http://www.faqs.org/faqs/graphics/algorithms-faq/" rel="nofollow">Graphics FAQ</a>, question 5.16 "How do I perform volume rendering?". </p>
http://stackoverflow.com/questions/154185/what-is-object-marshalling/154201#1542019Answer by Adrian for What is object marshalling?Adrian2008-09-30T17:52:43Z2008-09-30T17:52:43Z<p>Converting an object in memory into a format that can be written to disk, or sent over the wire, etc. </p>
<p><a href="http://en.wikipedia.org/wiki/Marshalling_(computer_science)" rel="nofollow">Wikipedia's description</a>.</p>
http://stackoverflow.com/questions/151299/embedding-svn-revision-number-at-compile-time-in-a-windows-app/151317#1513174Answer by Adrian for Embedding SVN Revision number at compile time in a Windows appAdrian2008-09-30T00:35:04Z2008-09-30T00:35:04Z<p>You can get <a href="http://svnbook.red-bean.com/nightly/en/svn.advanced.props.special.keywords.html" rel="nofollow">SVN to embed it for you</a>, if that will solve the problem. See the $Rev$ keyword on that page.</p>
http://stackoverflow.com/questions/151268/how-to-force-abort-on-glibc-detected-free-invalid-pointer/151286#1512861Answer by Adrian for How to force abort on "glibc detected *** free(): invalid pointer"Adrian2008-09-30T00:20:19Z2008-09-30T00:29:15Z<p>In general, it looks like you might have to recompile glibc, ugh.</p>
<p>You don't say what environment you're running on, but if you can recompile your code for OS X, then its version of libc has a free() that listens to this environment variable:</p>
<pre><code>MallocErrorAbort If set, causes abort(3) to be called if an
error was encountered in malloc(3) or
free(3) , such as a calling free(3) on a
pointer previously freed.
</code></pre>
<p>The man page for free() on OS X has more information. </p>
<p>If you're on Linux, then try <a href="http://valgrind.org/" rel="nofollow">Valgrind</a>, it can find some impossible-to-hunt bugs.</p>
http://stackoverflow.com/questions/100959/mac-sqlite-editor/151254#1512542Answer by Adrian for Mac SQLite editorAdrian2008-09-29T23:59:11Z2008-09-29T23:59:11Z<p>I like the cross-platform <a href="http://sqlitebrowser.sourceforge.net/" rel="nofollow">SQLite Database Browser</a>. It's simple and fast.</p>
http://stackoverflow.com/questions/1190112/comparing-default-constructed-iterators-with-operator/1190135#1190135Comment by Adrian on Comparing default-constructed iterators with operator==Adrian2009-07-27T19:34:58Z2009-07-27T19:34:58ZI understand what you're saying, but the semantics really call for a single item -- much like std::list::erase(). I may be abusing the concept of an iterator; that's what I'm interested in discovering.http://stackoverflow.com/questions/191757/c-concatenate-string-and-int/199709#199709Comment by Adrian on C++ concatenate string and intAdrian2009-02-02T17:30:47Z2009-02-02T17:30:47ZDid you actually try this? I'm certain that std::string doesn't support these operations -- how would it know how you want the number formatted, etc? Maybe you are using some kind of extended string class that allows these operations, but it's not in the standard...http://stackoverflow.com/questions/9938/generic-iterator/9972#9972Comment by Adrian on Generic iteratorAdrian2009-01-09T17:04:16Z2009-01-09T17:04:16ZThomas Becker (author of the second link above) has a longer article which is excellent: <a href="http://www.artima.com/cppsource/type_erasure.html" rel="nofollow">artima.com/cppsource/type_erasure.html</a>http://stackoverflow.com/questions/75538/hidden-features-of-c/78840#78840Comment by Adrian on Hidden Features of C++?Adrian2008-10-17T03:51:49Z2008-10-17T03:51:49ZI was not expecting to laugh out loud while reading these answers. ;)http://stackoverflow.com/questions/117293/use-of-const-for-function-parameters/117557#117557Comment by Adrian on Use of 'const' for function parametersAdrian2008-10-01T01:03:51Z2008-10-01T01:03:51ZAnd it can catch bugs <i>inside</i> the function -- if you know that a parameter shouldn't be changed, then declaring it const means that the compiler will tell you if you accidently modify it.