A "code-what"? Unless you have spent some time working in the area of reverse engineering, chances are you have not heard of the term "codecave" before. If you have heard of it, you might not have read a clear definition of it or quite understand what it is or why it is useful. I have even asked sea ...
游戏开发数据结构Data Structures for Game Programmers
The Goodies Directory contains all sorts of stuff. For example, there are the four
3rd-Party libraries used in the book, SDL, SDL_TTF, FreeType (which SDL_TTF uses),
and STLPort, which is one implementation of the Standard Template Library.
Also, ...
To review what a metaball is, and how to render them and to describe a
new optimization I ve made for rendering metaballs. For complex scenes,
it can render hundreds of times faster, though I m certain others have
discovered this trick as well. It does very slightly change the
characteristic ...
The basic principle using the branchand-
bound strategy to solve the traveling
salesperson optimization problem (TSP)
consists of two parts.
􀂄 There is a way to split the solution space.
􀂄 There is a way to predict a lower bound for a
class of solutions.
􀂄 There is also a way ...
This product has been manufactured to your company’s specifications a part for use in your
company’s general electronic products. It is guaranteed to perform according to delivery
specifications. For any other use apart from general electronic equipment, we cannot take
responsibility if the produc ...
This sample shows different ways of performing anti-aliasing - both by using only
the native hardware AA support, and by mixing the hardware modes with additional
supersampling. There are various ways in which the supersampled image can be
down-sampled. The way we do the downsampling in this example ...
All of Java s Input/Output (I/O) facilities are based on streams, which provide simple ways to read and write data of different types. Java provides many different kinds of streams, each with its own application. The universe of streams is divided into four large categories: input streams and output ...
Last week I posted an article on a simple C++ template class, XYDataArray, I used in my system development tool. The main purpose of this template class is to store and sort general data types. I needed to implement the same thing in Java, since the tool I developed has a compatible Java version. I ...
What I am trying to introduce here is a full fledged Java Instant messenger, which has all the features supplied by commercial messengers like Yahoo or MSN. Although it cannot compared to be in par with those messengers, it is an attempt by me to learn Advanced Java and JNI concepts. The challenges ...
Very simple USB 1.1 PHY. Includes all the goodies: serial/parallel
conversion, bit stuffing/unstuffing, NRZI encoding decoding. Uses a
simplified UTMI interface. Currently doesn t do any error checking in
the RX section [should probably check for bit unstuffing errors].
Otherwise complete and fully ...