Tagged Questions

3
votes
3answers
68 views

Generate new polygons from a cut polygon (2D)

Hi, I'm stuck with this little problem and my algorithm to solve this doesn't hold for all cases. Does anybody has an idea how to solve this? Here's an example polygon: Forma …
0
votes
0answers
24 views

How can I turn a ray-plane intersection point into barycentric coordinates?

Hi, My problem: How can I take two 3D points and lock them to a single axis? For instance, so that both their z-axes are 0. What I'm trying to do: I have a set of 3D coordinate …
1
vote
2answers
134 views

Python: Fast extraction of intersections among all possible 2-combinations in a large number of lists

I have a dataset of ca. 9K lists of variable length (1 to 100K elements). I need to calculate the length of the intersection of all possible 2-list combinations in this dataset. No …
0
votes
4answers
55 views

Somewhat simple PHP array intersection question

Maybe I'm going insane, but I could have sworn that there was an PHP core function which took two arrays as arguments: $a = array('1', '3'); $b = array('1'=>'apples', '2'=>' …
0
votes
1answer
21 views

Connecting two WPF canvas elements by a line, without using anchors?

I have a canvas for diagramming, and want to join nodes in the diagram by directed lines (arrow ends). I tried the anchor approach, where lines only attach at specific points on th …
0
votes
3answers
94 views

Getting Union, Intersection, or Difference of Sets in C++

I have a couple questions about how to use C++ sets (std::set) Is there a way to get the union, intersection, or difference of two C++ sets? (It's pretty easy to write my own fun …
0
votes
1answer
34 views

C#: Range intersection when endpoints are null (infinity)

Ok, I have these intersection methods to work with ranges, and they work well as long as the range endpoints are not null: public static bool Intersects<T>(this Range<T&g …
2
votes
1answer
46 views

How can you easily test hash equality in Ruby when you only care about intersecting keys?

Say I have the following hashes: hash_x = { :a => 1, :b => 2 } hash_y = { :b => 2, :c => 3 } I need a chunk of logic that compares the two for equality only …
6
votes
8answers
447 views

How to intersect two polygons?

This seems non-trivial (it gets asked quite a lot on various forums), but I absolutely need this as a building block for a more complex algorithm. Input: 2 polygons (A and B) in 2 …
0
votes
2answers
104 views

How to calculate the 3D line segment of two rectangles?

I am looking for a fast way to calculate the line segment of two given rectangles in 3D. For instance, each 3D rectangle is defined by its four vertices. A solution in any reasona …
2
votes
2answers
287 views

Date Range Intersection Splitting in SQL

I have a SQL Server 2005 database which contains a table called Memberships. The table schema is: PersonID int, Surname nvarchar(30), FirstName nvarchar(30), Description nvar …
1
vote
5answers
36 views

Performant intersection and distinct element extraction?

I have a line like the following in my code: potentialCollisionsX.Intersect(potentialCollisionsY).Distinct().ToList(); Which, through profiling, i have determined that it is eat …
1
vote
2answers
59 views

How to return a Ruby array intersection with duplicate elements? (problem with bigrams in Dice Coefficient)

Hi there I'm trying to script Dice's Coefficient, but I'm having a bit of a problem with the array intersection. def bigram(string) string.downcase! bgarray=[] bgstring="%" …
1
vote
6answers
252 views

How to find the intersection point between a line and a rectangle?

I have a line that goes from points A to B; I have (x,y) of both points. I also have a rectangle that's centered at B and the width and height of the rectangle. I need to find the …
0
votes
2answers
81 views

MySQL - Is it possible to get ‘the difference’ of two query results?

I need to merge two query results as in union, but I want to only keep the difference between the two results... Is this possible? I'm basically selecting ALL resources in Query 1 …

1 2 3 4 next
15 30 50 per page