Home
last modified time | relevance | path

Searched refs:extrusionDistance (Results 1 – 16 of 16) sorted by relevance

/dports/graphics/osgearth/osgearth-osgearth-2.10.1/src/osgEarthDriversDisabled/model_feature_stencil/
H A DFeatureStencilModelSource.cpp170 double extrusionDistance = 1; in createOrUpdateNode() local
172 if ( _options.extrusionDistance().isSet() ) in createOrUpdateNode()
174 extrusionDistance = *_options.extrusionDistance(); in createOrUpdateNode()
179 extrusionDistance = 300000.0; // meters geocentric in createOrUpdateNode()
181 extrusionDistance = 5.0; // degrees-as-meters in createOrUpdateNode()
183 extrusionDistance = 12000.0; // meters in createOrUpdateNode()
207 bs.getOrCreate<AltitudeSymbol>()->verticalOffset() = -extrusionDistance; in createOrUpdateNode()
208 bs.getOrCreate<ExtrusionSymbol>()->height() = extrusionDistance * 2.0; in createOrUpdateNode()
H A DFeatureStencilModelOptions34 optional<double>& extrusionDistance() { return _extrusionDistance; }
35 const optional<double>& extrusionDistance() const { return _extrusionDistance; }
/dports/graphics/ogre3d/ogre-1.11.6/OgreMain/src/
H A DOgreMovableObject.cpp394 …Real extrusionDistance = l->getAttenuationRange() - getWorldBoundingBox().distance(l->getDerivedPo… in getPointExtrusionDistance() local
395 if(extrusionDistance < 0) in getPointExtrusionDistance()
396 extrusionDistance = 0; in getPointExtrusionDistance()
405 extrusionDistance *= (maxScale / minScale); in getPointExtrusionDistance()
407 return extrusionDistance; in getPointExtrusionDistance()
H A DOgreStaticGeometry.cpp880 bool extrude, Real extrusionDistance, unsigned long flags) in getShadowVolumeRenderableIterator() argument
887extrusionDistance *= Math::Sqrt(std::min(std::min(world2Obj3x3.GetColumn(0).squaredLength(), world… in getShadowVolumeRenderableIterator()
891 shadowTechnique, lightPos, indexBuffer, extrude, extrusionDistance, flags); in getShadowVolumeRenderableIterator()
1172 Real extrusionDistance, unsigned long flags /* = 0 */) in updateShadowRenderables() argument
1218 lightPos, extrusionDistance); in updateShadowRenderables()
H A DOgreManualObject.cpp937 bool extrude, Real extrusionDistance, unsigned long flags) in getShadowVolumeRenderableIterator() argument
953extrusionDistance *= Math::Sqrt(std::min(std::min(world2Obj3x3.GetColumn(0).squaredLength(), world… in getShadowVolumeRenderableIterator()
1006 lightPos, extrusionDistance); in getShadowVolumeRenderableIterator()
H A DOgreEntity.cpp1907 bool extrude, Real extrusionDistance, unsigned long flags) in getShadowVolumeRenderableIterator() argument
1944 extrude, extrusionDistance, flags); in getShadowVolumeRenderableIterator()
1974extrusionDistance *= Math::Sqrt(std::min(std::min(world2Obj3x3.GetColumn(0).squaredLength(), world… in getShadowVolumeRenderableIterator()
2066 lightPos, extrusionDistance); in getShadowVolumeRenderableIterator()
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/OgreMain/include/
H A DOgreShadowCaster.h163 bool extrudeVertices, Real extrusionDistance, unsigned long flags = 0 ) = 0;
H A DOgreStaticGeometry.h381 bool extrudeVertices, Real extrusionDistance, unsigned long flags = 0 );
467 bool extrudeVertices, Real extrusionDistance, unsigned long flags = 0 );
H A DOgreEntity.h603 bool extrudeVertices, Real extrusionDistance, unsigned long flags = 0 );
/dports/graphics/ogre3d/ogre-1.11.6/OgreMain/include/
H A DOgreShadowCaster.h164 bool extrudeVertices, Real extrusionDistance, unsigned long flags = 0 ) = 0;
H A DOgreStaticGeometry.h380 bool extrudeVertices, Real extrusionDistance, unsigned long flags = 0 );
466 bool extrudeVertices, Real extrusionDistance, unsigned long flags = 0 );
H A DOgreEntity.h623 bool extrudeVertices, Real extrusionDistance, unsigned long flags = 0);
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/OgreMain/src/
H A DOgreStaticGeometry.cpp900 bool extrude, Real extrusionDistance, unsigned long flags) in getShadowVolumeRenderableIterator() argument
908extrusionDistance *= Math::Sqrt(std::min(std::min(world2Obj3x3.GetColumn(0).squaredLength(), world… in getShadowVolumeRenderableIterator()
912 shadowTechnique, lightPos, indexBuffer, extrude, extrusionDistance, flags); in getShadowVolumeRenderableIterator()
1198 Real extrusionDistance, unsigned long flags /* = 0 */) in updateShadowRenderables() argument
1244 lightPos, extrusionDistance); in updateShadowRenderables()
H A DOgreManualObject.cpp980 bool extrude, Real extrusionDistance, unsigned long flags) in getShadowVolumeRenderableIterator() argument
997extrusionDistance *= Math::Sqrt(std::min(std::min(world2Obj3x3.GetColumn(0).squaredLength(), world… in getShadowVolumeRenderableIterator()
1050 lightPos, extrusionDistance); in getShadowVolumeRenderableIterator()
H A DOgreEntity.cpp1845 bool extrude, Real extrusionDistance, unsigned long flags) in getShadowVolumeRenderableIterator() argument
1871 extrude, extrusionDistance, flags); in getShadowVolumeRenderableIterator()
1901extrusionDistance *= Math::Sqrt(std::min(std::min(world2Obj3x3.GetColumn(0).squaredLength(), world… in getShadowVolumeRenderableIterator()
1994 lightPos, extrusionDistance); in getShadowVolumeRenderableIterator()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/Graphics/
H A DView.cpp2493 float extrusionDistance = shadowCamera->GetFarClip(); in IsShadowCasterVisible() local
2494 float originalDistance = Clamp(center.Length(), M_EPSILON, extrusionDistance); in IsShadowCasterVisible()
2497 float sizeFactor = extrusionDistance / originalDistance; in IsShadowCasterVisible()
2501 Vector3 newCenter = extrusionDistance * extrusionRay.direction_; in IsShadowCasterVisible()
2625 float extrusionDistance = Min(cullCamera_->GetFarClip(), light->GetShadowMaxExtrusion()); in SetupDirLightShadowCamera() local
2629 …Vector3 pos = cullCamera_->GetNode()->GetWorldPosition() - extrusionDistance * lightNode->GetWorld… in SetupDirLightShadowCamera()