-
Recent Posts
Archives
- October 2016
- March 2016
- February 2016
- February 2015
- December 2014
- September 2014
- August 2014
- June 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- October 2013
- September 2013
- August 2013
- June 2013
- May 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
Categories
Twitter Updates
- RT @tonroosendaal: Blender Internal (render) just got removed from the 2.8 branch. Bye bye, you served us well! #b3d https://t.co/4ixOZ8JmcX 2 years ago
- RT @DepressedDarth: The fake news media is blaming the stormtroopers for the Battle of Endor, but nobody is talking about the violent Ewoks 3 years ago
- RT @graphikjunkie: Today is Amazon S3 dependency awareness day 4 years ago
- First post in a while. Drawing a bounding box over an image in C#/.net/WinForms. chrisheydrick.com/2016/10/27/dra… 4 years ago
- RT @SwiftOnSecurity: Blue Bell manufacturing plants are dirtier than an NTFS volume after an unclean shutdown 4 years ago
Monthly Archives: June 2013
Visualizing the Mandelbrot Set with SFML: C Style
I use fractals as my “Hello World” when I want to explore graphics libraries. Since I’m learning SFML at the same time I’m learning C++ I figured it would be a good idea to explore different ways of doing the … Continue reading
Posted in Programming
Leave a comment
C++ Parent Class and Member Initialization
This is a small bit of code to remind me of what I learned today about how to pass values to a parent class, as well as initialize member variables in the child class constructor. The output is: ParentClass was … Continue reading
Posted in Programming
Leave a comment
Order Matters Inside of C++ Classes
Confession time: I’ve been putting some effort into learning C++, after years of swearing I’d stick with straight C. The push to C++ has been driven by SFML, which I’d really like to play with. The SFML documentation and samples … Continue reading
Posted in Programming
Leave a comment
Problems Re-sizing SFML RenderWindow
I’ve been using the newly-released SFML 2.0 as an excuse to learn C++. It’s been quite interesting. While messing around with the SFML graphics capabilities I found that I can’t seem to reliably re-size the SFML render window without the … Continue reading
Posted in Hobbies, Programming
1 Comment