User Coincoin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T19:19:59Zhttp://stackoverflow.com/feeds/user/42http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810163/c-copy-constructor-a-class-that-contains-other-objects/1810198#18101980Answer by Coincoin for C++ copy constructor a class that contains other objectsCoincoin2009-11-27T18:47:24Z2009-12-07T20:37:05Z<p>The compiler will generate the needed constructors for you.</p>
<p>However, as soon as you define a copy-constructor yourself, the compiler gives up generating anything for that class and will give and error if you don't have the appropriate constructors defined.</p>
<p>Using your example:</p>
<pre><code>class Baz {
Baz(const Baz& b) {}
int j;
};
class Bar {
int i;
Baz baz;
};
class Foo {
Bar bar;
};
</code></pre>
<p>Trying to default instantiate or copy-construct Foo will throw an error since Baz is not copy-constructable and the compiler can't generate the default and copy constroctor for Foo.</p>
http://stackoverflow.com/questions/1684362/convert-from-32-bpp-to-8-bpp-indexed-c/1703675#17036752Answer by Coincoin for Convert from 32-BPP to 8-BPP Indexed (C#)Coincoin2009-11-09T20:44:49Z2009-11-09T20:44:49Z<p>Nothing will help you with GDI. It seems indexed images are too backward a technology for Microsoft to care. All you can do is read and write indexed image files.</p>
<p>There are usually two step when quantizing colors in an image:<br>
1) Find the best palette for the image (Color Quantization)<br>
2) Map the source solors to the found palette (Color Mapping) </p>
<p>From what I understand, you already have the palette in the database, that means the hardest part has been done for you. All you need to do is map the 24 bit colors to the provided palette colors. If you don't have the starting palette, then you will have to compute it yourself using a quantisation algorithm: Octrees or Median Cut are the most well known. Median Cut gives better results but is slower and harder to implement and fine tune.</p>
<p>To map the colors, the simplest algorithm in your case is to calculate the distance from your source color to all the palette colors and pick the nearest. </p>
<pre><code>float ColorDistanceSquared(Color c1, Color c2)
{
float deltaR = c2.R - c1.R;
float deltaG = c2.G - c1.G;
float deltaB = c2.B - c1.B;
return deltaR*deltaR + deltaG*deltaG + deltaB*deltaB;
}
</code></pre>
<p>You can also ponderate the channels so that blue has less weight, don't go too overboard with it, else it will give horrible results, specifically 30/59/11 won't work at all:</p>
<pre><code>float ColorDistanceSquared(Color c1, Color c2)
{
float deltaR = (c2.R - c1.R) * 3;
float deltaG = (c2.G - c1.G) * 3;
float deltaB = (c2.B - c1.B) * 2;
return deltaR*deltaR + deltaG*deltaG + deltaB*deltaB;
}
</code></pre>
<p>Call that thing for all source and palette colors and find the Min. If you cache your results as you go in a map, this will be very fast.</p>
<p>Also, the source color will rarely fit a palette color enough to not create banding and plain areas and loss of details in your image. To avoid that, you can use dithering. The simplest algorithm and the one that gives the best results is Error Diffusion Dithering. </p>
<p>Once you mapped your colors, you will have to manually lock a Bitmap and write the indices in there as .Net won't let you write to an indexed image.</p>
http://stackoverflow.com/questions/1631425/actual-total-size-of-structs-members/1631447#16314473Answer by Coincoin for Actual total size of struct's membersCoincoin2009-10-27T15:06:48Z2009-10-27T15:12:27Z<p>You will have to pack your structure.</p>
<p>The way to do that changes depending on the compiler you are using.</p>
<p>For visual c++:</p>
<pre><code>#pragma pack(push)
#pragma pack(1)
struct PackedStruct {
/* members */
};
#pragma pack(pop)
</code></pre>
<p>This will tell the compiler to not pad members in the structure and restore the pack parameter to its initial value. Be aware that this will affect performance. If this struicture is used in critical code, you might want to copy the unpacked structure into a packed structure.</p>
<p>Also, resist temptations to use the command line parameter that totally disable padding, this will greatly affect performance.</p>
http://stackoverflow.com/questions/1535253/how-can-i-generate-images-of-circles-of-varying-sizes/1535395#15353951Answer by Coincoin for How can I generate images of circles, of varying sizes?Coincoin2009-10-08T03:03:21Z2009-10-08T03:27:16Z<p>Your strategy sounds good.</p>
<p>Simply create a <code>Bitmap</code> of the correct size, create a <code>Graphics</code> object using <code>Graphics.FromImage()</code>.</p>
<p>Clear the <code>Graphics</code> using <code>Color.Transparent</code> and draw a black circle with <code>FillCircle()</code>.</p>
<p>If you need antialiasing, set smoothing mode to high quality.</p>
http://stackoverflow.com/questions/1535392/hlsl-swizzle-in-c/1535435#15354350Answer by Coincoin for HLSL Swizzle - in C#Coincoin2009-10-08T03:16:06Z2009-10-08T03:16:06Z<p>I am not aware of anything similar to HLSL swizzles in C#.</p>
<p>Swizzles are mostly used to micro-optimize math operations, to convert from all the different vector format inherent to texture formats, or on the old very limited hardware, to compact several constants in a single vector or matrix.</p>
<p>Swizzles are not used enough in-program to be worth any sort of syntaxic sugar. When needed it is still possible to do something not that contrieved such as:</p>
<pre><code>Vector4 v3 = new Vector4(v1.x, v1.y, v2.z, v2.w);
</code></pre>
<p>Creating thousands of properties all mapping to others would be very cumbersome and possibly quite slow. You could also create a function that uses strings, but this would also be slow. It could be possible using a dynamic type in C# 4.0, once again with a performance penalty.</p>
http://stackoverflow.com/questions/1535043/use-debug-exe-to-restore-a-deleted-file/1535071#15350711Answer by Coincoin for Use debug.exe to restore a deleted fileCoincoin2009-10-08T01:06:00Z2009-10-08T01:21:25Z<p>With debug you could read and write directly from the hard drive. It was a very complicated and risky procedure.</p>
<p>Basically, what you had to do is find the boot record to locate the file allocation table (FAT) that you needed to restore you file from. Then, you would locate the file's first cluster on the drive as well as the size of the file from the file entries. Once you knew the first block and size, you would hope that the file was not fragmented or overwritten and could simply extract the information there. </p>
<p>There was also an undelete application that could do that automatically for you.</p>
<p>Today, all this can be done using ::CreateFile() on the volume path <code>\\.\C:</code> and using the handle to ::ReadFile() directly from the volume. The success rate is especially high if you know exactly what the file header looks like, you can then very easily search drive sector by sector for that specific header and hope the file is not fragmented or overwritten. Then you can simply read the information directly from the drive and dump it into a new file. There is no need to fiddle with the file system.</p>
<p>If the file was fragmented prior to deletion, it's probably gone for good because you no longer have the information to locate all the file's parts, except maybe the first cluster.</p>
http://stackoverflow.com/questions/1535078/moving-between-two-specific-points/1535103#15351030Answer by Coincoin for Moving between two specific pointsCoincoin2009-10-08T01:16:28Z2009-10-08T01:16:28Z<p>A simple linear interpolation will do the trick.</p>
<pre><code>R = P1 + (P2 - P1) * f;
</code></pre>
<p>R being the result position, P1 the first position, P2 the second position and f the interpolation factor (0.5 for the exact middle).</p>
<p>For a point, just apply on both coordinate if your point class doesn't support basic maths (such as System.Drawing.Point)</p>
<pre><code>Dim R as Point;
R.X = P1.X + (P2.X - P1.X) * f;
R.Y = P1.Y + (P2.Y - P1.Y) * f;
</code></pre>
http://stackoverflow.com/questions/1515438/which-managed-classes-in-net-framework-allocate-or-use-unmanaged-memory/1515478#15154782Answer by Coincoin for Which managed classes in .NET Framework allocate (or use) unmanaged memory?Coincoin2009-10-04T02:52:13Z2009-10-05T00:51:59Z<p>If it implements <code>IDisposable</code> there is a very good chance it owns unmanaged data, or it's owning a managed class that ultimately owns unmanaged data. If it has <code>Finalize()</code>, it's sign that it directly owns unmanaged data.</p>
<p>As a rule of thumb, if it implements <code>IDisposable</code>, then <code>Dispose()</code> it as soon as you're done.</p>
http://stackoverflow.com/questions/1467177/given-normal-map-in-world-space-what-is-a-suitable-algorithm-to-find-edges/1515473#15154731Answer by Coincoin for Given normal map in world space what is a suitable algorithm to find edges?Coincoin2009-10-04T02:49:29Z2009-10-04T02:49:29Z<p>I assume you are trying to make cartoon style edges for a cell shader?</p>
<p>If so, simply make a dot product of the world space normal with the world space pixel position minus camera position. As long as your operands are all in the same space you should be ok.</p>
<pre><code>float edgy = dot(world_space_normal, pixel_world_pos - camera_world_pos);
</code></pre>
<p>If <code>edgy</code> is near 0, it's an edge.</p>
<p>If you want a screen space sized edge you will need to render additional object id information on another surface and post process the differences to the color surface.</p>
http://stackoverflow.com/questions/1513835/c-reading-windows-events-on-xp-the-time-is-out-by-1-hour-reading-vista-the-time/1514260#15142600Answer by Coincoin for C# Reading Windows events on XP the time is out by 1 hour, reading Vista the time is correctCoincoin2009-10-03T16:53:35Z2009-10-03T16:53:35Z<p>Is your XP machine updated? There was an extension to the daylight saving time last year that needed an XP update to be calculated correctly.</p>
http://stackoverflow.com/questions/1504251/heap-corruption-what-could-the-cause-be/1504304#15043042Answer by Coincoin for Heap corruption: What could the cause be?Coincoin2009-10-01T14:29:59Z2009-10-01T14:52:45Z<p>Welcome to hell. There is no easy solution so I will only provide some pointers.</p>
<p>Try to reproduce the bug in a debug environement. Debuggers can pad your heap allocations with bound checks and will tell you if you wrote in those bound checks. Also, it will consistently allocate memory using the same virtual addresses, making reproductibility easier.</p>
<p>In that case, you can try an analyser tool such as Purify. They will detect pretty much anything nasty that your code is doing but will also run VERY slowly. Such a tool will detect out of bound memory access, freed memory access, trying to free twice the same block, using the wrong allocator/deallocators, etc... Those are all kind of conditions that can stay latent for very long and only crash at the most inopportune moment.</p>
http://stackoverflow.com/questions/1493862/making-methods-all-static-in-class/1493887#14938871Answer by Coincoin for Making Methods All Static in ClassCoincoin2009-09-29T17:20:15Z2009-10-01T14:18:52Z<p>Utility classes are often composed of independant methods that don't need state. In that case it is good practice to make those method static. You can as well make the class static, so it can't be instantiated.</p>
<p>With C# 3, you can also take advantage of extension methods, that will extend other classes with those methods. Note that in that case, making the class static is required.</p>
<pre><code>public static class MathUtil
{
public static float Clamp(this float value, float min, float max)
{
return Math.Min(max, Math.Max(min, value));
}
}
</code></pre>
<p>Usage:</p>
<pre><code>float f = ...;
f.Clamp(0,1);
</code></pre>
http://stackoverflow.com/questions/1493749/visual-studio-project-how-to-include-a-reference-for-one-configuration-only/1493843#14938432Answer by Coincoin for Visual Studio Project: How to include a reference for one configuration only?Coincoin2009-09-29T17:12:03Z2009-09-29T17:12:03Z<p>Unload the project and open it as .XML</p>
<p>Locate the reference item tag and add a Condition attribute.</p>
<p>For instance:</p>
<pre><code><ItemGroup>
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Xml" />
<Reference Include="MyUtilities.Debug"
Condition=="'$(Configuration)'=='Debug'"/>
</ItemGroup>
</code></pre>
<p>Notice the last reference now has a condition.</p>
http://stackoverflow.com/questions/1493801/c-how-to-pass-a-generic-class-as-a-parameter-to-a-non-generic-class-constructor/1493828#14938281Answer by Coincoin for C# How to pass a Generic class as a Parameter to a non-generic class constructorCoincoin2009-09-29T17:08:49Z2009-09-29T17:08:49Z<p>Make ClientRequestInfo(K,V) implement a ClientRequestInfo interface with the interface functions SynchRequest will needs.</p>
http://stackoverflow.com/questions/1493740/sort-points-vertically-then-horizontally/1493796#149379610Answer by Coincoin for Sort Points vertically then horizontallyCoincoin2009-09-29T17:00:44Z2009-09-29T17:00:44Z<p>No you can't just sort twice because the .Net framework Sort() algorithm is an unstable sort, which means that when you sort items, the order they originaly were in is not taken into account, that is, when two items are equal, their position relative to each other will be undefined.</p>
<p>What you will need to do is implement a custom IComparer for the class you are trying to sort and use that comparer when sorting your collection:</p>
<pre><code>class PointComparer : IComparer<Point>
{
public int Compare(Point x, Point y)
{
if (x.Y != y.Y)
{
return x.Y - y.Y;
}
else
{
return x.X - y.X;
}
}
}
</code></pre>
<p>Usage:</p>
<pre><code>List<Point> list = ...;
list.Sort(new PointComparer());
</code></pre>
http://stackoverflow.com/questions/1493203/alarm-clock-application-in-net/1493235#14932355Answer by Coincoin for Alarm clock application in .NetCoincoin2009-09-29T15:16:48Z2009-09-29T15:26:14Z<p>Or, you could create a timer with an interval of 1 second and check the current time every second until the event time is reached, if so, you raise your event.</p>
<p>You can make a simple wrapper for that :</p>
<pre><code>public class AlarmClock
{
public AlarmClock(DateTime alarmTime)
{
this.alarmTime = alarmTime;
timer = new Timer();
timer.Elapsed += timer_Elapsed;
timer.Interval = 1000;
timer.Start();
enabled = true;
}
void timer_Elapsed(object sender, ElapsedEventArgs e)
{
if(enabled && DateTime.Now > alarmTime)
{
enabled = false;
OnAlarm();
timer.Stop();
}
}
protected virtual void OnAlarm()
{
if(alarmEvent != null)
alarmEvent(this, EventArgs.Empty);
}
public event EventHandler Alarm
{
add { alarmEvent += value; }
remove { alarmEvent -= value; }
}
private EventHandler alarmEvent;
private Timer timer;
private DateTime alarmTime;
private bool enabled;
}
</code></pre>
<p>Usage:</p>
<pre><code>AlarmClock clock = new AlarmClock(someFutureTime);
clock.Alarm += (sender, e) => MessageBox.Show("Wake up!");
</code></pre>
<p>Please note the code above is very sketchy and not thread safe.</p>
http://stackoverflow.com/questions/1493187/c-read-text-formatting/1493219#14932190Answer by Coincoin for C# Read text formatting?Coincoin2009-09-29T15:15:00Z2009-09-29T15:15:00Z<p>By formatting you mean a phone number or date format?</p>
<p>If yes. Use regular expressions.</p>
<p>Take a look at the System.Text.RegularExpressions namespace. Everything there should help you.</p>
http://stackoverflow.com/questions/18059/prevent-webbrowser-control-from-swallowing-exceptions0Prevent WebBrowser control from swallowing exceptionsCoincoin2008-08-20T14:10:39Z2009-09-29T14:47:38Z
<p>I'm using the System.Windows.Forms.WebBrowser, to make a view a la Visual Studio Start Page. However, it seems the control is catching and handling all exceptions by silently sinking them! No need to tell this is a very unfortunate behaviour.</p>
<pre><code>void webBrowserNavigating(object sender, WebBrowserNavigatingEventArgs e)
{
// WebBrowser.Navigating event handler
throw new Exception("OMG!");
}
</code></pre>
<p>The code above will cancel navigation and swallow the exception.</p>
<pre><code>void webBrowserNavigating(object sender, WebBrowserNavigatingEventArgs e)
{
// WebBrowser.Navigating event handler
try
{
e.Cancel = true;
if (actions.ContainsKey(e.Url.ToString()))
{
actions[e.Url.ToString()].Invoke(e.Url, webBrowser.Document);
}
}
catch (Exception exception)
{
MessageBox.Show(exception.ToString());
}
}
</code></pre>
<p>So, what I do (above) is catch all exceptions and pop a box, this is better than silently failing but still clearly far from ideal. I'd like it to redirect the exception through the normal application failure path so that it ultimately becomes unhandled, or handled by the application from the root.</p>
<p>Is there any way to tell the WebBrowser control to stop sinking the exceptions and just forward them the natural and expected way? Or is there some hacky way to throw an exception through native boundaries?</p>
http://stackoverflow.com/questions/18059/prevent-webbrowser-control-from-swallowing-exceptions/1493026#14930260Answer by Coincoin for Prevent WebBrowser control from swallowing exceptionsCoincoin2009-09-29T14:47:38Z2009-09-29T14:47:38Z<p>My best bet why it happens is because there is a native-managed-native boundary to cross. The native part doesn't forward the managed exceptions correctly and there is not much that can be done.</p>
<p>I am still hoping for a better answer though.</p>
http://stackoverflow.com/questions/1489361/override-abstract-readonly-property-to-read-write-property2Override abstract readonly property to read/write property.Coincoin2009-09-28T21:04:11Z2009-09-28T21:13:17Z
<p>I would like to only force the implementation of a C# getter on a given property from a base abstract class. Derived classes might, if they want, also provide a setter for that property for public use of the statically bound type.</p>
<p>Given the following abstract class:</p>
<pre><code>public abstract class Base
{
public abstract int Property { get; }
}
</code></pre>
<p>If I want a derived class that also implements a setter, I could naively try: </p>
<pre><code>public class Derived : Base
{
public override int Property
{
get { return field; }
set { field = value; } // Error : Nothing to override.
}
private int field;
}
</code></pre>
<p>But then I get a syntax error since I try to override the non existing setter. I tried some other way such as declaring the base setter private and such and I still stumble upon all kind of errors preventing me from doing that. There must be a way to do that as it doesn't break any base class contract.</p>
<p>Incidentaly, it can be done with interfaces, but I really need that default implementation.</p>
<p>I stumbled into that situation so often, I was wondering if there was a hidden C# syntax trick to do that, else I will just live with it and implement a manual SetProperty() method.</p>
http://stackoverflow.com/questions/1423027/can-code-be-run-when-an-object-falls-out-of-scope-in-net/1423042#14230424Answer by Coincoin for Can code be run when an object falls out of scope in .Net?Coincoin2009-09-14T18:03:57Z2009-09-14T18:03:57Z<p>The using keyword with an object implementing IDisposable does just that.</p>
<p>For instance:</p>
<pre><code>using(FileStream stream = new FileStream("string", FileMode.Open))
{
// Some code
}
</code></pre>
<p>This is replaced by the compiler to:</p>
<pre><code>FileStream stream = new FileStream("string", FileMode.Open);
try
{
// Some code
}
finally
{
stream.Dispose();
}
</code></pre>
http://stackoverflow.com/questions/3867/automated-release-script-and-visual-studio-setup-projects1Automated release script and Visual Studio Setup projectsCoincoin2008-08-06T19:04:51Z2009-08-26T20:28:27Z
<P>I think most people here understand the importance of fully automated builds.</P>
<P>The problem is one of our project is now using an integrated Visual Studio Setup project (vdproj) and has recently been ported to Visual Studio 2008. Unfortunatly, those won't build in MSBuild and calling devenv.exe /build on 2008 just crashes, apparently it does that on all multi core computer (!!!). So now I have the choice to either rollback to .Net 2.0 and 2005 or simply ditch Visual Studio deployement, but first, I'd like a second opinion.</P>
<P>Anyone knows of another automated way to build a .vdproj that will not require us to open the IDE and click on stuff?</P>
http://stackoverflow.com/questions/1252741/c-class-forward-declaration-drawbacks/1252834#12528345Answer by Coincoin for C++ Class forward declaration drawbacks?Coincoin2009-08-10T01:49:45Z2009-08-10T02:18:37Z<p>The main drawback is everything. Forward declarations are a compromise to save compilation time and let you have cyclic dependencies between objects. However, the cost is you can only use the type as references and can't do anything with those references. That means, no inheritance, no passing it as a value, no using any nested type or typedef in that class, etc... Those are all big drawbacks.</p>
<p>The specific destruction problem you are talking about is if you only forward declare a type and happen to only delete it in the module, the behavior is undefined and no error will be thrown.</p>
<p>For instance:</p>
<pre><code>class A;
struct C
{
F(A* a)
{
delete a; // OUCH!
}
}
</code></pre>
<p>Microsoft C++ 2008 won't call any destructor and throw the following warning:</p>
<pre><code>warning C4150: deletion of pointer to incomplete type 'A'; no destructor called
: see declaration of 'A'
</code></pre>
<p>So you have to stay alert, which should not be a problem if you are treating warnings as errors.</p>
http://stackoverflow.com/questions/1252857/lock-a-winforms-control/1252866#12528664Answer by Coincoin for Lock a winforms controlCoincoin2009-08-10T02:07:06Z2009-08-10T02:12:13Z<p>In a well behaving application, windows forms controls are already restricted to only one thread. If any thread tries to access a control created in a different thread, an exception will be thrown.</p>
<p>There is nothing wrong about your code, just know that right now it's <em>mostly</em> useless unless you are hacking your way through the protection (which is possible).</p>
<p>Usually, when you have data being created or manipulated in a working thread, the working thread will send an event to the UI thread to update the UI. In no way should a working thread updates the UI itself, it will automatically fail.</p>
http://stackoverflow.com/questions/1252786/how-to-know-a-certain-disks-formatis-fat32-or-ntfs/1252798#12527988Answer by Coincoin for How to know a certain disk's format(is FAT32 or NTFS)Coincoin2009-08-10T01:25:20Z2009-08-10T01:34:56Z<p>The Win32API function ::GetVolumeInformation is what you are looking for.</p>
<p>From MSDN:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa364993%28VS.85%29.aspx" rel="nofollow">GetVolumeInformation Function</a></p>
<pre><code>BOOL WINAPI GetVolumeInformation(
__in_opt LPCTSTR lpRootPathName,
__out LPTSTR lpVolumeNameBuffer,
__in DWORD nVolumeNameSize,
__out_opt LPDWORD lpVolumeSerialNumber,
__out_opt LPDWORD lpMaximumComponentLength,
__out_opt LPDWORD lpFileSystemFlags,
__out LPTSTR lpFileSystemNameBuffer, // Here
__in DWORD nFileSystemNameSize
);
</code></pre>
<p>Example:</p>
<pre><code>TCHAR fs [MAX_PATH+1];
::GetVolumeInformation(_T("C:\\"), NULL, 0, NULL, NULL, NULL, &fs, MAX_PATH+1);
// Result is in (TCHAR*) fs
</code></pre>
http://stackoverflow.com/questions/1129105/creating-several-files-at-once-in-visual-studio-20080Creating several files at once in Visual Studio 2008Coincoin2009-07-15T02:28:37Z2009-07-15T02:39:08Z
<p>In Microsoft Visual Studio 6.0, you could <strong>create</strong> several files at once by spacing them with double quotes in the "Add files to project" dialog:</p>
<pre><code>"Class1.h" "Class1.cpp" "Class2.h" "Class2.cpp"
</code></pre>
<p>It seems they have removed that functionality since 2003. Now, for every file I want to create, I have to select the file type I want, then name it, then press OK, then reopen the dialog for the next file. This is breaking my flow when I'm thinking about all those classes I have to create.</p>
<p>Surely, there is a better, macro free, way. What is it?</p>
http://stackoverflow.com/questions/982452/what-does-for-do/982466#98246619Answer by Coincoin for What does "for(;;)" do?Coincoin2009-06-11T17:24:03Z2009-06-11T17:27:42Z<p>Yes.</p>
<p>In a for if nothing is provided:</p>
<ul>
<li>The initialisation does nothing.</li>
<li>The condition is always true</li>
<li>The count statement does nothing</li>
</ul>
<p>It is equivalent to while(true).</p>
http://stackoverflow.com/questions/870138/statically-linked-unmanaged-libs-and-c-clr/978112#9781121Answer by Coincoin for Statically linked unmanaged libs and C++ CLRCoincoin2009-06-10T20:56:17Z2009-06-10T20:56:17Z<p>LNK2022 are a pain to pinpoint. It usually means one of your module's configuration affecting structure layout is different from the others.</p>
<p>Check for the following usual causes:</p>
<ul>
<li>Make sure all your projects are using the same runtime library (/MDd or /MD) for your current solution configuration. If one project is using Debug while others are using Release or vice-versa, you will get LNK2022 errors.</li>
<li>Make sure all your projects are using the same structure member alignment. Pay special attention if one project is using /Zp switch. Also, make sure you dont use #pragma pack(n) conditionally.</li>
</ul>
<p>You can use /d1reportSingleClassLayout_your-class-name_ (without space) to get information about the problematic class' layout.</p>
<p>For more information see : <a href="http://blogs.msdn.com/vcblog/archive/2007/05/17/diagnosing-hidden-odr-violations-in-visual-c-and-fixing-lnk2022.aspx" rel="nofollow">Diagnosing Hidden ODR Violations in Visual C++ </a></p>
http://stackoverflow.com/questions/849402/what-is-the-best-path-for-working-with-3d-graphics/849809#8498091Answer by Coincoin for What is the best path for working with 3d graphics?Coincoin2009-05-11T20:02:11Z2009-05-11T20:02:11Z<p>It depends on what you are trying to do:</p>
<ul>
<li>If games interest you and you just want to develop amateur stuff without all the fuss, XNA + C# is by far the easiest way to start.</li>
<li>If you plan on becoming a professional game developer, your best bet is DirectX + C++. </li>
<li>If you like open source and just want to mess around with general 3D, OpenGL + C/C++ will offer you a nice community of dedicated people.</li>
</ul>
<p>There are of course a number of engines and library you can use on top of the last two, such as Torque, Geometric Tools, etc.</p>
http://stackoverflow.com/questions/849654/performing-photoshops-luminosity-filter-programmatically/849694#8496945Answer by Coincoin for Performing Photoshop's "Luminosity" filter programmaticallyCoincoin2009-05-11T19:37:30Z2009-05-11T19:42:41Z<p>First you need to understand what Photoshop does.</p>
<p>It preserves under layer perceptual color information and replaces it's luminosity with the top layer's perceptual luminosity information. To do that, you need to convert the images to the right color space.</p>
<p>Here is the shoping list of things you will need to do if you decide to implement everything by yourself:</p>
<ul>
<li>Load both the source and target JPEGs</li>
<li>Convert the pixels from RGB color space to L*a*b color space (or any other color space with luminosirty information)</li>
<li>Preserve target color channels and replace its luminosity channel by source's luminosity</li>
<li>Convert back to RGB space</li>
<li>Save the JPEG</li>
</ul>
<p>If you think Lab is too complicated, you can also use HSL color space, it's much simpler but it will give inferior results.</p>
http://stackoverflow.com/questions/1810163/c-copy-constructor-a-class-that-contains-other-objects/1810198#1810198Comment by Coincoin on C++ copy constructor a class that contains other objectsCoincoin2009-11-27T18:51:29Z2009-11-27T18:51:29ZMy bad, you are right, default doesn't prevent copy, it's the other way around.http://stackoverflow.com/questions/1517801/what-is-plane-sweep-algorithm-to-compute-all-intersection-points-between-the-circComment by Coincoin on what is plane sweep algorithm to compute all intersection points between the circles?Coincoin2009-10-05T00:56:37Z2009-10-05T00:56:37Zwhat is plane sweep algorithm to compute all intersection points between the circles?
http://stackoverflow.com/questions/1504251/heap-corruption-what-could-the-cause-be/1504304#1504304Comment by Coincoin on Heap corruption: What could the cause be?Coincoin2009-10-01T14:48:52Z2009-10-01T14:48:52ZI understand. However, even if the bug manifests itself by a crash one in a millionth time, it might still be detectable pretty easily by an analyser tool.http://stackoverflow.com/questions/1504251/heap-corruption-what-could-the-cause-beComment by Coincoin on Heap corruption: What could the cause be?Coincoin2009-10-01T14:30:36Z2009-10-01T14:30:36ZYour question lacks a lot of details. Can you specify the platform and the context please?http://stackoverflow.com/questions/1493862/making-methods-all-static-in-class/1493887#1493887Comment by Coincoin on Making Methods All Static in ClassCoincoin2009-10-01T14:17:03Z2009-10-01T14:17:03ZSorry for the confusion, making the class static is optional. However, if you chose to use extension methods, they will require the class to be static. Also, if there is no point in instantiating a class because it only contains static methods, making the class static explicitly tells your intentions.http://stackoverflow.com/questions/1493749/visual-studio-project-how-to-include-a-reference-for-one-configuration-only/1493843#1493843Comment by Coincoin on Visual Studio Project: How to include a reference for one configuration only?Coincoin2009-09-29T17:32:52Z2009-09-29T17:32:52ZYeah the problem is, the IDE ignores things with conditions and in that case, it needs it for all kind of reason (intellisense, object browser...) so it will complain. Also, you will have to make the calls to that assembly conditional, else the compiler won't be able to find the assembly the code is refering to.http://stackoverflow.com/questions/1493203/alarm-clock-application-in-net/1493235#1493235Comment by Coincoin on Alarm clock application in .NetCoincoin2009-09-29T16:50:02Z2009-09-29T16:50:02Z@JonB: As explained in the question, he wants something that doesn't drift.http://stackoverflow.com/questions/1493203/alarm-clock-application-in-net/1493235#1493235Comment by Coincoin on Alarm clock application in .NetCoincoin2009-09-29T15:28:39Z2009-09-29T15:28:39ZSorry but, what are you looking for then?http://stackoverflow.com/questions/1489361/override-abstract-readonly-property-to-read-write-property/1489387#1489387Comment by Coincoin on Override abstract readonly property to read/write property.Coincoin2009-09-29T14:43:25Z2009-09-29T14:43:25ZIt's a tie but I chose the other answer because I don't feel at ease with the empty setter in the base class. However, I don't think there is a perfectly good answer.http://stackoverflow.com/questions/1489361/override-abstract-readonly-property-to-read-write-property/1489383#1489383Comment by Coincoin on Override abstract readonly property to read/write property.Coincoin2009-09-29T14:42:16Z2009-09-29T14:42:16ZYour solution is what is the closest to the thing. But I don't think it's possible to do it without forcing the derived class to do acrobatics.http://stackoverflow.com/questions/1489361/override-abstract-readonly-property-to-read-write-property/1489387#1489387Comment by Coincoin on Override abstract readonly property to read/write property.Coincoin2009-09-28T21:40:33Z2009-09-28T21:40:33ZYou are right, I totally misread the answer. It has to be newed somewhere.http://stackoverflow.com/questions/1489361/override-abstract-readonly-property-to-read-write-property/1489383#1489383Comment by Coincoin on Override abstract readonly property to read/write property.Coincoin2009-09-28T21:39:22Z2009-09-28T21:39:22ZYour solutions are interesting, I will ponder a little on them.http://stackoverflow.com/questions/1489361/override-abstract-readonly-property-to-read-write-property/1489387#1489387Comment by Coincoin on Override abstract readonly property to read/write property.Coincoin2009-09-28T21:34:28Z2009-09-28T21:34:28ZOnly if overriding the property. Else, without the virtual property that could actually be an acceptable alternative.http://stackoverflow.com/questions/1129105/creating-several-files-at-once-in-visual-studio-2008/1129134#1129134Comment by Coincoin on Creating several files at once in Visual Studio 2008Coincoin2009-07-16T17:47:09Z2009-07-16T17:47:09ZYeah, I tried that File.AddNewItem it seems to be missing. Project.AddnewItem just pop the dialog and won't accept any parameters. Shame. But it works nice with the Show All Files options. I always forget to use that feature.http://stackoverflow.com/questions/1129105/creating-several-files-at-once-in-visual-studio-2008/1129134#1129134Comment by Coincoin on Creating several files at once in Visual Studio 2008Coincoin2009-07-15T04:31:52Z2009-07-15T04:31:52ZI can't believe I didn't know about the command window. However, it seems nf this will just create a window to edit the file, it won't add the file to the project. And I can't find any command to add the file to the project despite MSDN stating the contrary.