Home
last modified time | relevance | path

Searched refs:tempPoint (Results 1 – 25 of 59) sorted by relevance

123

/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/imaging/
H A DossimAnnotationMultiEllipseObject.cpp100 ossimDpt tempPoint = thePointList[i]; in draw() local
108 anImage.drawFilledArc(ossim::round<int>(tempPoint.x), in draw()
109 ossim::round<int>(tempPoint.y), in draw()
121 ossimDpt tempPoint = thePointList[i]; in draw() local
129 anImage.drawArc(ossim::round<int>(tempPoint.x), in draw()
130 ossim::round<int>(tempPoint.y), in draw()
167 ossimDpt tempPoint = thePointList[i]; in computeBoundingRect() local
168 if(!tempPoint.hasNans()) in computeBoundingRect()
170 ossimDrect tempRect(ossimDpt(tempPoint.x - theWidthHeight.x, in computeBoundingRect()
171 tempPoint.y - theWidthHeight.y), in computeBoundingRect()
[all …]
H A DossimRectangleCutFilter.cpp84 ossimIpt tempPoint(ulx, uly); in getTile() local
86 for(ossim_int32 y = 0; y < h; ++tempPoint.y,++y) in getTile()
88 tempPoint.x = ulx; in getTile()
89 for(ossim_int32 x = 0; x < w; ++tempPoint.x,++x) in getTile()
91 if(!cutRect.pointWithin(tempPoint)) in getTile()
109 ossimIpt tempPoint(ulx, uly); in getTile() local
111 for(ossim_int32 y = 0; y < h; ++tempPoint.y,++y) in getTile()
113 tempPoint.x = ulx; in getTile()
114 for(ossim_int32 x = 0; x < w; ++tempPoint.x,++x) in getTile()
116 if(cutRect.pointWithin(tempPoint)) in getTile()
/dports/cad/impact/Impact/src/j3d/
H A DArcBall.java29 Point2f tempPoint = new Point2f(point.x, point.y); in mapToSphere() local
32 tempPoint.x = (tempPoint.x * this.adjustWidth) - 1.0f; in mapToSphere()
33 tempPoint.y = 1.0f - (tempPoint.y * this.adjustHeight); in mapToSphere()
36 float length = (tempPoint.x * tempPoint.x) + (tempPoint.y * tempPoint.y); in mapToSphere()
44 vector.x = tempPoint.x * norm; in mapToSphere()
45 vector.y = tempPoint.y * norm; in mapToSphere()
50 vector.x = tempPoint.x; in mapToSphere()
51 vector.y = tempPoint.y; in mapToSphere()
/dports/cad/zcad/zcad-8b8a693/cad_source/zcad/velec/
H A Duzvtestdraw.pas242 tempPoint:GDBVertex;
255 tempPoint.x:=point.x-rr;
256 tempPoint.y:=point.y+rr;
257 tempPoint.z:=0;
260 tempPoint.x:=point.x+rr;
261 tempPoint.y:=point.y-rr;
264 tempPoint.y:=point.y+rr;
349 tempPoint:GDBVertex;
351 tempPoint.x:=0;
352 tempPoint.y:=0;
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/QuadEdgeMesh/include/
H A DitkQuadEdgeMeshEulerOperatorCreateCenterVertexFunction.hxx80 PointIdentifier tempPoint; in Evaluate() local
83 tempPoint = e->GetDestination(); in Evaluate()
86 tempPoint); in Evaluate()
87 QEType *edgeRef = this->m_Mesh->FindEdge(this->m_NewPointID, tempPoint); in Evaluate()
90 tempPoint = edgeRef->GetLnext()->GetDestination(); in Evaluate()
93 tempPoint); in Evaluate()
94 edgeRef = this->m_Mesh->FindEdge(this->m_NewPointID, tempPoint); in Evaluate()
/dports/graphics/mandelbulber/mandelbulber2-2.26/mandelbulber2/src/
H A Dshader_surface_color.cpp53 CVector3 tempPoint = input.point; in SurfaceColour() local
59 tempPoint = tempPoint - params->formulaPosition[formulaIndex]; in SurfaceColour()
60 tempPoint = params->mRotFormulaRotation[formulaIndex].RotateVector(tempPoint); in SurfaceColour()
61 tempPoint = tempPoint.mod(params->formulaRepeat[formulaIndex]); in SurfaceColour()
62 tempPoint *= params->formulaScale[formulaIndex]; in SurfaceColour()
66 tempPoint, 0, params->N * 4, &params->common, formulaIndex, false, input.material); in SurfaceColour()
/dports/misc/jbidwatcher/jbidwatcher-2.5.6/src/com/jbidwatcher/ui/
H A DUISnapshot.java21 Point tempPoint = mainFrame.getLocationOnScreen(); in recordLocation() local
22 JConfig.setConfiguration("temp.last.screenx", Integer.toString(tempPoint.x)); in recordLocation()
23 JConfig.setConfiguration("temp.last.screeny", Integer.toString(tempPoint.y)); in recordLocation()
32 Point tempPoint = inFrame.getLocationOnScreen(); in snapshotLocation() local
34 displayProps.setProperty("screenx", Integer.toString(tempPoint.x)); in snapshotLocation()
35 displayProps.setProperty("screeny", Integer.toString(tempPoint.y)); in snapshotLocation()
/dports/cad/opencascade/opencascade-7.6.0/src/IGESSolid/
H A DIGESSolid_ToolTorus.cxx47 gp_XYZ tempPoint, tempAxis; in ReadOwnParams() local
57 tempPoint.SetX(tempreal); in ReadOwnParams()
59 else tempPoint.SetX(0.0); in ReadOwnParams()
65 tempPoint.SetY(tempreal); in ReadOwnParams()
67 else tempPoint.SetY(0.0); in ReadOwnParams()
73 tempPoint.SetZ(tempreal); in ReadOwnParams()
75 else tempPoint.SetZ(0.0); in ReadOwnParams()
102 ent->Init (r1, r2, tempPoint, tempAxis); in ReadOwnParams()
/dports/cad/opencascade/opencascade-7.6.0/src/IGESDraw/
H A DIGESDraw_ConnectPoint.cxx64 gp_Pnt tempPoint(thePoint); in Point() local
65 return tempPoint; in Point()
70 gp_XYZ tempPoint = thePoint; in TransformedPoint() local
71 if (HasTransf()) Location().Transforms(tempPoint); in TransformedPoint()
72 gp_Pnt tempRes(tempPoint); in TransformedPoint()
H A DIGESDraw_ToolConnectPoint.cxx50 gp_XYZ tempPoint; in ReadOwnParams() local
58 …PR.ReadXYZ(PR.CurrentList(1, 3), "Connect Point Coordinate", tempPoint); //szv#4:S4163:12Mar99 `st… in ReadOwnParams()
96 (tempPoint, tempDisplaySymbol, tempTypeFlag, tempFunctionFlag, in ReadOwnParams()
134 gp_XYZ tempPoint = (another->Point()).XYZ(); in OwnCopy() local
153 ent->Init(tempPoint, tempDisplaySymbol, tempTypeFlag, tempFunctionFlag, in OwnCopy()
/dports/games/scummvm/scummvm-2.5.1/engines/saga2/
H A Dterrain.cpp370 TilePoint tempPoint; in lineTerrain() local
446 tempPoint.z = curSubTile.z; in lineTerrain()
447 TPLine(prevPoint, tempPoint); in lineTerrain()
448 prevPoint = tempPoint; in lineTerrain()
478 tempPoint.z = curSubTile.z; in lineTerrain()
480 prevPoint = tempPoint; in lineTerrain()
517 tempPoint.z = curSubTile.z; in lineTerrain()
518 TPLine(prevPoint, tempPoint); in lineTerrain()
519 prevPoint = tempPoint; in lineTerrain()
549 tempPoint.z = curSubTile.z; in lineTerrain()
[all …]
/dports/science/xdrawchem/xdrawchem-a3f74c34eb09fa72ee16848ec6901049ca5309d5/xdrawchem/
H A Dsdg.h141 SPoint tempPoint; in draw() local
424 SPoint point, temp2Point, tempPoint; in positionRingSubstituents() local
560 tempPoint = placeAtom( in positionRingSubstituents()
607 tempPoint = placeAtom( in positionRingSubstituents()
616 tempPoint = in positionRingSubstituents()
778 tempPoint = in positionRingSubstituents()
1141 SPoint tempPoint; in positionAtomSubstituents() local
1215 tempPoint = rotAtom(SPoint(x, y), tempPoint, alph); in positionAtomSubstituents()
1216 ring->x = tempPoint.x; in positionAtomSubstituents()
1217 ring->y = tempPoint.y; in positionAtomSubstituents()
[all …]
/dports/print/scribus-devel/scribus-1.5.7/scribus/
H A Dcanvasgesture_resize.cpp773 snappedPoint.setY(tempPoint.y()); in applyGrid()
778 snappedPoint.setY(tempPoint.y()); in applyGrid()
789 snappedPoint.setX(tempPoint.x()); in applyGrid()
794 snappedPoint.setX(tempPoint.x()); in applyGrid()
905 m_doc->ApplyGuides(&tempPoint); in applyGuides()
907 snappedPoint.setY(tempPoint.y()); in applyGuides()
912 m_doc->ApplyGuides(&tempPoint); in applyGuides()
914 snappedPoint.setY(tempPoint.y()); in applyGuides()
928 m_doc->ApplyGuides(&tempPoint); in applyGuides()
930 snappedPoint.setX(tempPoint.x()); in applyGuides()
[all …]
/dports/games/powder-toy/The-Powder-Toy-95.0/src/lua/
H A DTPTScriptInterface.cpp316 ui::Point tempPoint = ((PointType)selector).Value(); in tptS_set() local
317 if(tempPoint.X<0 || tempPoint.Y<0 || tempPoint.Y >= YRES || tempPoint.X >= XRES) in tptS_set()
452 ui::Point tempPoint = position.Value(); in tptS_create() local
453 if(tempPoint.X<0 || tempPoint.Y<0 || tempPoint.Y >= YRES || tempPoint.X >= XRES) in tptS_create()
462 int returnValue = sim->create_part(-1, tempPoint.X, tempPoint.Y, type, v); in tptS_create()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.DataVisualization/Common/ChartTypes/
H A DLineChart.cs1847 DataPoint3D tempPoint = new DataPoint3D(); in ClipTopPoints()
1848 tempPoint.xPosition = intersectionPoint.xPosition; in ClipTopPoints()
1849 tempPoint.yPosition = intersectionPoint.yPosition; in ClipTopPoints()
1852 intersectionPoint2.xPosition = tempPoint.xPosition; in ClipTopPoints()
1853 intersectionPoint2.yPosition = tempPoint.yPosition; in ClipTopPoints()
2247 DataPoint3D tempPoint = new DataPoint3D(); in ClipBottomPoints()
2274 DataPoint3D tempPoint = new DataPoint3D(); in ClipBottomPoints()
2289 DataPoint3D tempPoint = new DataPoint3D(); in ClipBottomPoints()
2319 DataPoint3D tempPoint = new DataPoint3D(); in ClipBottomPoints()
2335 DataPoint3D tempPoint = new DataPoint3D(); in ClipBottomPoints()
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Filtering/ImageGrid/include/
H A DitkShrinkImageFilter.hxx130 typename TOutputImage::PointType tempPoint; in DynamicThreadedGenerateData() local
137 outputPtr->TransformIndexToPhysicalPoint(outputIndex, tempPoint); in DynamicThreadedGenerateData()
138 inputPtr->TransformPhysicalPointToIndex(tempPoint, inputIndex); in DynamicThreadedGenerateData()
212 typename TOutputImage::PointType tempPoint; in GenerateInputRequestedRegion() local
219 outputPtr->TransformIndexToPhysicalPoint(outputIndex, tempPoint); in GenerateInputRequestedRegion()
220 inputPtr->TransformPhysicalPointToIndex(tempPoint, inputIndex); in GenerateInputRequestedRegion()
/dports/deskutils/latte-dock/latte-dock-0.10.6/plasmoid/package/contents/ui/task/animations/
H A DRemoveWindowFromGroupAnimation.qml137 var tempPoint = 0;
140 tempPoint = y;
142 tempPoint = x;
146 … componentRemoveAnimation.toPoint = tempPoint + taskItem.abilities.metrics.iconSize;
149 … componentRemoveAnimation.toPoint = tempPoint - taskItem.abilities.metrics.iconSize;
/dports/devel/upp/upp/bazaar/plugin/geotiff/libgeotiff/ogr/
H A Dogrlinearring.cpp368 OGRPoint tempPoint; in reverseWindingOrder() local
372 getPoint( i, &tempPoint ); in reverseWindingOrder()
375 setPoint( pos, tempPoint.getX(), tempPoint.getY(), tempPoint.getZ() ); in reverseWindingOrder()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/saga/
H A Dactor_path.cpp411 Point tempPoint; in pathLine() local
420 tempPoint.x = delta.x * 2; in pathLine()
421 tempPoint.y = delta.y * 2; in pathLine()
425 errterm = tempPoint.x - delta.y; in pathLine()
431 errterm -= tempPoint.y; in pathLine()
435 errterm += tempPoint.x; in pathLine()
447 errterm = tempPoint.y - delta.x; in pathLine()
453 errterm -= tempPoint.x; in pathLine()
457 errterm += tempPoint.y; in pathLine()
/dports/games/scummvm/scummvm-2.5.1/engines/saga/
H A Dactor_path.cpp411 Point tempPoint; in pathLine() local
420 tempPoint.x = delta.x * 2; in pathLine()
421 tempPoint.y = delta.y * 2; in pathLine()
425 errterm = tempPoint.x - delta.y; in pathLine()
431 errterm -= tempPoint.y; in pathLine()
435 errterm += tempPoint.x; in pathLine()
447 errterm = tempPoint.y - delta.x; in pathLine()
453 errterm -= tempPoint.x; in pathLine()
457 errterm += tempPoint.y; in pathLine()
/dports/math/vtk8/VTK-8.2.0/Imaging/Stencil/
H A DvtkPolyDataToImageStencil.cxx535 double tempPoint[3]; in ThreadedExecute() local
536 points->GetPoint(j, tempPoint); in ThreadedExecute()
537 tempPoint[0] = (tempPoint[0] - origin[0])*invspacing[0]; in ThreadedExecute()
538 tempPoint[1] = (tempPoint[1] - origin[1])*invspacing[1]; in ThreadedExecute()
539 tempPoint[2] = (tempPoint[2] - origin[2])*invspacing[2]; in ThreadedExecute()
540 points->SetPoint(j, tempPoint); in ThreadedExecute()
/dports/math/vtk9/VTK-9.1.0/Imaging/Stencil/
H A DvtkPolyDataToImageStencil.cxx528 double tempPoint[3]; in ThreadedExecute() local
529 points->GetPoint(j, tempPoint); in ThreadedExecute()
530 tempPoint[0] = (tempPoint[0] - origin[0]) * invspacing[0]; in ThreadedExecute()
531 tempPoint[1] = (tempPoint[1] - origin[1]) * invspacing[1]; in ThreadedExecute()
532 tempPoint[2] = (tempPoint[2] - origin[2]) * invspacing[2]; in ThreadedExecute()
533 points->SetPoint(j, tempPoint); in ThreadedExecute()
/dports/math/vtk6/VTK-6.2.0/Imaging/Stencil/
H A DvtkPolyDataToImageStencil.cxx537 double tempPoint[3]; in ThreadedExecute() local
538 points->GetPoint(j, tempPoint); in ThreadedExecute()
539 tempPoint[0] = (tempPoint[0] - origin[0])*invspacing[0]; in ThreadedExecute()
540 tempPoint[1] = (tempPoint[1] - origin[1])*invspacing[1]; in ThreadedExecute()
541 tempPoint[2] = (tempPoint[2] - origin[2])*invspacing[2]; in ThreadedExecute()
542 points->SetPoint(j, tempPoint); in ThreadedExecute()
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Numerics/Statistics/test/
H A DitkJointDomainImageToListSampleAdaptorTest.cxx153 JointDomainImageToListSampleAdaptorType::PointType tempPoint; in itkJointDomainImageToListSampleAdaptorTest() local
168 adaptor->GetImage()->TransformIndexToPhysicalPoint( index, tempPoint ); in itkJointDomainImageToListSampleAdaptorTest()
172 measurementVector[0] = tempPoint[0]; in itkJointDomainImageToListSampleAdaptorTest()
173 measurementVector[1] = tempPoint[1]; in itkJointDomainImageToListSampleAdaptorTest()
174 measurementVector[2] = tempPoint[2]; in itkJointDomainImageToListSampleAdaptorTest()
/dports/cad/openroad/OpenROAD-2.0/src/mpl/src/ParquetFP/src/
H A DClusterDB.cxx404 Point tempPoint; in getClosestNode() local
405 tempPoint.x = 0; // x: node index in getClosestNode()
406 tempPoint.y = 0; // y: incidence w/ "currNode" in getClosestNode()
435 tempPoint.x = float(bitsSet[i]); in getClosestNode()
436 tempPoint.y = _numConnections[bitsSet[i]]; in getClosestNode()
437 numConnections.push_back(tempPoint); in getClosestNode()
444 tempPoint.x = float(i); in getClosestNode()
445 tempPoint.y = _numConnections[i]; in getClosestNode()
446 numConnections.push_back(tempPoint); in getClosestNode()

123