From ba5544e652475cbe9387afa0c7213a80bc53e3c7 Mon Sep 17 00:00:00 2001 From: frohlich Date: Thu, 31 May 2007 12:12:06 +0000 Subject: [PATCH] Modified Files: src/Cockpit/panel_io.cxx: use existing function to parse an interpolation table. --- src/Cockpit/panel_io.cxx | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/src/Cockpit/panel_io.cxx b/src/Cockpit/panel_io.cxx index 95781b937..ad33b109d 100644 --- a/src/Cockpit/panel_io.cxx +++ b/src/Cockpit/panel_io.cxx @@ -288,20 +288,7 @@ readTransformation (const SGPropertyNode * node, float w_scale, float h_scale) if (trans_table != 0) { SG_LOG( SG_COCKPIT, SG_INFO, "Found interpolation table with " << trans_table->nChildren() << " children" ); - t->table = new SGInterpTable(); - for (int i = 0; i < trans_table->nChildren(); i++) { - const SGPropertyNode * node = trans_table->getChild(i); - if (!strcmp(node->getName(), "entry")) { - double ind = node->getDoubleValue("ind", 0.0); - double dep = node->getDoubleValue("dep", 0.0); - SG_LOG( SG_COCKPIT, SG_INFO, "Adding interpolation entry " - << ind << "==>" << dep ); - t->table->addEntry(ind, dep); - } else { - SG_LOG( SG_COCKPIT, SG_INFO, "Skipping " << node->getName() - << " in interpolation" ); - } - } + t->table = new SGInterpTable(trans_table); } else { t->table = 0; } -- 2.39.5