Changeset 2704 for GTP/trunk/Lib/Vis/Preprocessing/src
- Timestamp:
- 05/23/08 19:38:06 (17 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface/QtGlRenderer.cpp
r2703 r2704 893 893 case 2: 894 894 { 895 // 895 // tm = RotationXMatrix(diffx) * RotationYMatrix(diffy); 896 896 tm = RotationYMatrix(diffx); 897 897 } … … 1197 1197 connect(mControlWidget, SIGNAL(SetShowRays(bool)), this, SLOT(SetShowRays(bool))); 1198 1198 1199 #if 0 1199 1200 connect(mControlWidget, SIGNAL(SetTranslation(bool)), this, SLOT(SetTranslation(bool))); 1200 1201 connect(mControlWidget, SIGNAL(SetRotation(bool)), this, SLOT(SetRotation(bool))); 1201 1202 connect(mControlWidget, SIGNAL(SetScale(bool)), this, SLOT(SetScale(bool))); 1202 1203 #endif 1203 1204 connect(mControlWidget, SIGNAL(UpdateDynamicObjects()), this, SLOT(UpdateDynamicObjects())); 1204 1205 … … 1273 1274 void QtGlRendererWidget::NextObject() 1274 1275 { 1275 cout << "*********\n**** next object!!!!!!!!!!!! " << endl; 1276 mPlacer->NextObject(); 1276 mPlacer->NextObject(); 1277 1277 } 1278 1278 … … 2189 2189 QGroupBox *groupBox3 = CreateRayVisualizationPanel(hbox); 2190 2190 vh->addWidget(groupBox3, 0, 0); 2191 2191 #endif 2192 2193 #if 0 2192 2194 QGroupBox *groupBox4 = CreateTrafoPanel(hbox); 2193 2195 vh->addWidget(groupBox4, 0, 0); … … 2383 2385 #endif 2384 2386 2385 button = new QPushButton(" Loadobject", vbox);2387 button = new QPushButton("Next object", vbox); 2386 2388 vbox->layout()->addWidget(button); 2387 2389 connect(button, SIGNAL(clicked()), SIGNAL(NextObject())); -
GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface/QtGlRenderer.h
r2703 r2704 119 119 void StoreStatistics(); 120 120 void ComputeGVS(); 121 //void LoadObjects();122 121 void NextObject(); 123 122 void UpdateAllPvs();
Note: See TracChangeset
for help on using the changeset viewer.