Home
last modified time | relevance | path

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

/dports/graphics/Coin/coin-Coin-4.0.0/src/projectors/
H A DSbLineProjector.cpp116 float dot = SbAbs(wrldline.getDirection().dot(vv.getProjectionDirection())); in tryProject()
117 nonparallel = SbAbs(1.0f - dot) > epsilon; in tryProject()
125 dot = SbAbs(dir.dot(vv.getProjectionDirection())); in tryProject()
126 nonparallel = SbAbs(1.0f - dot) > epsilon; in tryProject()
H A DSbPlaneProjector.cpp121 float dot = SbAbs(wrldplane.getNormal().dot(vv.getProjectionDirection())); in tryProject()
135 dot = SbAbs(dir.dot(vv.getProjectionDirection())); in tryProject()
136 ok = SbAbs(1.0f - dot) > epsilon; in tryProject()
/dports/graphics/Coin/coin-Coin-4.0.0/src/rendering/
H A DSoRenderManagerP.cpp173 if (SbAbs(oldnear - newnear) > SbAbs(neareps)) { in setClippingPlanes()
176 if (SbAbs(oldfar - newfar) > SbAbs(fareps)) { in setClippingPlanes()
/dports/graphics/Coin/coin-Coin-4.0.0/include/Inventor/
H A DSbBasic.h65 inline Type SbAbs( Type Val ) { in SbAbs() function
/dports/graphics/Coin/coin-Coin-4.0.0/src/base/
H A DSbVec4f.cpp212 if (SbAbs(len-1.0) > NORMALIZATION_TOLERANCE) { in normalize()
H A DSbDPMatrix.cpp449 if ((det_1 == 0.0) || (SbAbs(det_1 / (pos - neg)) < DBL_EPSILON)) { in inverse()
510 sum += SbAbs(dst[i][j]); in inverse()
512 tmp = SbAbs(dst[i][k]) / sum; in inverse()
1015 const double test_pivot = SbAbs(matrix[test_row][row]); in LUDecomposition()
H A DSbMatrix.cpp529 if ((det_1 == 0.0f) || (SbAbs(det_1 / (pos - neg)) < FLT_EPSILON)) { in inverse()
590 sum += SbAbs(dst[i][j]); in inverse()
592 tmp = SbAbs(dst[i][k]) / sum; in inverse()
1222 const float test_pivot = SbAbs(matrix[test_row][row]); in LUDecomposition()
H A DSbXfBox3d.cpp753 if (SbAbs(this->matrix.det4()) > VALID_LIMIT) { in calcInverse()
H A DSbXfBox3f.cpp802 if (SbAbs(this->matrix.det4()) > VALID_LIMIT) { in calcInverse()
/dports/graphics/Coin/coin-Coin-4.0.0/testsuite/
H A DTestSuiteMisc.h84 unsigned int intDiff = SbAbs(A.i32 - B.i32); in floatEquals()
/dports/graphics/Coin/coin-Coin-4.0.0/src/engines/
H A DSoTimeCounter.cpp375 this->numsteps = (this->max.getValue() - this->min.getValue()) / SbAbs(stepval) + 1; in calcNumSteps()
/dports/graphics/Coin/coin-Coin-4.0.0/src/elements/
H A DSoLazyElement.cpp372 if (SbAbs(elem->coinstate.shininess - value) > SO_LAZY_SHINY_THRESHOLD) { in setShininess()
780 if (SbAbs(elem->coinstate.shininess-shininess) > SO_LAZY_SHINY_THRESHOLD) { in setMaterials()
/dports/graphics/Coin/coin-Coin-4.0.0/src/nodes/
H A DSoCamera.cpp498 if (SbAbs(dir.dot(up)) >= (1.0f - FLT_EPSILON)) up.setValue(0.0f, 0.0f, 1.0f); in pointAt()
H A DSoExtSelection.cpp1041 if ((SbAbs(vsprev[0]) + SbAbs(vsprev[1])) <= 2) { in handleEventLasso()
/dports/graphics/Coin/coin-Coin-4.0.0/src/shadows/
H A DSoShadowGroup.cpp2228 int dy = SbAbs(y - center); in createGaussFilter()
2230 int dx = SbAbs(x - center); in createGaussFilter()
/dports/graphics/Coin/coin-Coin-4.0.0/src/vrml97/
H A DExtrusion.cpp1011 if (SbAbs(z0.dot(z1)) > 0.999f) { in calculate_z_axis()