Intersection is term that relates to descriptive geomethry and functions. Intersections are points which are included in multiple objects. They are intersections of object they belong to.
2
votes
1answer
32 views
finding the intersection where multiple 3D parametric equations meet
I have some 3D parametric equations that I plot in matlab/octave and would like to find out where they intersect how can I go about doing this. Please note this is just a simple example I plan on ...
-2
votes
0answers
37 views
Python draw circles and find intersecting points [closed]
I have a geometrical problem needs to be solved. I need draw circles at python and find the intersection points of two circles in terms of x,y.
DETAILS; I have a problem, similar to gsm triangulation ...
-1
votes
1answer
26 views
javaFX intersection bug
I have a problem in my app. I draw lines and points with the help of mouse and I need to detect wether I intersect the line or get the point. And with points it works well, but with lines it doesn't ...
1
vote
1answer
64 views
In Python, how can I get the intersection of two lists, preserving the order of the intersection?
I have a list of lists ("sublists") and I want to see if the same sequence of any unspecified length occurs in more than one sublist. To clarify, the order of items must be preserved - I do not want ...
1
vote
3answers
32 views
Union and Intersection of data
I have three tables:
user
id | name
------------------
1 | Foo
2 | Bar
3 | Baz
group_type
id | name
------------------
1 | Group 1
2 | Group 2
3 | Group 3
4 | Group 4
5 | Group 5
...
0
votes
0answers
21 views
Creating a new MKPolygon from two intersecting polygons
I know that there is exactly one specific question that talks about this but its a bit old and I wanted to get a little more technical about it if possible.
First of all take a look at this ...
-1
votes
2answers
70 views
How to calculate the point of intersection between two lines
I am attempting to calculate the point of intersection between lines for a Optical Flow algorithm using a Hough Transform. However, I am not getting the points that I should be when I use my algorithm ...
0
votes
1answer
40 views
Per-vertex reflection and intersection calculation, OpenCL vs GLSL
I have to calculate the visibility field of a mirror on a plane (i.e: the floor).
The mirror surface is composed of several triangles (up to fewer thousands).
Each vertex define a mirror point, ...
0
votes
0answers
12 views
The mesh contains self intersecting faces after mesh smoothing
all
I obtain an triangle mesh after the reconstruction process. To remove the noise, I try to smooth the mesh.
Some triangles appear dark in MeshLab after the smoothing operation. The smoothing ...
2
votes
2answers
46 views
How to speed up array intersection in Java?
Arrays below are sorted without duplicates (contain unique positive integers) of small size (less than 5000) and intersection (see below) is called billion of times so any micro-optimization does ...
0
votes
1answer
37 views
Find intersection by 2 vectors on the globe
I am trying to calculate intersection GPS coordinate by 2 vectors.
Vector#1 is created by (longitude#1, latitude#1) and (longitude#2, latitude#2).
Vector#2 is created by (longitude#3, latitude#3) and ...
0
votes
0answers
12 views
How to intersect 2 lines with Clipper Library
I´m trying to intersect 2 lines with the Clipper Library
Clipper Library
In C++ Language. The problem is that i cant get a valid solution, no points are calculated when intersection. I´d like to ...
0
votes
1answer
53 views
Can the intersection of int[] array and BitSet be faster?
In Java, I have a BitSet bigger in size than an array (100000 > 2000). Array contains positive integers from range [1; 100000]. I want to intersect given array and bitset. Obviously intersection ...
1
vote
0answers
29 views
Unmatched intersected line coordinates in 2D array coordinate
In the link here I described about this problem as a primary description. That will help me to explain the description of below mentioned problem. Here, I have 2D array with some values , let's say, ...
-1
votes
1answer
42 views
c# rectangle intersect wrong result point
i have 2 rectangles, i want to know left top point of intersect + width & height
//image
Rectangle rectangle1 = new Rectangle(121, 74, 614, 240);
//crop area
Rectangle rectangle2 = new ...
9
votes
1answer
248 views
Finding the intersection of two 3D polygons
a.k.a. Polygon clipping algorithm in 3D
a.k.a. Finding the collision manifold between 2 colliding polygons
Most algorithms for polygon clipping are described in detail for 2D and described as being ...
1
vote
3answers
64 views
Common elements of vectors with multiple elements in r
How to efficiently find common elements of two vectors with duplicate elements?
Example:
v1 <- c(1, 1, 2, 3, 3, 4)
v2 <- c(1, 1, 1, 3, 4, 5)
commonElements <- c(1, 1, 3, 4)
intersect ...
0
votes
1answer
46 views
collision test for 2d polygon physics
I want to do some 2D rigid body (polygon) physics and I've found an elaborate equation to calculate the collision response. But, before that I would need a good way of finding 'input' to that ...
0
votes
1answer
106 views
Distance for each intersected points of a line in increased order in 2D coordinate
I am calculating the distance between A(x0,y0) and B(x1,y1) points in a 2D (x,y).
I have the following code which represents intersected points of each cell in the given two boundary points, A(x0,y0) ...
0
votes
0answers
34 views
Check for intersection between line segments in path [duplicate]
I have tested several ways how to detect if two lines within a path intersects with each other, but none of them have worked for me. And this last code that I show below, doesn't work either because ...
1
vote
1answer
42 views
intersection of voronoi diagram with a line
Is there a computationally efficient way to determine the points of intersection of a straight line with all the edges of a given Voronoi tessellation in a rectangular plane area?
Thanks
0
votes
1answer
77 views
Calculation of intersections between line segments
There's a lot of questions about intersections between line segments here at stackowerflow and here is one more! Sorry, but I need help to understand how to calculate intersections. I have read ...
0
votes
1answer
57 views
R, Igraph. graph.intersection--How do I keep vertex/edge/graph attributes when finding the intersection of two graphs?
I am finding the intersection of two graph objects, and I would like the resulting graph to have vertex ids and/or names.
Here is basically what I have.
My two graphs, g1 and g2, are undirected ...
1
vote
1answer
74 views
WPF how to check Geometry intersections when transformations is applied?
I have few canvas objects with random size and applied RenderTransform angle.
Inside canvas i have geometry object (lines).
I am using binding for width and height to forse path to fill parent canvas ...
0
votes
1answer
38 views
Get vertex-coordinates of an image with the help of canvas imageData
I need to get the position of each edge for some sprites and have no idea how to accomplish this. Here's an example image of what I mean:
I tried something with canvas and getImageData but not ...
0
votes
1answer
32 views
getting last double before two sprites collide
I need to make it so that when sprites that I have created collide with each (I have already figured out the collision) other they teleport to the last x and y position they were on before they ...
1
vote
2answers
54 views
How to combine python lists, with shared items, into new lists
I am new to python and I hit a roadblock. I have a python list that contains a single list on each line. Basically, I would like to combine lists that share values among lists. For example,
below ...
0
votes
1answer
26 views
2D Point in triangle test implemented on Android
I want to determine if a 2D point is inside a triangle using pure java on the Android platform. I reserve a special bonus for using the same representation for 2D points that is used in Android for ...
1
vote
3answers
62 views
python intersection initial state standard practice
Example:
common_set = set()
for count, group_name in enumerate(dict1):
complete_dict[group_name] = dict2 # grabs a json file = group_name.json
if count > 0:
...
0
votes
1answer
38 views
Raytracer won't render more than one instance of an object
I'm writing a raytracer in C++ and I'm having quite a bit of trouble understanding why my output images don't contain all of the objects that should be there. Namely, I'm working with spheres and ...
0
votes
1answer
53 views
Intersection of rectangle java [closed]
My teacher wants me to find the intersection between 2 rectangles I create. please help me figure out why this doesn't run. the error i get says cannot find variable bottom.
public class Rectangle {
...
0
votes
0answers
32 views
Falling off if intersecting right, but not left - Java
I have a little question, I am currently testing out my coding skills, I want to see if I can make a game. But I have ran into this problem which I have no idea of how to fix it.
My problem is:
I have ...
0
votes
0answers
55 views
Multiple block intersection Java
Okay, so basicly I am making a 2D game, I am using tiles to place my blocks, it's from the side, so mario-like.
Everything is pretty much going ok, except for the detection of intersecting blocks, I ...
-1
votes
0answers
72 views
Intersection between more than two 2d array
Suppose that we have three 2d arrays such as:
The first one is:
11 23 33
12 21 34
12 23 31
13 24 32
The second one is:
12 21 34
11 23 33
12 24 31
13 24 32
and the third one is:
12 24 ...
2
votes
2answers
103 views
Get all the views intersecting by a line IOS
I have a grid of small (30X30 size) UIViews & I am drawing a line over them by tapping two points on the screen as startpoint & endpoint by using the code below:
CGContextRef context = ...
0
votes
2answers
105 views
How to detect Line segment intersection with Cylinder?
Say we have a 3d space, Line segment defined by its start and end points (A {Ax, Ay, Az}, B {Bx, By, Bz}) and cylinder defined by its center position C {Cx, Cy, Cz}, radius R and height H. How to get ...
1
vote
0answers
35 views
Randomly orientated lines drawn off a random point in python
I'm trying to create python program that has several vertical lines which act as boundaries where randomly generated points or "dots" (as referred to in the code) which draw a straight line at a ...
0
votes
0answers
15 views
Finding perimeter of outline at the interfection of a 3D mesh and a plane
Background:
I have a set of outlines of a 3D particle, made from SEM micrographs. The outlines were digitized and appropriately transformed to give a 3D point cloud representing the particle surface ...
0
votes
0answers
38 views
Sqlite and COUNT of INTERSECT
I have a user-table (id) and a brand-table and between them a brandperuser-table to have a brand-per-user relation. I tried this query before:
select count(*), user.*
from user join brandperuser ...
0
votes
0answers
27 views
Using union and intersection method in a HashSet
I am having trouble using my custom set,MySet, using the basic function of union and intersecting. The program compiles without error but just returns an empty set.
Anybody see where the problem is?
...
0
votes
1answer
70 views
Regex java. Why using intersection?
I have taken from this oracle tutorial on java regex, the following bit:
Intersections
To create a single character class matching only the characters common
to all of its nested classes, ...
0
votes
0answers
27 views
Marking a point with non integral coordinates in an image
I need to mark a point in an image.
The point's coordinates are not integral though.
I thought of drawing two intersecting segments which intersection point lies closer to the given point than the ...
2
votes
1answer
84 views
Intersecting rectangles with Python
Given two rectangles r1 and r2 I try to test if the two intersect.
Why don't the following two functions produce the same output?
Function 1:
def separate_helper(r1, r2):
r1_left, r1_top, ...
0
votes
0answers
46 views
Draw line at pan intersection
We are developing an iPad Application that basically allows a test person to draw a line on a scale with a pan on the screen. However the line sometimes does not seem to be drawn at the exact ...
1
vote
3answers
73 views
c# Intersection and Union not working correctly
I am using C# 4.0 in VS 2010 and trying to produce either an intersection or a union of n sets of objects.
The following works correctly:
IEnumerable<String> t1 = new List<string>() { ...
0
votes
1answer
27 views
Rectangle.Intersects(Rectangle)-Code
I think you know all the Rectangle.Intersects(Rectangle)-Method (returns boolean) in C# for example. Because I switched to plattform that doesn't has something like that, I try to make somwhink like ...
2
votes
2answers
98 views
Intersect more lists in Scheme
I am trying to intersect more lists in Scheme and I need a little help. The lists look like this:
The first two:
(((?x john) (?city new-york))
((?x mike) (?city chicago))
((?x mary) (?city ...
1
vote
0answers
22 views
Flash automatically finds curve intersection points. Can I use that code like I use curveTo in actionscript?
Or do I have to get down and dirty with the math and do the spline intersection math myself? I know the basic math for Quadratic b-splines.
I'm trying to make procedural randomly generated Celtic ...
0
votes
2answers
56 views
groovy/java check list intersections and combine elements
I have a list:
def a = [[14, 17, 12, 5], [14, 17, 12, 8, 3], [5, 2], [9]]
I need to check intersections and if two lists intersect, combine them.
The result should be as follows:
def b = [[14, ...
3
votes
2answers
101 views
Computing unique intersections of subsets
Given a set S = {si : {zj : z ∈ N} }, what is a time-efficient algorithm for computing the unique sets of intersections of the subsets of S?
For background, I am dealing with several versions of ...


