From 07c817fe4b06b4aa1b4fdcc2115f0981e346b6cb Mon Sep 17 00:00:00 2001 From: stathis Date: Sat, 16 Aug 2008 20:42:29 +0300 Subject: [PATCH] Remove bogus print --- qt/mkspdata/main.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/qt/mkspdata/main.cpp b/qt/mkspdata/main.cpp index 22dbf11..aa1875b 100644 --- a/qt/mkspdata/main.cpp +++ b/qt/mkspdata/main.cpp @@ -13,10 +13,8 @@ int main(int argc, char *argv[]) file.open(QIODevice::WriteOnly); QDataStream out(&file); - for (t = 0.0; t < 10.0; t += 0.1) { + for (t = 0.0; t < 100.0; t += 1.0) out << (float)(5.0 * t * t) << 0.0f << 0.0f << 0.0f << 0.0f << 0.0f; - std::cout << "----> " << 5.0 * t * t << "\n"; - } file.close(); // Open file for reading -- 2.11.4.GIT