Home
last modified time | relevance | path

Searched refs:getIntersection (Results 1 – 25 of 315) sorted by relevance

12345678910>>...13

/dports/math/jts/jts-jts-1.18.1/modules/core/src/test/java/org/locationtech/jts/algorithm/
H A DRobustLineIntersectionTest.java307 checkIntPoints(expectedIntPt[0], li.getIntersection(0), distanceTolerance); in checkIntersection()
310 checkIntPoints(expectedIntPt[1], li.getIntersection(0), distanceTolerance); in checkIntersection()
311 checkIntPoints(expectedIntPt[1], li.getIntersection(0), distanceTolerance); in checkIntersection()
313 if (! (equals(expectedIntPt[0],li.getIntersection(0), distanceTolerance) in checkIntersection()
314 || equals(expectedIntPt[0],li.getIntersection(1), distanceTolerance) )) { in checkIntersection()
315 checkIntPoints(expectedIntPt[0], li.getIntersection(0), distanceTolerance); in checkIntersection()
316 checkIntPoints(expectedIntPt[0], li.getIntersection(1), distanceTolerance); in checkIntersection()
318 else if (! (equals(expectedIntPt[1],li.getIntersection(0), distanceTolerance) in checkIntersection()
319 || equals(expectedIntPt[1],li.getIntersection(1), distanceTolerance) )) { in checkIntersection()
320 checkIntPoints(expectedIntPt[1], li.getIntersection(0), distanceTolerance); in checkIntersection()
[all …]
H A DRobustLineIntersectorZTest.java165 Coordinate actual1 = li.getIntersection(0); in checkIntersectionDir()
166 Coordinate actual2 = li.getIntersection(1); in checkIntersectionDir()
169 actual1 = li.getIntersection(1); in checkIntersectionDir()
170 actual2 = li.getIntersection(0); in checkIntersectionDir()
192 Coordinate actual = li.getIntersection(0); in checkIntersectionDir()
/dports/graphics/geos/geos-3.9.1/tests/unit/algorithm/
H A DRobustLineIntersectionTest.cpp79 checkIntPoints(intPt[0], li.getIntersection(0), in checkIntersection()
83 checkIntPoints(intPt[0], li.getIntersection(0), in checkIntersection()
85 checkIntPoints(intPt[1], li.getIntersection(0), in checkIntersection()
89 equals(intPt[0], li.getIntersection(0), distanceTolerance) in checkIntersection()
91 equals(intPt[0], li.getIntersection(1), distanceTolerance))) { in checkIntersection()
92 checkIntPoints(intPt[0], li.getIntersection(0), in checkIntersection()
94 checkIntPoints(intPt[0], li.getIntersection(1), in checkIntersection()
99 equals(intPt[1], li.getIntersection(0), distanceTolerance) in checkIntersection()
101 equals(intPt[1], li.getIntersection(1), distanceTolerance))) { in checkIntersection()
102 checkIntPoints(intPt[1], li.getIntersection(0), in checkIntersection()
[all …]
H A DRobustLineIntersectorZTest.cpp56 Coordinate actual1 = li.getIntersection(0); in checkIntersectionDir()
57 Coordinate actual2 = li.getIntersection(1); in checkIntersectionDir()
60 actual1 = li.getIntersection(1); in checkIntersectionDir()
61 actual2 = li.getIntersection(0); in checkIntersectionDir()
91 Coordinate actual = li.getIntersection(0); in checkIntersectionDir()
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/src/com/lightcrafts/ui/crop/
H A DUnderlayConstraints.java172 Point2D et = getIntersection(east, top); in adjustNorthToUnderlay()
173 Point2D el = getIntersection(east, left); in adjustNorthToUnderlay()
175 Point2D er = getIntersection(east, right); in adjustNorthToUnderlay()
177 Point2D wt = getIntersection(west, top); in adjustNorthToUnderlay()
178 Point2D wl = getIntersection(west, left); in adjustNorthToUnderlay()
180 Point2D wr = getIntersection(west, right); in adjustNorthToUnderlay()
242 Point2D et = getIntersection(east, top); in adjustSouthToUnderlay()
243 Point2D el = getIntersection(east, left); in adjustSouthToUnderlay()
247 Point2D wt = getIntersection(west, top); in adjustSouthToUnderlay()
248 Point2D wl = getIntersection(west, left); in adjustSouthToUnderlay()
[all …]
/dports/graphics/dilay/dilay-1.9.0/lib/src/
H A Disosurface-extraction.cpp31 const IntersectionCallback* getIntersection; member
37 , getIntersection (i) in Parameters()
59 if (params.getIntersection) in sampleDistancesThread()
108 assert (params.getIntersection); in sampleIntersectionsThread()
127 IsosurfaceExtraction::Intersection i = (*params.getIntersection) (ray, intersection); in sampleIntersectionsThread()
253 const IntersectionCallback& getIntersection, in extract() argument
256 Parameters params (getDistance, &getIntersection, bounds, resolution); in extract()
/dports/astro/stellarium/stellarium-0.21.3/src/core/
H A DStelSphereGeometry.hpp239 SphericalRegionP getIntersection(const SphericalRegion* r) const;
240 …SphericalRegionP getIntersection(const SphericalRegionP r) const {return getIntersection(r.data())… in getIntersection() function in SphericalRegion
241 virtual SphericalRegionP getIntersection(const SphericalPolygon& r) const;
242 virtual SphericalRegionP getIntersection(const SphericalConvexPolygon& r) const;
243 virtual SphericalRegionP getIntersection(const SphericalCap& r) const;
244 virtual SphericalRegionP getIntersection(const SphericalPoint& r) const;
245 virtual SphericalRegionP getIntersection(const AllSkySphericalRegion& r) const;
246 SphericalRegionP getIntersection(const EmptySphericalRegion& r) const;
522 using SphericalRegion::getIntersection;
566 using SphericalRegion::getIntersection;
[all …]
H A DStelSphereGeometry.cpp171 SphericalRegionP SphericalRegion::getIntersection(const SphericalRegion* r) const in getIntersection() function in SphericalRegion
176 return getIntersection(static_cast<const SphericalPoint*>(r)->n); in getIntersection()
178 return getIntersection(*static_cast<const SphericalCap*>(r)); in getIntersection()
180 return getIntersection(*static_cast<const SphericalPolygon*>(r)); in getIntersection()
182 return getIntersection(*static_cast<const SphericalConvexPolygon*>(r)); in getIntersection()
184 return getIntersection(*static_cast<const AllSkySphericalRegion*>(r)); in getIntersection()
195 SphericalRegionP SphericalRegion::getIntersection(const SphericalCap& r) const {return getIntersect… in getIntersection() function in SphericalRegion
196 SphericalRegionP SphericalRegion::getIntersection(const SphericalPoint& r) const {return getInterse… in getIntersection() function in SphericalRegion
819 reg = reg->getIntersection(regions.at(i)); in multiIntersection()
1372 reg1 = reg1->getIntersection(reg2.data()); in loadFromQVariant()
[all …]
/dports/graphics/geos/geos-3.9.1/include/geos/algorithm/
H A DCentralEndpointIntersector.h67 getIntersection(const geom::Coordinate& p00, in getIntersection() function
72 return intor.getIntersection(); in getIntersection()
90 getIntersection() const in getIntersection() function
/dports/cad/librecad/LibreCAD-2.2.0-rc2/librecad/src/actions/
H A Drs_actiondrawcircletan3.cpp178 sol.push_back(LC_Quadratic::getIntersection(lc1,lc2)); in getData()
195 sol.push_back(LC_Quadratic::getIntersection(lc1,lc2)); in getData()
206 auto sol1=LC_Quadratic::getIntersection(lc0,lc1); in getData()
211 sol1=LC_Quadratic::getIntersection(lc0,lc2); in getData()
224 sol1=LC_Quadratic::getIntersection(lc0,lc1); in getData()
232 sol1=LC_Quadratic::getIntersection(lc0,lc2); in getData()
261 sol.push_back(LC_Quadratic::getIntersection(lc2,lc1)); in getData()
/dports/math/jts/jts-jts-1.18.1/modules/app/src/main/java/org/locationtech/jtstest/function/
H A DLineSegmentFunctions.java44 return g1.getFactory().createPoint(ri.getIntersection(0)); in segmentIntersection()
49 ri.getIntersection(0), in segmentIntersection()
50 ri.getIntersection(1) in segmentIntersection()
/dports/math/drgeo/drgeo-1.1.0/geo/
H A Ddrgeo_line.cc388 line::getIntersection (geometricObject & c, drgeoPoint & p, gint k) in getIntersection() function in line
397 return c.getIntersection (*((geometricObject *) this), p, 0); in getIntersection()
400 return c.getIntersection (*((geometricObject *) this), p, k); in getIntersection()
403 return c.getIntersection (*((geometricObject *) this), p, k); in getIntersection()
406 return c.getIntersection (*((geometricObject *) this), p, k); in getIntersection()
H A Ddrgeo_halfLine.cc311 halfLine::getIntersection (geometricObject & c, drgeoPoint & p, gint k) in getIntersection() function in halfLine
325 return c.getIntersection (*((geometricObject *) this), p, 0); in getIntersection()
328 return c.getIntersection (*((geometricObject *) this), p, k); in getIntersection()
331 return c.getIntersection (*((geometricObject *) this), p, k); in getIntersection()
/dports/games/flightgear-data/fgdata/Aircraft/Instruments-3d/FG1000/Nasal/MFDPages/IntersectionInfo/
H A DIntersectionInfoController.nas61 me.getIntersection(id);
82 getIntersection : func(id) {
131 me.getIntersection(value);
142 if (me._page.dataEntry.getValue() != "") me.getIntersection(me._page.dataEntry.getValue());
/dports/math/jts/jts-jts-1.18.1/modules/core/src/main/java/org/locationtech/jts/noding/
H A DSegmentIntersectionDetector.java116 public Coordinate getIntersection() in getIntersection() method in SegmentIntersectionDetector
179 intPt = li.getIntersection(0); in processIntersections()
/dports/graphics/cegui/cegui-0.8.7/cegui/src/falagard/
H A DFrameComponent.cpp304 finalRect = destRect.getIntersection(finalRect); in render_impl()
336 finalRect = destRect.getIntersection(finalRect); in render_impl()
367 finalRect = destRect.getIntersection(finalRect); in render_impl()
398 finalRect = destRect.getIntersection(finalRect); in render_impl()
428 finalRect = destRect.getIntersection(finalRect); in render_impl()
459 finalRect = destRect.getIntersection (finalRect); in render_impl()
490 finalRect = destRect.getIntersection(finalRect); in render_impl()
521 finalRect = destRect.getIntersection (finalRect); in render_impl()
668 finalClipper = clipper ? clipper->getIntersection(destRect) : destRect; in renderImage()
H A DComponentBase.cpp56 const Rectf final_clip_rect(dest_rect.getIntersection(*clipper)); in render()
73 const Rectf final_clip_rect(dest_rect.getIntersection(*clipper)); in render()
/dports/graphics/cegui/cegui-0.8.7/cegui/src/widgets/
H A DTitlebar.cpp155 constrainArea = screen.getIntersection(d_oldCursorArea); in onMouseButtonDown()
159 … constrainArea = getParent()->getParent()->getInnerRectClipper().getIntersection(d_oldCursorArea); in onMouseButtonDown()
/dports/science/cdk/cdk-cdk-2.3/legacy/src/main/java/org/openscience/cdk/smsd/ring/
H A DPathEdge.java92 IAtom intersection = getIntersection(other.atoms); in splice()
132 private IAtom getIntersection(List<IAtom> others) { in getIntersection() method in PathEdge
/dports/math/dune-grid-glue/dune-grid-glue-17bd9898df80a52e2c316fc053119d190c149a2e/dune/grid-glue/adapter/
H A Dgridgluecommunicate.hh199 Intersection ris(commInfo.gridglue->getIntersection(i)); in gather()
229 Intersection ris(commInfo.gridglue->getIntersection(i)); in scatter()
322 Intersection ris(commInfo.gridglue->getIntersection(i)); in getSize()
/dports/science/agrum/aGrUM-29e540d8169268e8fe5d5c69bc4b2b1290f12320/src/testunits/module_BASE/
H A DSetTestSuite.h317 inter = getIntersection(fakeInter); in testIntersectionOperator()
321 inter = getIntersection(fakeInter); in testIntersectionOperator()
325 inter = getIntersection(fakeInter); in testIntersectionOperator()
329 inter = getIntersection(fakeInter); in testIntersectionOperator()
333 inter = getIntersection(fakeInter); in testIntersectionOperator()
337 inter = getIntersection(fakeInter); in testIntersectionOperator()
341 inter = getIntersection(fakeInter); in testIntersectionOperator()
616 gum::Set< int > getIntersection(gum::Set< int >& set) { in getIntersection() function
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/sun/java2d/pipe/
H A DRegionOps.java322 RectListImpl aIb = a.getIntersection(b); numops++; in testIntersection()
323 RectListImpl bIa = b.getIntersection(a); numops++; in testIntersection()
378 public abstract RectListImpl getIntersection(RectListImpl rli); in getIntersection() method in RegionOps.RectListImpl
416 public RectListImpl getIntersection(RectListImpl rli) { in getIntersection() method in RegionOps.AreaImpl
488 public RectListImpl getIntersection(RectListImpl rli) { in getIntersection() method in RegionOps.RegionImpl
490 r2 = theRegion.getIntersection(r2); in getIntersection()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/sun/java2d/pipe/
H A DRegionOps.java322 RectListImpl aIb = a.getIntersection(b); numops++; in testIntersection()
323 RectListImpl bIa = b.getIntersection(a); numops++; in testIntersection()
378 public abstract RectListImpl getIntersection(RectListImpl rli); in getIntersection() method in RegionOps.RectListImpl
416 public RectListImpl getIntersection(RectListImpl rli) { in getIntersection() method in RegionOps.AreaImpl
488 public RectListImpl getIntersection(RectListImpl rli) { in getIntersection() method in RegionOps.RegionImpl
490 r2 = theRegion.getIntersection(r2); in getIntersection()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/sun/java2d/pipe/
H A DRegionOps.java322 RectListImpl aIb = a.getIntersection(b); numops++; in testIntersection()
323 RectListImpl bIa = b.getIntersection(a); numops++; in testIntersection()
378 public abstract RectListImpl getIntersection(RectListImpl rli); in getIntersection() method in RegionOps.RectListImpl
416 public RectListImpl getIntersection(RectListImpl rli) { in getIntersection() method in RegionOps.AreaImpl
488 public RectListImpl getIntersection(RectListImpl rli) { in getIntersection() method in RegionOps.RegionImpl
490 r2 = theRegion.getIntersection(r2); in getIntersection()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/sun/java2d/pipe/
H A DRegionOps.java322 RectListImpl aIb = a.getIntersection(b); numops++; in testIntersection()
323 RectListImpl bIa = b.getIntersection(a); numops++; in testIntersection()
378 public abstract RectListImpl getIntersection(RectListImpl rli); in getIntersection() method in RegionOps.RectListImpl
416 public RectListImpl getIntersection(RectListImpl rli) { in getIntersection() method in RegionOps.AreaImpl
488 public RectListImpl getIntersection(RectListImpl rli) { in getIntersection() method in RegionOps.RegionImpl
490 r2 = theRegion.getIntersection(r2); in getIntersection()

12345678910>>...13