Home
last modified time | relevance | path

Searched refs:xMin (Results 1 – 25 of 3531) sorted by relevance

12345678910>>...142

/dports/print/py-fonttools/fonttools-4.28.2/Lib/fontTools/misc/
H A DarrayTools.py57 xMin, yMin, xMax, yMax = bounds
72 xMin, yMin, xMax, yMax = rect
88 xMin, yMin, xMax, yMax = rect
130 (xMin, yMin, xMax, yMax) = rect
131 return min(xMin, xMax), min(yMin, yMax), max(xMin, xMax), max(yMin, yMax)
145 (xMin, yMin, xMax, yMax) = rect
160 (xMin, yMin, xMax, yMax) = rect
175 (xMin, yMin, xMax, yMax) = rect
216 return (xMin, yMin, xMax, yMax)
228 (xMin, yMin, xMax, yMax) = rect
[all …]
/dports/math/vtk8/VTK-8.2.0/Common/DataModel/
H A DvtkSphere.cxx82 xMin[0] = xMin[1] = xMin[2] = VTK_FLOAT_MAX; in vtkSphereComputeBoundingSphere()
94 if (p[0] < xMin[0] ) VTK_ASSIGN_POINT(xMin,p); in vtkSphereComputeBoundingSphere()
101 T xSpan = (xMax[0]-xMin[0])*(xMax[0]-xMin[0]) + (xMax[1]-xMin[1])*(xMax[1]-xMin[1]) + in vtkSphereComputeBoundingSphere()
102 (xMax[2]-xMin[2])*(xMax[2]-xMin[2]); in vtkSphereComputeBoundingSphere()
112 VTK_ASSIGN_POINT(d1,xMin); in vtkSphereComputeBoundingSphere()
200 xMin[0] = xMin[1] = xMin[2] = VTK_FLOAT_MAX; in vtkSphereComputeBoundingSphere()
214 if ((s[0]-s[3]) < (xMin[0]-xMin[3]) ) VTK_ASSIGN_SPHERE(xMin,s); in vtkSphereComputeBoundingSphere()
221 T xSpan = (xMax[0]+xMax[3]-xMin[0]-xMin[3])*(xMax[0]+xMax[3]-xMin[0]-xMin[3]) + in vtkSphereComputeBoundingSphere()
222 (xMax[1]+xMax[3]-xMin[1]-xMin[3])*(xMax[1]+xMax[3]-xMin[1]-xMin[3]) + in vtkSphereComputeBoundingSphere()
223 (xMax[2]+xMax[3]-xMin[2]-xMin[3])*(xMax[2]+xMax[3]-xMin[2]-xMin[3]); in vtkSphereComputeBoundingSphere()
[all …]
/dports/math/vtk9/VTK-9.1.0/Common/DataModel/
H A DvtkSphere.cxx88 xMin[0] = xMin[1] = xMin[2] = VTK_FLOAT_MAX; in vtkSphereComputeBoundingSphere()
100 if (p[0] < xMin[0]) in vtkSphereComputeBoundingSphere()
101 VTK_ASSIGN_POINT(xMin, p); in vtkSphereComputeBoundingSphere()
113 T xSpan = (xMax[0] - xMin[0]) * (xMax[0] - xMin[0]) + in vtkSphereComputeBoundingSphere()
114 (xMax[1] - xMin[1]) * (xMax[1] - xMin[1]) + (xMax[2] - xMin[2]) * (xMax[2] - xMin[2]); in vtkSphereComputeBoundingSphere()
124 VTK_ASSIGN_POINT(d1, xMin); in vtkSphereComputeBoundingSphere()
217 xMin[0] = xMin[1] = xMin[2] = VTK_FLOAT_MAX; in vtkSphereComputeBoundingSphere()
231 if ((s[0] - s[3]) < (xMin[0] - xMin[3])) in vtkSphereComputeBoundingSphere()
245 ((xMax[0] + xMax[3]) - (xMin[0] - xMin[3])) * ((xMax[0] + xMax[3]) - (xMin[0] - xMin[3])) + in vtkSphereComputeBoundingSphere()
246 ((xMax[1] + xMax[3]) - (xMin[1] - xMin[3])) * ((xMax[1] + xMax[3]) - (xMin[1] - xMin[3])) + in vtkSphereComputeBoundingSphere()
[all …]
/dports/graphics/osgearth/osgearth-osgearth-2.10.1/src/osgEarth/
H A DBounds.cpp44 return xMin() <= xMax() && yMin() <= yMax(); in isValid()
52 x >= xMin() && x <= xMax() && y >= yMin() && y <= yMax(); in contains()
60 xMin() <= rhs.xMin() && xMax() >= rhs.xMax() && in contains()
90 u.xMin() = xMin() >= rhs.xMin() && xMin() <= rhs.xMax() ? xMin() : rhs.xMin(); in unionWith()
91 u.xMax() = xMax() >= rhs.xMin() && xMax() <= rhs.xMax() ? xMax() : rhs.xMax(); in unionWith()
113 xmin = ( xMin() > rhs.xMin() && xMin() < rhs.xMax() ) ? xMin() : rhs.xMin(); in intersectionWith()
114 xmax = ( xMax() > rhs.xMin() && xMax() < rhs.xMax() ) ? xMax() : rhs.xMax(); in intersectionWith()
123 return xMax()-xMin(); in width()
144 return (center2d() - osg::Vec2d(xMin(),yMin())).length(); in radius2d()
155 … return Stringify() << "(" << xMin() << "," << yMin() << " => " << xMax() << "," << yMax() << ")"; in toString()
/dports/math/vtk6/VTK-6.2.0/Common/DataModel/
H A DvtkSphere.cxx82 xMin[0] = xMin[1] = xMin[2] = VTK_FLOAT_MAX; in vtkSphereComputeBoundingSphere()
94 if (p[0] < xMin[0] ) VTK_ASSIGN_POINT(xMin,p); in vtkSphereComputeBoundingSphere()
101 T xSpan = (xMax[0]-xMin[0])*(xMax[0]-xMin[0]) + (xMax[1]-xMin[1])*(xMax[1]-xMin[1]) + in vtkSphereComputeBoundingSphere()
102 (xMax[2]-xMin[2])*(xMax[2]-xMin[2]); in vtkSphereComputeBoundingSphere()
112 VTK_ASSIGN_POINT(d1,xMin); in vtkSphereComputeBoundingSphere()
200 xMin[0] = xMin[1] = xMin[2] = xMin[3] = VTK_FLOAT_MAX; in vtkSphereComputeBoundingSphere()
213 if ((s[0]-s[3]) < xMin[0] ) VTK_ASSIGN_SPHERE(xMin,s); in vtkSphereComputeBoundingSphere()
220 T xSpan = (xMax[0]+xMax[3]-xMin[0]-xMin[3])*(xMax[0]+xMax[3]-xMin[0]-xMin[3]) + in vtkSphereComputeBoundingSphere()
221 (xMax[1]+xMax[3]-xMin[1]-xMin[3])*(xMax[1]+xMax[3]-xMin[1]-xMin[3]) + in vtkSphereComputeBoundingSphere()
222 (xMax[2]+xMax[3]-xMin[2]-xMin[3])*(xMax[2]+xMax[3]-xMin[2]-xMin[3]); in vtkSphereComputeBoundingSphere()
[all …]
/dports/graphics/xpdf3/xpdf-3.04/xpdf/
H A DTextOutputDev.cc288 xMin = child->xMin; in addChild()
311 xMin = child->xMin; in addChild()
505 xMin = ch->xMin; in TextWord()
513 xMin = ch->xMin; in TextWord()
525 xMin = ch->xMin; in TextWord()
529 xMin = ch->xMin; in TextWord()
602 xMin = ch->xMin; in appendChar()
2060 par->xMin = xMin; in unrotateColumns()
2112 par->xMin = xMin; in unrotateColumns()
2173 par->xMin = xMin; in unrotateColumns()
[all …]
/dports/devel/tex-web2c/texlive-20150521-source/libs/xpdf/xpdf-3.04/xpdf/
H A DTextOutputDev.cc288 xMin = child->xMin; in addChild()
311 xMin = child->xMin; in addChild()
505 xMin = ch->xMin; in TextWord()
513 xMin = ch->xMin; in TextWord()
525 xMin = ch->xMin; in TextWord()
529 xMin = ch->xMin; in TextWord()
602 xMin = ch->xMin; in appendChar()
2060 par->xMin = xMin; in unrotateColumns()
2112 par->xMin = xMin; in unrotateColumns()
2173 par->xMin = xMin; in unrotateColumns()
[all …]
/dports/japanese/tex-ptex/texlive-20150521-source/libs/xpdf/xpdf-3.04/xpdf/
H A DTextOutputDev.cc288 xMin = child->xMin; in addChild()
311 xMin = child->xMin; in addChild()
505 xMin = ch->xMin; in TextWord()
513 xMin = ch->xMin; in TextWord()
525 xMin = ch->xMin; in TextWord()
529 xMin = ch->xMin; in TextWord()
602 xMin = ch->xMin; in appendChar()
2060 par->xMin = xMin; in unrotateColumns()
2112 par->xMin = xMin; in unrotateColumns()
2173 par->xMin = xMin; in unrotateColumns()
[all …]
/dports/print/tex-basic-engines/texlive-20150521-source/libs/xpdf/xpdf-3.04/xpdf/
H A DTextOutputDev.cc288 xMin = child->xMin; in addChild()
311 xMin = child->xMin; in addChild()
505 xMin = ch->xMin; in TextWord()
513 xMin = ch->xMin; in TextWord()
525 xMin = ch->xMin; in TextWord()
529 xMin = ch->xMin; in TextWord()
602 xMin = ch->xMin; in appendChar()
2060 par->xMin = xMin; in unrotateColumns()
2112 par->xMin = xMin; in unrotateColumns()
2173 par->xMin = xMin; in unrotateColumns()
[all …]
/dports/print/tex-aleph/texlive-20150521-source/libs/xpdf/xpdf-3.04/xpdf/
H A DTextOutputDev.cc288 xMin = child->xMin; in addChild()
311 xMin = child->xMin; in addChild()
505 xMin = ch->xMin; in TextWord()
513 xMin = ch->xMin; in TextWord()
525 xMin = ch->xMin; in TextWord()
529 xMin = ch->xMin; in TextWord()
602 xMin = ch->xMin; in appendChar()
2060 par->xMin = xMin; in unrotateColumns()
2112 par->xMin = xMin; in unrotateColumns()
2173 par->xMin = xMin; in unrotateColumns()
[all …]
/dports/print/tex-xetex/texlive-20150521-source/libs/xpdf/xpdf-3.04/xpdf/
H A DTextOutputDev.cc288 xMin = child->xMin; in addChild()
311 xMin = child->xMin; in addChild()
505 xMin = ch->xMin; in TextWord()
513 xMin = ch->xMin; in TextWord()
525 xMin = ch->xMin; in TextWord()
529 xMin = ch->xMin; in TextWord()
602 xMin = ch->xMin; in appendChar()
2060 par->xMin = xMin; in unrotateColumns()
2112 par->xMin = xMin; in unrotateColumns()
2173 par->xMin = xMin; in unrotateColumns()
[all …]
/dports/print/tex-luatex/texlive-20150521-source/libs/xpdf/xpdf-3.04/xpdf/
H A DTextOutputDev.cc288 xMin = child->xMin; in addChild()
311 xMin = child->xMin; in addChild()
505 xMin = ch->xMin; in TextWord()
513 xMin = ch->xMin; in TextWord()
525 xMin = ch->xMin; in TextWord()
529 xMin = ch->xMin; in TextWord()
602 xMin = ch->xMin; in appendChar()
2060 par->xMin = xMin; in unrotateColumns()
2112 par->xMin = xMin; in unrotateColumns()
2173 par->xMin = xMin; in unrotateColumns()
[all …]
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/common/trop/
H A Dbrush.cpp113 int xMin, xMax; in brush() local
152 int xMin, xMax; in brush() local
158 xMin = in brush()
385 int xMin, xMax; in brush() local
414 int xMin, xMax; in brush() local
460 int xMin, xMax; in brush() local
491 int xMin, xMax; in brush() local
547 int xMin, xMax; in brush() local
549 xMin = in brush()
591 int xMin, xMax; in brush() local
[all …]
/dports/graphics/xpdf/xpdf-4.03/xpdf/
H A DTextOutputDev.cc391 xMin = child->xMin; in addChild()
711 xMin = ch->xMin; in TextWord()
718 xMin = ch->xMin; in TextWord()
2619 par->xMin = xMin; in unrotateColumnsFromZero()
2666 par->xMin = xMin; in unrotateColumnsFromZero()
2719 par->xMin = xMin; in unrotateColumnsFromZero()
2794 par->xMin = xMin; in unrotateColumns()
2856 par->xMin = xMin; in unrotateColumns()
2928 par->xMin = xMin; in unrotateColumns()
4603 xMin = ch->xMin; in buildSimple2Lines()
[all …]
/dports/graphics/xpdf4/xpdf-4.03/xpdf/
H A DTextOutputDev.cc391 xMin = child->xMin; in addChild()
711 xMin = ch->xMin; in TextWord()
718 xMin = ch->xMin; in TextWord()
2619 par->xMin = xMin; in unrotateColumnsFromZero()
2666 par->xMin = xMin; in unrotateColumnsFromZero()
2719 par->xMin = xMin; in unrotateColumnsFromZero()
2794 par->xMin = xMin; in unrotateColumns()
2856 par->xMin = xMin; in unrotateColumns()
2928 par->xMin = xMin; in unrotateColumns()
4603 xMin = ch->xMin; in buildSimple2Lines()
[all …]
/dports/print/py-fonttools3/fonttools-3.44.0/Lib/fontTools/misc/
H A DarrayTools.py36 xMin, yMin, xMax, yMax = bounds
42 xMin, yMin, xMax, yMax = rect
51 xMin, yMin, xMax, yMax = rect
68 (xMin, yMin, xMax, yMax) = rect
69 return min(xMin, xMax), min(yMin, yMax), max(xMin, xMax), max(yMin, yMax)
73 (xMin, yMin, xMax, yMax) = rect
78 (xMin, yMin, xMax, yMax) = rect
83 (xMin, yMin, xMax, yMax) = rect
108 return (xMin, yMin, xMax, yMax)
120 xMin = int(math.floor(xMin))
[all …]
/dports/biology/velvet/velvet_1.2.10/contrib/MetaVelvet-v0.3.1/
H A DscriptEstimatedCovMulti.py35 def weightedHisto(dicStats, xMin, xMax, binWidth): argument
40 for x in range(xMin, xMax, binWidth):
45 if cov < xMin or cov >= xMax:
47 for x in range(xMin, xMax+binWidth, binWidth):
58 for x in range(xMin, xMax, binWidth):
69 def printHisto(dicHisto, xMin, xMax, binWidth): argument
70 for x in range(xMin, xMax, binWidth):
130 def detectPeakPandS(dicHisto, xMin, xMax, binWidth, argument
182 xMin = 0 variable
209 xMin = 0 variable
[all …]
/dports/graphics/qgis/qgis-3.22.3/src/3d/
H A Dqgsaabb.cpp18 QgsAABB::QgsAABB( float xMin, float yMin, float zMin, float xMax, float yMax, float zMax ) in QgsAABB() argument
19 : xMin( xMin ) in QgsAABB()
27 if ( this->xMax < this->xMin ) in QgsAABB()
28 std::swap( this->xMin, this->xMax ); in QgsAABB()
37 return xMin < other.xMax && other.xMin < xMax && in intersects()
44 return xMin <= x && xMax >= x && in intersects()
52 const float dx = std::max( xMin - x, std::max( 0.f, x - xMax ) ); in distanceFromPoint()
68 const float x = i ? xMax : xMin; in verticesForLines()
77 vertices.append( QVector3D( xMin, y, z ) ); in verticesForLines()
98 …return QStringLiteral( "X %1 - %2 Y %3 - %4 Z %5 - %6" ).arg( xMin ).arg( xMax ).arg( yMin ).arg… in toString()
/dports/net/ns3/ns-allinone-3.35/ns-3.35/src/mobility/model/
H A Drectangle.cc32 : xMin (_xMin), in Rectangle()
40 : xMin (0.0), in Rectangle()
51 position.x <= this->xMax && position.x >= this->xMin && in IsInside()
60 double xMinDist = std::abs (position.x - this->xMin); in GetClosestSide()
91 if (position.x < this->xMin) in GetClosestSide()
96 double xDiff = this->xMin - position.x; in GetClosestSide()
113 double xDiff = this->xMin - position.x; in GetClosestSide()
145 double xDiff = position.x - this->xMin; in GetClosestSide()
162 double xDiff = position.x - this->xMin; in GetClosestSide()
186 bool yMaxXOk = (yMaxX <= this->xMax && yMaxX >= this->xMin); in CalculateIntersection()
[all …]
/dports/textproc/pdftohtml/pdftohtml-0.40a/xpdf/
H A DTextOutputDev.cc279 if (word->xMin < xMin) { in merge()
280 xMin = word->xMin; in merge()
518 xMin = word->xMin; in addWord()
524 xMin = word->xMin; in addWord()
749 xMin = line->xMin; in computeCoords()
761 xMin = line->xMin; in computeCoords()
831 xMin = blk->xMin + d0 * (blk->xMax - blk->xMin); in computeCoords()
852 xMin = blk->xMin + d2 * (blk->xMax - blk->xMin); in computeCoords()
989 xMin = word->xMin; in addWord()
1440 xMin = blk->xMin; in TextFlow()
[all …]
/dports/graphics/swftools/swftools-0.9.2/lib/pdf/xpdf/
H A DTextOutputDev.cc336 if (word->xMin < xMin) { in merge()
337 xMin = word->xMin; in merge()
608 xMin = word->xMin; in addWord()
614 xMin = word->xMin; in addWord()
845 xMin = line->xMin; in computeCoords()
857 xMin = line->xMin; in computeCoords()
927 xMin = blk->xMin + d0 * (blk->xMax - blk->xMin); in computeCoords()
948 xMin = blk->xMin + d2 * (blk->xMax - blk->xMin); in computeCoords()
1133 xMin = word->xMin; in addWord()
1584 xMin = blk->xMin; in TextFlow()
[all …]
/dports/graphics/xpdf/xpdf-4.03/splash/
H A DSplashMath.h312 if (xMin < -32767) {
313 xMin = -32767;
315 xMin = 32767;
323 if (xMin < -1e9) {
324 xMin = -1e9;
325 } else if (xMin > 1e9) {
326 xMin = 1e9;
337 x0 = splashRound(xMin);
346 x0 = splashRound(xMin);
350 x0 = splashRound(xMin);
[all …]
/dports/graphics/xpdf4/xpdf-4.03/splash/
H A DSplashMath.h312 if (xMin < -32767) {
313 xMin = -32767;
315 xMin = 32767;
323 if (xMin < -1e9) {
324 xMin = -1e9;
325 } else if (xMin > 1e9) {
326 xMin = 1e9;
337 x0 = splashRound(xMin);
346 x0 = splashRound(xMin);
350 x0 = splashRound(xMin);
[all …]
/dports/devel/emscripten/emscripten-2.0.3/tests/third_party/poppler/poppler/
H A DTextOutputDev.cc371 xMin = word->xMin; in merge()
651 xMin = word->xMin; in addWord()
657 xMin = word->xMin; in addWord()
888 xMin = line->xMin; in computeCoords()
900 xMin = line->xMin; in computeCoords()
970 xMin = blk->xMin + d0 * (blk->xMax - blk->xMin); in computeCoords()
991 xMin = blk->xMin + d2 * (blk->xMax - blk->xMin); in computeCoords()
1178 xMin = word->xMin; in addWord()
1786 xMin = blk->xMin; in TextFlow()
1814 xMin = blk->xMin; in addBlock()
[all …]
/dports/games/ufoai/ufoai-2.5-source/src/client/cgame/campaign/
H A Dcp_overlay.cpp145 for (x = xMin; x < xMax; x++) { in CP_DrawXVIOverlayPixel()
178 int xMin = 0; in CP_DrawXVIOverlayRow() local
181 xMin = floor((latMin + 540.0f) * xviWidthPerDegree); in CP_DrawXVIOverlayRow()
185 int xMin = 0; in CP_DrawXVIOverlayRow() local
322 int xMin = 0; in CP_DrawRadarOverlayRow() local
324 for (x = xMin; x < xMax; x++) { in CP_DrawRadarOverlayRow()
331 for (x = xMin; x < xMax; x++) { in CP_DrawRadarOverlayRow()
337 int xMin = 0; in CP_DrawRadarOverlayRow() local
339 for (x = xMin; x < xMax; x++) { in CP_DrawRadarOverlayRow()
346 for (x = xMin; x < xMax; x++) { in CP_DrawRadarOverlayRow()
[all …]

12345678910>>...142