嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
qt4 osg view:osg3DViewer代码
.
├── osg3DViewer
│ ├── CMakeLists.txt
│ ├── CMakeModules
│ │ ├── FindDoxygen.cmake
│ │ ├── FindOpenGL.cmake
│ │ ├── FindOpenSceneGraph.cmake
│ │ └── cmake_uninstall.cmake.in
│ ├── LICENSE
│ ├── README.md
│ ├── data
│ │ ├── dial.png
│ │ ├── drag_pivot.osg
│ │ ├── drag_pivot.png
│ │ ├── highlight.frag
│ │ ├── highlight.vert
│ │ ├── nail.png
│ │ ├── pivot_cone.png
│ │ ├── rotate_pivot.osg
│ │ ├── scale_in_pivot.osg
│ │ └── scale_out_pivot.osg
│ ├── res
│ │ ├── Info.plist
│ │ ├── about.png
│ │ ├── backface_off.png
│ │ ├── backface_on.png
│ │ ├── background.png
│ │ ├── bulle.png
│ │ ├── bulle2.png
│ │ ├── center.png
│ │ ├── center_on_selection.png
│ │ ├── collapse.png
│ │ ├── compass.png
│ │ ├── console.png
│ │ ├── delete.png
│ │ ├── edit_bookmark.png
│ │ ├── expand.png
│ │ ├── flat_background.png
│ │ ├── fullscreen.png
│ │ ├── gradient_background.png
│ │ ├── grid_off.png
│ │ ├── grid_on.png
│ │ ├── help.png
│ │ ├── highlight_off.png
│ │ ├── highlight_on.png
│ │ ├── icon_save.png
│ │ ├── icon_search.png
│ │ ├── icon_shadow_off.png
│ │ ├── icon_shadow_on.png
│ │ ├── light_off.png
│ │ ├── light_on.png
│ │ ├── lights_off.png
│ │ ├── lights_on.png
│ │ ├── lod_minus.png
│ │ ├── lod_plus.png
│ │ ├── lod_reset.png
│ │ ├── mag.png
│ │ ├── navdown.png
│ │ ├── navup.png
│ │ ├── new_bookmark.png
│ │ ├── nofullscreen.png
│ │ ├── open.png
│ │ ├── osg3DViewer.ico
│ │ ├── osg3DViewer.png
│ │ ├── osg3DViewer.qrc
│ │ ├── osg3DViewer.rc
│ │ ├── poster.png
│ │ ├── potion.png
│ │ ├── preferences.png
│ │ ├── quit.png
│ │ ├── refresh.png
│ │ ├── save_bookmarks.png
│ │ ├── snapshot.png
│ │ ├── splashscreen.png
│ │ ├── stats.png
│ │ ├── texture_off.png
│ │ ├── texture_on.png
│ │ ├── trash.png
│ │ ├── treeview
│ │ │ ├── Compound.png
│ │ │ ├── Directionallight.png
│ │ │ ├── Face.png
│ │ │ ├── Shell.png
│ │ │ ├── Solid.png
│ │ │ ├── billboard.png
│ │ │ ├── bone.png
│ │ │ ├── filereference.png
│ │ │ ├── geode.png
│ │ │ ├── group.png
│ │ │ ├── lightsource.png
│ │ │ ├── lod.png
│ │ │ ├── other.png
│ │ │ ├── pointlight.png
│ │ │ ├── sequence.png
│ │ │ ├── skeleton.png
│ │ │ ├── spotlight.png
│ │ │ ├── stock_group.png
│ │ │ ├── switch.png
│ │ │ ├── transform.png
│ │ │ ├── tree_disable.png
│ │ │ ├── tree_disabled.png
│ │ │ ├── tree_enable.png
│ │ │ ├── tree_lod.png
│ │ │ ├── tree_unknown.png
│ │ │ └── user group.png
│ │ ├── unload.png
│ │ ├── update_bookmark.png
│ │ └── watermark.png
│ ├── src
│ │ └── osg3DViewer
│ │ ├── 3rdparty
│ │ │ ├── osgWorks
│ │ │ │ ├── README.txt
│ │ │ │ └── osgwTools
│ │ │ │ ├── CountsVisitor.cpp
│ │ │ │ ├── CountsVisitor.h
│ │ │ │ ├── StateSetUtils.cpp
│ │ │ │ └── StateSetUtils.h
│ │ │ └── qtpropertybrowser
│ │ │ ├── QtAbstractEditorFactoryBase
│ │ │ ├── QtAbstractPropertyBrowser
│ │ │ ├── QtAbstractPropertyManager
│ │ │ ├── QtBoolPropertyManager
│ │ │ ├── QtBrowserItem
│ │ │ ├── QtButtonPropertyBrowser
│ │ │ ├── QtCharEditorFactory
│ │ │ ├── QtCharPropertyManager
│ │ │ ├── QtCheckBoxFactory
│ │ │ ├── QtColorEditorFactory
│ │ │ ├── QtColorPropertyManager
│ │ │ ├── QtCursorEditorFactory
│ │ │ ├── QtCursorPropertyManager
│ │ │ ├── QtDateEditFactory
│ │ │ ├── QtDatePropertyManager
│ │ │ ├── QtDateTimeEditFactory
│ │ │ ├── QtDateTimePropertyManager
│ │ │ ├── QtDoublePropertyManager
│ │ │ ├── QtDoubleSpinBoxFactory
│ │ │ ├── QtEnumEditorFactory
│ │ │ ├── QtEnumPropertyManager
│ │ │ ├── QtFlagPropertyManager
│ │ │ ├── QtFontEditorFactory
│ │ │ ├── QtFontPropertyManager
│ │ │ ├── QtGroupBoxPropertyBrowser
│ │ │ ├── QtGroupPropertyManager
│ │ │ ├── QtIntPropertyManager
│ │ │ ├── QtKeySequenceEditorFactory
│ │ │ ├── QtKeySequencePropertyManager
│ │ │ ├── QtLineEditFactory
│ │ │ ├── QtLocalePropertyManager
│ │ │ ├── QtPointFPropertyManager
│ │ │ ├── QtPointPropertyManager
│ │ │ ├── QtProperty
│ │ │ ├── QtRectFPropertyManager
│ │ │ ├── QtRectPropertyManager
│ │ │ ├── QtScrollBarFactory
│ │ │ ├── QtSizeFPropertyManager
│ │ │ ├── QtSizePolicyPropertyManager
│ │ │ ├── QtSizePropertyManager
│ │ │ ├── QtSliderFactory
│ │ │ ├── QtSpinBoxFactory
│ │ │ ├── QtStringPropertyManager
│ │ │ ├── QtTimeEditFactory
│ │ │ ├── QtTimePropertyManager
│ │ │ ├── QtTreePropertyBrowser
│ │ │ ├── QtVariantEditorFactory
│ │ │ ├── QtVariantProperty
│ │ │ ├── QtVariantPropertyManager
│ │ │ ├── images
│ │ │ │ ├── cursor-arrow.png
│ │ │ │ ├── cursor-busy.png
│ │ │ │ ├── cursor-closedhand.png
│ │ │ │ ├── cursor-cross.png
│ │ │ │ ├── cursor-forbidden.png
│ │ │ │ ├── cursor-hand.png
│ │ │ │ ├── cursor-hsplit.png
│ │ │ │ ├── cursor-ibeam.png
│ │ │ │ ├── cursor-openhand.png
│ │ │ │ ├── cursor-sizeall.png
│ │ │ │ ├── cursor-sizeb.png
│ │ │ │ ├── cursor-sizef.png
│ │ │ │ ├── cursor-sizeh.png
│ │ │ │ ├── cursor-sizev.png
│ │ │ │ ├── cursor-uparrow.png
│ │ │ │ ├── cursor-vsplit.png
│ │ │ │ ├── cursor-wait.png
│ │ │ │ └── cursor-whatsthis.png
│ │ │ ├── qtbuttonpropertybrowser.cpp
│ │ │ ├── qtbuttonpropertybrowser.h
│ │ │ ├── qteditorfactory.cpp
│ │ │ ├── qteditorfactory.h
│ │ │ ├── qtgroupboxpropertybrowser.cpp
│ │ │ ├── qtgroupboxpropertybrowser.h
│ │ │ ├── qtpropertybrowser.cpp
│ │ │ ├── qtpropertybrowser.h
│ │ │ ├── qtpropertybrowser.qrc
│ │ │ ├── qtpropertybrowserutils.cpp
│ │ │ ├── qtpropertybrowserutils_p.h
│ │ │ ├── qtpropertymanager.cpp
│ │ │ ├── qtpropertymanager.h
│ │ │ ├── qttreepropertybrowser.cpp
│ │ │ ├── qttreepropertybrowser.h
│ │ │ ├── qtvariantproperty.cpp
│ │ │ └── qtvariantproperty.h
│ │ ├── CMakeLists.txt
│ │ ├── MainWindow.cpp
│ │ ├── MainWindow.h
│ │ ├── main.cpp
│ │ ├── xAppSettings.cpp
│ │ ├── xAppSettings.h
│ │ ├── xExtentsVisitor.cpp
│ │ ├── xExtentsVisitor.h
│ │ ├── xFindNameListVisitor.cpp
│ │ ├── xFindNameListVisitor.h
│ │ ├── xLogHandler.cpp
│ │ ├── xLogHandler.h
│ │ ├── xObjectLoader.cpp
│ │ ├── xObjectLoader.h
│ │ ├── xOsgLogger.h
│ │ ├── xPickingHandler.cpp
│ │ ├── xPickingHandler.h
│ │ ├── xPropertyWidget.cpp
│ │ ├── xPropertyWidget.h
│ │ ├── xSceneModel.cpp
│ │ ├── xSceneModel.h
│ │ ├── xSceneView.cpp
│ │ ├── xSceneView.h
│ │ ├── xSearchLineEdit.cpp
│ │ ├── xSearchLineEdit.h
│ │ ├── xSelectionDecorator.cpp
│ │ ├── xSelectionDecorator.h
│ │ ├── xSelectionManager.cpp
│ │ ├── xSelectionManager.h
│ │ ├── xShaderSelectionDecorator.cpp
│ │ ├── xShaderSelectionDecorator.h
│ │ ├── xShaderSettingDialog.cpp
│ │ ├── xShaderSettingDialog.h
│ │ ├── xThreadPool.cpp
│ │ ├── xThreadPool.h
│ │ ├── xTreeModel.cpp
│ │ ├── xTreeModel.h
│ │ ├── xTreeView.cpp
│ │ └── xTreeView.h
│ └── ui
│ ├── MainWindow.ui
│ └── xShaderSettingDialog.ui
└── 好例子网_osg3DViewer.rar
13 directories, 233 files