- Timestamp:
- May 30, 2010, 1:05:25 PM (14 years ago)
- Location:
- osgVisual
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
osgVisual/include/cluster/dataIO_clusterUDP.h
r32 r57 23 23 #include <osgDB/ReaderWriter> 24 24 #include <iostream> 25 #include <winsock2.h> 26 #pragma comment ( lib, "WSock32.lib" ) 25 27 26 28 #include "dataIO_clusterUDP_Transmission.h" -
osgVisual/include/core/visual_core.h
r55 r57 86 86 87 87 88 88 89 namespace osgVisual 89 90 { -
osgVisual/include/extLink/dataIO_extLinkDummy.h
r32 r57 18 18 #include <dataIO_extLink.h> 19 19 #include <osg/Notify> 20 #include <vector> 20 21 21 22 namespace osgVisual … … 33 34 { 34 35 public: 35 dataIO_extLinkDummy(std::vector<dataIO Slot>& dataSlots_);36 dataIO_extLinkDummy(std::vector<dataIO_slot>& dataSlots_); 36 37 virtual ~dataIO_extLinkDummy(void); 37 38 -
osgVisual/src/core/visual_core.cpp
r55 r57 422 422 423 423 // Size ermitteln. 424 st ringbuf *pbuf;424 std::stringbuf *pbuf; 425 425 pbuf = myOstream.rdbuf(); 426 426 OSG_NOTIFY( osg::WARN ) << "PBUF Bytes available: " << pbuf->in_avail() << std::endl; -
osgVisual/src/extLink/dataIO_extLinkDummy.cpp
r55 r57 15 15 */ 16 16 17 #include "dataIO_extLinkDummy.h"17 #include <dataIO_extLinkDummy.h> 18 18 19 dataIO_extLinkDummy::dataIO_extLinkDummy(std::vector<dataIOSlot>& dataSlots_) : dataIO_extLink(dataSlots_) 19 #include <visual_dataIO.h> // include in.cpp to avoid circular inclusion (visual_dataIO <-> extLinkDummy) 20 21 22 using namespace osgVisual; 23 24 dataIO_extLinkDummy::dataIO_extLinkDummy(std::vector<dataIO_slot>& dataSlots_) : dataIO_extLink(dataSlots_) 20 25 { 21 26 OSG_NOTIFY( osg::ALWAYS ) << "extLinkDummy constructed" << std::endl; -
osgVisual/src/extLink/dataIO_extLinkVCL.cpp
r31 r57 17 17 #include <dataIO_extLinkVCL.h> 18 18 19 #include <visual_dataIO.h> 19 #include <visual_dataIO.h> // include in.cpp to avoid circular inclusion (visual_dataIO <-> extLinkVCL) 20 20 21 21 using namespace osgVisual; -
osgVisual/src/sky_Silverlining/visual_skySilverLining.cpp
r54 r57 300 300 updateCallback->operator ()(this, NULL); 301 301 302 setTime(1 6,00,23);302 setTime(12,00,23); 303 303 setVisibility(50000); 304 304 //atmosphere->GetConditions()->SetFog( 0.8, 1, 1, 1); // use this for simulation real fog. … … 315 315 //addCloudLayer( 0, 300000, 300000, 600.0, 2351.0, 0.5, NIMBOSTRATUS ); 316 316 //addCloudLayer( 0, 5000000, 5000000, 600.0, 7351.0, 0.2, CIRRUS_FIBRATUS ); 317 addCloudLayer( 1, 8000, 10000, 3000, 2000.0, 0.01, CUMULONIMBUS_CAPPILATUS ); 318 //addCloudLayer( 1, 25000, 25000, 3000, 2000.0, 0.05, CUMULUS_CONGESTUS ); 317 //addCloudLayer( 0, 50000, 50000, 600.0, 7351.0, 0.2, CIRROCUMULUS ); 318 //addCloudLayer( 1, 8000, 10000, 3000, 2000.0, 0.01, CUMULONIMBUS_CAPPILATUS ); 319 addCloudLayer( 1, 200000, 200000, 3000, 2000.0, 0.05, CUMULUS_CONGESTUS ); 319 320 //addCloudLayer( 1, 500000, 500000, 15000, 2000.0, 0.6, STRATUS ); 320 321 //cloudLayerSlots[1].cloudLayerPointer->SetPrecipitation(SilverLining::CloudLayer::RAIN, 15.0 );
Note: See TracChangeset
for help on using the changeset viewer.