BillowSizes.h from gzz at Krugle
Show BillowSizes.h syntax highlighted
// käsitellään aina erikseen nämä koot, tämä on se olio jonka kanssa
// käyttäjä vuorovaikuttaa.
class BillowSizes {
public:
virtual double getSize(int line, double &y) = 0;
virtual int getLine(double y) = 0; // Get line index at y-coordinate
// If we need the x index, we re-render (or virtually so)
virtual ~BillowSizes() {}
};
See more files for this project here