├── Catch ├── RockStar.png ├── Welcome.jpg ├── YouLost.jpg ├── YouWon.jpg ├── a.png ├── b.png ├── ball.png ├── boy.png ├── broach.png ├── c.png ├── farm.JPG ├── girl.png ├── m.png ├── n.png ├── s.png ├── sky1.JPG ├── sky2.JPG ├── sky3.JPG ├── t.png └── u.png ├── Configuration ├── 3DSphericalDisplay.view ├── 3DSphericalDisplayTopProjector.view ├── AllScreens.view ├── PanoramicSphericalDisplay.view ├── PanoramicSphericalDisplayTopProjector.view ├── SingleScreen.view └── SmallWindow.view ├── Cubemap_axis ├── negx.png ├── negy.png ├── negz.png ├── posx.png ├── posy.png └── posz.png ├── Cubemap_snow ├── negx.jpg ├── negy.jpg ├── negz.jpg ├── posx.jpg ├── posy.jpg └── posz.jpg ├── ExampleThumbnails ├── osganimation.jpg ├── osgcubemap.jpg ├── osgdepthshadow.jpg ├── osgdistortion.jpg ├── osgfxbrowser.jpg ├── osggeometry.jpg ├── osghud.jpg ├── osgkeyboard.jpg ├── osglight.jpg ├── osgmotionblur.jpg ├── osgmultitexture.jpg ├── osgparticle.jpg ├── osgprerendercubemap.jpg ├── osgreflect.jpg ├── osgscribe.jpg └── osgvertexprogram.jpg ├── Images ├── Brick-Norman-Brown.TGA ├── Brick-Std-Orange.TGA ├── Saturn.TGA ├── blueFlowers.png ├── brow.l.tga ├── clockface.JPG ├── continous_smoke.rgb ├── dark_grey.tga ├── dog_left_eye.jpg ├── dog_right_eye.jpg ├── eye.l.tga ├── fireparticle8x8.png ├── forestRoof.png ├── forestWall.png ├── land_ocean_ice_lights_2048.jpg ├── land_shallow_topo_2048.jpg ├── lz.rgb ├── moon256128.TGA ├── mouth.tga ├── nose.tga ├── osg128.png ├── osg256.png ├── osg64.png ├── osgshaders1.png ├── osgshaders2.png ├── particle.rgb ├── primitives.gif ├── purpleFlowers.png ├── red.tga ├── reflect.rgb ├── road.png ├── rockwall.png ├── rockwall_NH.png ├── skin.tga ├── skymap.jpg ├── smoke.rgb ├── tank.rgb ├── tree0.rgba ├── water.rgb ├── white.rgb ├── whitemetal_diffuse.jpg └── whitemetal_normal.jpg ├── Present3D ├── OpenSceneGraphlogo.png └── present3dwhite.png ├── README ├── SmokeBox.osgt ├── SolarSystem ├── earth_clouds256128.jpg ├── jupiter256128.jpg ├── mars256128.jpg ├── mercury256128.jpg ├── moon256128.jpg ├── neptune256128.jpg ├── pluto256128.jpg ├── saturn256128.jpg ├── sun256128.jpg └── venus256128.jpg ├── avatar.osg ├── axes.osgt ├── bignathan.osg ├── cessna.osg ├── cessna.osgt ├── cessnafire.osg ├── cessnafire.osgt ├── clock.osgt ├── cow.osg ├── cow.osgt ├── cube_mapped_torus.osgt ├── dot3_bumpmapping.osgt ├── dumptruck.osg ├── dumptruck.osgt ├── example.osg ├── fonts ├── COPYRIGHT.TXT ├── Vera.ttf ├── VeraMono.ttf ├── arial.ttf ├── dirtydoz.ttf ├── fudd.ttf └── times.ttf ├── fountain.osgt ├── glider.osg ├── glider.osgt ├── glsl_confetti.osgt ├── glsl_julia.osgt ├── glsl_mandelbrot.osgt ├── glsl_simple.osgt ├── htdocs ├── config.rb ├── index.html ├── javascripts │ ├── jquery-1.8.2.min.js │ ├── main.js │ └── modernizr-2.5.3.js ├── sass │ ├── partials │ │ ├── _base.scss │ │ ├── _design.scss │ │ └── _layout.scss │ └── style.scss └── stylesheets │ └── style.css ├── introduction.p3d ├── lz.osg ├── lz.osgt ├── morphing.osg ├── morphtarget_shape0.osg ├── morphtarget_shape1.osg ├── nathan.osg ├── osg.conf ├── osg64.logo ├── osgWidget ├── README ├── back.png ├── border-bottom.tga ├── border-left.tga ├── border-right.tga ├── border-top.tga ├── natascha.png ├── next.png ├── open.png ├── osgwidgetshader-frag.glsl ├── osgwidgetshader-vert.glsl ├── osgwidgetwindow.lua ├── osgwidgetwindow.py ├── panel-center.tga ├── panel-left.tga ├── panel-right.tga ├── pause.png ├── play.png ├── scrolled1.jpg ├── scrolled2.jpg ├── scrolled3.jpg ├── scrolled4.jpg ├── stop.png ├── theme-1.png ├── theme-2.png └── theme.png ├── osgcool.osgt ├── robot.osg ├── shaders ├── blocky.frag ├── blocky.vert ├── brick.frag ├── brick.vert ├── depthpeel_colormap.frag ├── depthpeel_colormap.vert ├── depthpeel_edgemap.frag ├── depthpeel_edgemap.vert ├── depthpeel_final.frag ├── depthpeel_final.vert ├── depthpeel_normaldepthmap.frag ├── depthpeel_normaldepthmap.vert ├── eroded.frag ├── eroded.vert ├── gameoflife.frag ├── lighting.vert ├── line_rain.vert ├── lookup.frag ├── lookup.vert ├── marble.frag ├── marble.vert ├── osgText_Text.frag ├── osgText_Text.vert ├── osgshadercomposition.frag ├── osgshadercomposition.vert ├── osgssboComputeShader.cs ├── osgssboFragmentShader.fs ├── osgssboGeometryShader.gs ├── osgssboVertexShader.vs ├── osgtexture2DArray.frag ├── osgtexture2DArray.vert ├── overlay_perspective_main.frag ├── overlay_perspective_rtt.vert ├── pass1Shadow.frag ├── pass2.frag ├── pass2.vert ├── pass3.frag ├── pass3.vert ├── point_rain.frag ├── point_rain.vert ├── quad_rain.vert ├── rain.frag ├── rain.vert ├── screen.frag ├── screen.vert ├── shader.vert ├── shadergen.frag ├── shadergen.vert ├── shaderpipeline.frag ├── shaderpipeline.vert ├── skinning.vert ├── stereomatch_aggregate.frag ├── stereomatch_clear.frag ├── stereomatch_select.frag ├── stereomatch_stereopass.frag ├── stereomatch_subtract.frag ├── terrain_displacement_mapping.frag ├── terrain_displacement_mapping.geom ├── terrain_displacement_mapping.vert ├── volume.frag ├── volume.vert ├── volume_accumulateSamples_iso.frag ├── volume_accumulateSamples_iso_tf.frag ├── volume_accumulateSamples_lit.frag ├── volume_accumulateSamples_lit_tf.frag ├── volume_accumulateSamples_mip.frag ├── volume_accumulateSamples_mip_tf.frag ├── volume_accumulateSamples_standard.frag ├── volume_accumulateSamples_standard_tf.frag ├── volume_color_depth.frag ├── volume_color_depth.vert ├── volume_compute_ray_color.frag ├── volume_iso.frag ├── volume_lit.frag ├── volume_lit_tf.frag ├── volume_mip.frag ├── volume_multipass.frag ├── volume_multipass.vert ├── volume_multipass_cube.frag ├── volume_multipass_cube_and_hull.frag ├── volume_multipass_hull.frag ├── volume_tf.frag ├── volume_tf_iso.frag └── volume_tf_mip.frag ├── simpleroom.osgt ├── skydome.osgt ├── spaceship.osgt ├── torus.osgt └── ui ├── TabWidget.lua ├── TransferFunctionWidget.lua ├── VolumeEditor.lua ├── VolumeEditorWidget.lua ├── VolumeSettings.lua └── WidgetUtils.lua /Catch/RockStar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/RockStar.png -------------------------------------------------------------------------------- /Catch/Welcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/Welcome.jpg -------------------------------------------------------------------------------- /Catch/YouLost.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/YouLost.jpg -------------------------------------------------------------------------------- /Catch/YouWon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/YouWon.jpg -------------------------------------------------------------------------------- /Catch/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/a.png -------------------------------------------------------------------------------- /Catch/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/b.png -------------------------------------------------------------------------------- /Catch/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/ball.png -------------------------------------------------------------------------------- /Catch/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/boy.png -------------------------------------------------------------------------------- /Catch/broach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/broach.png -------------------------------------------------------------------------------- /Catch/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/c.png -------------------------------------------------------------------------------- /Catch/farm.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/farm.JPG -------------------------------------------------------------------------------- /Catch/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/girl.png -------------------------------------------------------------------------------- /Catch/m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/m.png -------------------------------------------------------------------------------- /Catch/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/n.png -------------------------------------------------------------------------------- /Catch/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/s.png -------------------------------------------------------------------------------- /Catch/sky1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/sky1.JPG -------------------------------------------------------------------------------- /Catch/sky2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/sky2.JPG -------------------------------------------------------------------------------- /Catch/sky3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/sky3.JPG -------------------------------------------------------------------------------- /Catch/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/t.png -------------------------------------------------------------------------------- /Catch/u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Catch/u.png -------------------------------------------------------------------------------- /Configuration/3DSphericalDisplay.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Configuration/3DSphericalDisplay.view -------------------------------------------------------------------------------- /Configuration/3DSphericalDisplayTopProjector.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Configuration/3DSphericalDisplayTopProjector.view -------------------------------------------------------------------------------- /Configuration/AllScreens.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Configuration/AllScreens.view -------------------------------------------------------------------------------- /Configuration/PanoramicSphericalDisplay.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Configuration/PanoramicSphericalDisplay.view -------------------------------------------------------------------------------- /Configuration/PanoramicSphericalDisplayTopProjector.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Configuration/PanoramicSphericalDisplayTopProjector.view -------------------------------------------------------------------------------- /Configuration/SingleScreen.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Configuration/SingleScreen.view -------------------------------------------------------------------------------- /Configuration/SmallWindow.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Configuration/SmallWindow.view -------------------------------------------------------------------------------- /Cubemap_axis/negx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Cubemap_axis/negx.png -------------------------------------------------------------------------------- /Cubemap_axis/negy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Cubemap_axis/negy.png -------------------------------------------------------------------------------- /Cubemap_axis/negz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Cubemap_axis/negz.png -------------------------------------------------------------------------------- /Cubemap_axis/posx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Cubemap_axis/posx.png -------------------------------------------------------------------------------- /Cubemap_axis/posy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Cubemap_axis/posy.png -------------------------------------------------------------------------------- /Cubemap_axis/posz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Cubemap_axis/posz.png -------------------------------------------------------------------------------- /Cubemap_snow/negx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Cubemap_snow/negx.jpg -------------------------------------------------------------------------------- /Cubemap_snow/negy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Cubemap_snow/negy.jpg -------------------------------------------------------------------------------- /Cubemap_snow/negz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Cubemap_snow/negz.jpg -------------------------------------------------------------------------------- /Cubemap_snow/posx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Cubemap_snow/posx.jpg -------------------------------------------------------------------------------- /Cubemap_snow/posy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Cubemap_snow/posy.jpg -------------------------------------------------------------------------------- /Cubemap_snow/posz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Cubemap_snow/posz.jpg -------------------------------------------------------------------------------- /ExampleThumbnails/osganimation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ExampleThumbnails/osganimation.jpg -------------------------------------------------------------------------------- /ExampleThumbnails/osgcubemap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ExampleThumbnails/osgcubemap.jpg -------------------------------------------------------------------------------- /ExampleThumbnails/osgdepthshadow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ExampleThumbnails/osgdepthshadow.jpg -------------------------------------------------------------------------------- /ExampleThumbnails/osgdistortion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ExampleThumbnails/osgdistortion.jpg -------------------------------------------------------------------------------- /ExampleThumbnails/osgfxbrowser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ExampleThumbnails/osgfxbrowser.jpg -------------------------------------------------------------------------------- /ExampleThumbnails/osggeometry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ExampleThumbnails/osggeometry.jpg -------------------------------------------------------------------------------- /ExampleThumbnails/osghud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ExampleThumbnails/osghud.jpg -------------------------------------------------------------------------------- /ExampleThumbnails/osgkeyboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ExampleThumbnails/osgkeyboard.jpg -------------------------------------------------------------------------------- /ExampleThumbnails/osglight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ExampleThumbnails/osglight.jpg -------------------------------------------------------------------------------- /ExampleThumbnails/osgmotionblur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ExampleThumbnails/osgmotionblur.jpg -------------------------------------------------------------------------------- /ExampleThumbnails/osgmultitexture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ExampleThumbnails/osgmultitexture.jpg -------------------------------------------------------------------------------- /ExampleThumbnails/osgparticle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ExampleThumbnails/osgparticle.jpg -------------------------------------------------------------------------------- /ExampleThumbnails/osgprerendercubemap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ExampleThumbnails/osgprerendercubemap.jpg -------------------------------------------------------------------------------- /ExampleThumbnails/osgreflect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ExampleThumbnails/osgreflect.jpg -------------------------------------------------------------------------------- /ExampleThumbnails/osgscribe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ExampleThumbnails/osgscribe.jpg -------------------------------------------------------------------------------- /ExampleThumbnails/osgvertexprogram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ExampleThumbnails/osgvertexprogram.jpg -------------------------------------------------------------------------------- /Images/Brick-Norman-Brown.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/Brick-Norman-Brown.TGA -------------------------------------------------------------------------------- /Images/Brick-Std-Orange.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/Brick-Std-Orange.TGA -------------------------------------------------------------------------------- /Images/Saturn.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/Saturn.TGA -------------------------------------------------------------------------------- /Images/blueFlowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/blueFlowers.png -------------------------------------------------------------------------------- /Images/brow.l.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/brow.l.tga -------------------------------------------------------------------------------- /Images/clockface.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/clockface.JPG -------------------------------------------------------------------------------- /Images/continous_smoke.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/continous_smoke.rgb -------------------------------------------------------------------------------- /Images/dark_grey.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/dark_grey.tga -------------------------------------------------------------------------------- /Images/dog_left_eye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/dog_left_eye.jpg -------------------------------------------------------------------------------- /Images/dog_right_eye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/dog_right_eye.jpg -------------------------------------------------------------------------------- /Images/eye.l.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/eye.l.tga -------------------------------------------------------------------------------- /Images/fireparticle8x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/fireparticle8x8.png -------------------------------------------------------------------------------- /Images/forestRoof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/forestRoof.png -------------------------------------------------------------------------------- /Images/forestWall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/forestWall.png -------------------------------------------------------------------------------- /Images/land_ocean_ice_lights_2048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/land_ocean_ice_lights_2048.jpg -------------------------------------------------------------------------------- /Images/land_shallow_topo_2048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/land_shallow_topo_2048.jpg -------------------------------------------------------------------------------- /Images/lz.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/lz.rgb -------------------------------------------------------------------------------- /Images/moon256128.TGA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/moon256128.TGA -------------------------------------------------------------------------------- /Images/mouth.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/mouth.tga -------------------------------------------------------------------------------- /Images/nose.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/nose.tga -------------------------------------------------------------------------------- /Images/osg128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/osg128.png -------------------------------------------------------------------------------- /Images/osg256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/osg256.png -------------------------------------------------------------------------------- /Images/osg64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/osg64.png -------------------------------------------------------------------------------- /Images/osgshaders1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/osgshaders1.png -------------------------------------------------------------------------------- /Images/osgshaders2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/osgshaders2.png -------------------------------------------------------------------------------- /Images/particle.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/particle.rgb -------------------------------------------------------------------------------- /Images/primitives.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/primitives.gif -------------------------------------------------------------------------------- /Images/purpleFlowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/purpleFlowers.png -------------------------------------------------------------------------------- /Images/red.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/red.tga -------------------------------------------------------------------------------- /Images/reflect.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/reflect.rgb -------------------------------------------------------------------------------- /Images/road.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/road.png -------------------------------------------------------------------------------- /Images/rockwall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/rockwall.png -------------------------------------------------------------------------------- /Images/rockwall_NH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/rockwall_NH.png -------------------------------------------------------------------------------- /Images/skin.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/skin.tga -------------------------------------------------------------------------------- /Images/skymap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/skymap.jpg -------------------------------------------------------------------------------- /Images/smoke.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/smoke.rgb -------------------------------------------------------------------------------- /Images/tank.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/tank.rgb -------------------------------------------------------------------------------- /Images/tree0.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/tree0.rgba -------------------------------------------------------------------------------- /Images/water.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/water.rgb -------------------------------------------------------------------------------- /Images/white.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/white.rgb -------------------------------------------------------------------------------- /Images/whitemetal_diffuse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/whitemetal_diffuse.jpg -------------------------------------------------------------------------------- /Images/whitemetal_normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Images/whitemetal_normal.jpg -------------------------------------------------------------------------------- /Present3D/OpenSceneGraphlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Present3D/OpenSceneGraphlogo.png -------------------------------------------------------------------------------- /Present3D/present3dwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/Present3D/present3dwhite.png -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/README -------------------------------------------------------------------------------- /SmokeBox.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/SmokeBox.osgt -------------------------------------------------------------------------------- /SolarSystem/earth_clouds256128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/SolarSystem/earth_clouds256128.jpg -------------------------------------------------------------------------------- /SolarSystem/jupiter256128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/SolarSystem/jupiter256128.jpg -------------------------------------------------------------------------------- /SolarSystem/mars256128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/SolarSystem/mars256128.jpg -------------------------------------------------------------------------------- /SolarSystem/mercury256128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/SolarSystem/mercury256128.jpg -------------------------------------------------------------------------------- /SolarSystem/moon256128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/SolarSystem/moon256128.jpg -------------------------------------------------------------------------------- /SolarSystem/neptune256128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/SolarSystem/neptune256128.jpg -------------------------------------------------------------------------------- /SolarSystem/pluto256128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/SolarSystem/pluto256128.jpg -------------------------------------------------------------------------------- /SolarSystem/saturn256128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/SolarSystem/saturn256128.jpg -------------------------------------------------------------------------------- /SolarSystem/sun256128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/SolarSystem/sun256128.jpg -------------------------------------------------------------------------------- /SolarSystem/venus256128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/SolarSystem/venus256128.jpg -------------------------------------------------------------------------------- /avatar.osg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/avatar.osg -------------------------------------------------------------------------------- /axes.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/axes.osgt -------------------------------------------------------------------------------- /bignathan.osg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/bignathan.osg -------------------------------------------------------------------------------- /cessna.osg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/cessna.osg -------------------------------------------------------------------------------- /cessna.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/cessna.osgt -------------------------------------------------------------------------------- /cessnafire.osg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/cessnafire.osg -------------------------------------------------------------------------------- /cessnafire.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/cessnafire.osgt -------------------------------------------------------------------------------- /clock.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/clock.osgt -------------------------------------------------------------------------------- /cow.osg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/cow.osg -------------------------------------------------------------------------------- /cow.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/cow.osgt -------------------------------------------------------------------------------- /cube_mapped_torus.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/cube_mapped_torus.osgt -------------------------------------------------------------------------------- /dot3_bumpmapping.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/dot3_bumpmapping.osgt -------------------------------------------------------------------------------- /dumptruck.osg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/dumptruck.osg -------------------------------------------------------------------------------- /dumptruck.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/dumptruck.osgt -------------------------------------------------------------------------------- /example.osg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/example.osg -------------------------------------------------------------------------------- /fonts/COPYRIGHT.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/fonts/COPYRIGHT.TXT -------------------------------------------------------------------------------- /fonts/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/fonts/Vera.ttf -------------------------------------------------------------------------------- /fonts/VeraMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/fonts/VeraMono.ttf -------------------------------------------------------------------------------- /fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/fonts/arial.ttf -------------------------------------------------------------------------------- /fonts/dirtydoz.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/fonts/dirtydoz.ttf -------------------------------------------------------------------------------- /fonts/fudd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/fonts/fudd.ttf -------------------------------------------------------------------------------- /fonts/times.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/fonts/times.ttf -------------------------------------------------------------------------------- /fountain.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/fountain.osgt -------------------------------------------------------------------------------- /glider.osg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/glider.osg -------------------------------------------------------------------------------- /glider.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/glider.osgt -------------------------------------------------------------------------------- /glsl_confetti.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/glsl_confetti.osgt -------------------------------------------------------------------------------- /glsl_julia.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/glsl_julia.osgt -------------------------------------------------------------------------------- /glsl_mandelbrot.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/glsl_mandelbrot.osgt -------------------------------------------------------------------------------- /glsl_simple.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/glsl_simple.osgt -------------------------------------------------------------------------------- /htdocs/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/htdocs/config.rb -------------------------------------------------------------------------------- /htdocs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/htdocs/index.html -------------------------------------------------------------------------------- /htdocs/javascripts/jquery-1.8.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/htdocs/javascripts/jquery-1.8.2.min.js -------------------------------------------------------------------------------- /htdocs/javascripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/htdocs/javascripts/main.js -------------------------------------------------------------------------------- /htdocs/javascripts/modernizr-2.5.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/htdocs/javascripts/modernizr-2.5.3.js -------------------------------------------------------------------------------- /htdocs/sass/partials/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/htdocs/sass/partials/_base.scss -------------------------------------------------------------------------------- /htdocs/sass/partials/_design.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/htdocs/sass/partials/_design.scss -------------------------------------------------------------------------------- /htdocs/sass/partials/_layout.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/htdocs/sass/style.scss -------------------------------------------------------------------------------- /htdocs/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/htdocs/stylesheets/style.css -------------------------------------------------------------------------------- /introduction.p3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/introduction.p3d -------------------------------------------------------------------------------- /lz.osg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/lz.osg -------------------------------------------------------------------------------- /lz.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/lz.osgt -------------------------------------------------------------------------------- /morphing.osg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/morphing.osg -------------------------------------------------------------------------------- /morphtarget_shape0.osg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/morphtarget_shape0.osg -------------------------------------------------------------------------------- /morphtarget_shape1.osg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/morphtarget_shape1.osg -------------------------------------------------------------------------------- /nathan.osg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/nathan.osg -------------------------------------------------------------------------------- /osg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osg.conf -------------------------------------------------------------------------------- /osg64.logo: -------------------------------------------------------------------------------- 1 | LowerRight 2 | Images/osg64.png 3 | 4 | -------------------------------------------------------------------------------- /osgWidget/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/README -------------------------------------------------------------------------------- /osgWidget/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/back.png -------------------------------------------------------------------------------- /osgWidget/border-bottom.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/border-bottom.tga -------------------------------------------------------------------------------- /osgWidget/border-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/border-left.tga -------------------------------------------------------------------------------- /osgWidget/border-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/border-right.tga -------------------------------------------------------------------------------- /osgWidget/border-top.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/border-top.tga -------------------------------------------------------------------------------- /osgWidget/natascha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/natascha.png -------------------------------------------------------------------------------- /osgWidget/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/next.png -------------------------------------------------------------------------------- /osgWidget/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/open.png -------------------------------------------------------------------------------- /osgWidget/osgwidgetshader-frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/osgwidgetshader-frag.glsl -------------------------------------------------------------------------------- /osgWidget/osgwidgetshader-vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/osgwidgetshader-vert.glsl -------------------------------------------------------------------------------- /osgWidget/osgwidgetwindow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/osgwidgetwindow.lua -------------------------------------------------------------------------------- /osgWidget/osgwidgetwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/osgwidgetwindow.py -------------------------------------------------------------------------------- /osgWidget/panel-center.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/panel-center.tga -------------------------------------------------------------------------------- /osgWidget/panel-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/panel-left.tga -------------------------------------------------------------------------------- /osgWidget/panel-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/panel-right.tga -------------------------------------------------------------------------------- /osgWidget/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/pause.png -------------------------------------------------------------------------------- /osgWidget/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/play.png -------------------------------------------------------------------------------- /osgWidget/scrolled1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/scrolled1.jpg -------------------------------------------------------------------------------- /osgWidget/scrolled2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/scrolled2.jpg -------------------------------------------------------------------------------- /osgWidget/scrolled3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/scrolled3.jpg -------------------------------------------------------------------------------- /osgWidget/scrolled4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/scrolled4.jpg -------------------------------------------------------------------------------- /osgWidget/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/stop.png -------------------------------------------------------------------------------- /osgWidget/theme-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/theme-1.png -------------------------------------------------------------------------------- /osgWidget/theme-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/theme-2.png -------------------------------------------------------------------------------- /osgWidget/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgWidget/theme.png -------------------------------------------------------------------------------- /osgcool.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/osgcool.osgt -------------------------------------------------------------------------------- /robot.osg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/robot.osg -------------------------------------------------------------------------------- /shaders/blocky.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/blocky.frag -------------------------------------------------------------------------------- /shaders/blocky.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/blocky.vert -------------------------------------------------------------------------------- /shaders/brick.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/brick.frag -------------------------------------------------------------------------------- /shaders/brick.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/brick.vert -------------------------------------------------------------------------------- /shaders/depthpeel_colormap.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/depthpeel_colormap.frag -------------------------------------------------------------------------------- /shaders/depthpeel_colormap.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/depthpeel_colormap.vert -------------------------------------------------------------------------------- /shaders/depthpeel_edgemap.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/depthpeel_edgemap.frag -------------------------------------------------------------------------------- /shaders/depthpeel_edgemap.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/depthpeel_edgemap.vert -------------------------------------------------------------------------------- /shaders/depthpeel_final.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/depthpeel_final.frag -------------------------------------------------------------------------------- /shaders/depthpeel_final.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/depthpeel_final.vert -------------------------------------------------------------------------------- /shaders/depthpeel_normaldepthmap.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/depthpeel_normaldepthmap.frag -------------------------------------------------------------------------------- /shaders/depthpeel_normaldepthmap.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/depthpeel_normaldepthmap.vert -------------------------------------------------------------------------------- /shaders/eroded.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/eroded.frag -------------------------------------------------------------------------------- /shaders/eroded.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/eroded.vert -------------------------------------------------------------------------------- /shaders/gameoflife.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/gameoflife.frag -------------------------------------------------------------------------------- /shaders/lighting.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/lighting.vert -------------------------------------------------------------------------------- /shaders/line_rain.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/line_rain.vert -------------------------------------------------------------------------------- /shaders/lookup.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/lookup.frag -------------------------------------------------------------------------------- /shaders/lookup.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/lookup.vert -------------------------------------------------------------------------------- /shaders/marble.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/marble.frag -------------------------------------------------------------------------------- /shaders/marble.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/marble.vert -------------------------------------------------------------------------------- /shaders/osgText_Text.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/osgText_Text.frag -------------------------------------------------------------------------------- /shaders/osgText_Text.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/osgText_Text.vert -------------------------------------------------------------------------------- /shaders/osgshadercomposition.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/osgshadercomposition.frag -------------------------------------------------------------------------------- /shaders/osgshadercomposition.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/osgshadercomposition.vert -------------------------------------------------------------------------------- /shaders/osgssboComputeShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/osgssboComputeShader.cs -------------------------------------------------------------------------------- /shaders/osgssboFragmentShader.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/osgssboFragmentShader.fs -------------------------------------------------------------------------------- /shaders/osgssboGeometryShader.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/osgssboGeometryShader.gs -------------------------------------------------------------------------------- /shaders/osgssboVertexShader.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/osgssboVertexShader.vs -------------------------------------------------------------------------------- /shaders/osgtexture2DArray.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/osgtexture2DArray.frag -------------------------------------------------------------------------------- /shaders/osgtexture2DArray.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/osgtexture2DArray.vert -------------------------------------------------------------------------------- /shaders/overlay_perspective_main.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/overlay_perspective_main.frag -------------------------------------------------------------------------------- /shaders/overlay_perspective_rtt.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/overlay_perspective_rtt.vert -------------------------------------------------------------------------------- /shaders/pass1Shadow.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/pass1Shadow.frag -------------------------------------------------------------------------------- /shaders/pass2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/pass2.frag -------------------------------------------------------------------------------- /shaders/pass2.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/pass2.vert -------------------------------------------------------------------------------- /shaders/pass3.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/pass3.frag -------------------------------------------------------------------------------- /shaders/pass3.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/pass3.vert -------------------------------------------------------------------------------- /shaders/point_rain.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/point_rain.frag -------------------------------------------------------------------------------- /shaders/point_rain.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/point_rain.vert -------------------------------------------------------------------------------- /shaders/quad_rain.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/quad_rain.vert -------------------------------------------------------------------------------- /shaders/rain.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/rain.frag -------------------------------------------------------------------------------- /shaders/rain.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/rain.vert -------------------------------------------------------------------------------- /shaders/screen.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/screen.frag -------------------------------------------------------------------------------- /shaders/screen.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/screen.vert -------------------------------------------------------------------------------- /shaders/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/shader.vert -------------------------------------------------------------------------------- /shaders/shadergen.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/shadergen.frag -------------------------------------------------------------------------------- /shaders/shadergen.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/shadergen.vert -------------------------------------------------------------------------------- /shaders/shaderpipeline.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/shaderpipeline.frag -------------------------------------------------------------------------------- /shaders/shaderpipeline.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/shaderpipeline.vert -------------------------------------------------------------------------------- /shaders/skinning.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/skinning.vert -------------------------------------------------------------------------------- /shaders/stereomatch_aggregate.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/stereomatch_aggregate.frag -------------------------------------------------------------------------------- /shaders/stereomatch_clear.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/stereomatch_clear.frag -------------------------------------------------------------------------------- /shaders/stereomatch_select.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/stereomatch_select.frag -------------------------------------------------------------------------------- /shaders/stereomatch_stereopass.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/stereomatch_stereopass.frag -------------------------------------------------------------------------------- /shaders/stereomatch_subtract.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/stereomatch_subtract.frag -------------------------------------------------------------------------------- /shaders/terrain_displacement_mapping.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/terrain_displacement_mapping.frag -------------------------------------------------------------------------------- /shaders/terrain_displacement_mapping.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/terrain_displacement_mapping.geom -------------------------------------------------------------------------------- /shaders/terrain_displacement_mapping.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/terrain_displacement_mapping.vert -------------------------------------------------------------------------------- /shaders/volume.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume.frag -------------------------------------------------------------------------------- /shaders/volume.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume.vert -------------------------------------------------------------------------------- /shaders/volume_accumulateSamples_iso.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_accumulateSamples_iso.frag -------------------------------------------------------------------------------- /shaders/volume_accumulateSamples_iso_tf.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_accumulateSamples_iso_tf.frag -------------------------------------------------------------------------------- /shaders/volume_accumulateSamples_lit.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_accumulateSamples_lit.frag -------------------------------------------------------------------------------- /shaders/volume_accumulateSamples_lit_tf.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_accumulateSamples_lit_tf.frag -------------------------------------------------------------------------------- /shaders/volume_accumulateSamples_mip.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_accumulateSamples_mip.frag -------------------------------------------------------------------------------- /shaders/volume_accumulateSamples_mip_tf.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_accumulateSamples_mip_tf.frag -------------------------------------------------------------------------------- /shaders/volume_accumulateSamples_standard.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_accumulateSamples_standard.frag -------------------------------------------------------------------------------- /shaders/volume_accumulateSamples_standard_tf.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_accumulateSamples_standard_tf.frag -------------------------------------------------------------------------------- /shaders/volume_color_depth.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_color_depth.frag -------------------------------------------------------------------------------- /shaders/volume_color_depth.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_color_depth.vert -------------------------------------------------------------------------------- /shaders/volume_compute_ray_color.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_compute_ray_color.frag -------------------------------------------------------------------------------- /shaders/volume_iso.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_iso.frag -------------------------------------------------------------------------------- /shaders/volume_lit.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_lit.frag -------------------------------------------------------------------------------- /shaders/volume_lit_tf.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_lit_tf.frag -------------------------------------------------------------------------------- /shaders/volume_mip.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_mip.frag -------------------------------------------------------------------------------- /shaders/volume_multipass.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_multipass.frag -------------------------------------------------------------------------------- /shaders/volume_multipass.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_multipass.vert -------------------------------------------------------------------------------- /shaders/volume_multipass_cube.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_multipass_cube.frag -------------------------------------------------------------------------------- /shaders/volume_multipass_cube_and_hull.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_multipass_cube_and_hull.frag -------------------------------------------------------------------------------- /shaders/volume_multipass_hull.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_multipass_hull.frag -------------------------------------------------------------------------------- /shaders/volume_tf.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_tf.frag -------------------------------------------------------------------------------- /shaders/volume_tf_iso.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_tf_iso.frag -------------------------------------------------------------------------------- /shaders/volume_tf_mip.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/shaders/volume_tf_mip.frag -------------------------------------------------------------------------------- /simpleroom.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/simpleroom.osgt -------------------------------------------------------------------------------- /skydome.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/skydome.osgt -------------------------------------------------------------------------------- /spaceship.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/spaceship.osgt -------------------------------------------------------------------------------- /torus.osgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/torus.osgt -------------------------------------------------------------------------------- /ui/TabWidget.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ui/TabWidget.lua -------------------------------------------------------------------------------- /ui/TransferFunctionWidget.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ui/TransferFunctionWidget.lua -------------------------------------------------------------------------------- /ui/VolumeEditor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ui/VolumeEditor.lua -------------------------------------------------------------------------------- /ui/VolumeEditorWidget.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ui/VolumeEditorWidget.lua -------------------------------------------------------------------------------- /ui/VolumeSettings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ui/VolumeSettings.lua -------------------------------------------------------------------------------- /ui/WidgetUtils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openscenegraph/OpenSceneGraph-Data/HEAD/ui/WidgetUtils.lua --------------------------------------------------------------------------------