Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
6answers
895 views

Bounding this program to determine the sum of reciprocal integers not containing zero

Let A denote the set of positive integers whose decimal representation does not contain the digit 0. The sum of the reciprocals of the elements in A is known to be 23.10345. Ex. ...
4
votes
2answers
1k views

Bounding ellipse

I have been given an assignement for a graphics module, one part of which is to calculate the minimum bounding ellipse of a set of arbitrary shapes. The ellipse doesn't have to be axis aligned. This ...
3
votes
3answers
4k views

how do I find the angle of rotation of the major axis of an ellipse given its bounding rectangle?

I have an ellipse centered at (0,0) and the bounding rectangle is x = [-5,5], y = [-6,6]. The ellipse intersects the rectangle at (-5,3),(-2.5,6),(2.5,-6),and (5,-3) I know nothing else about the ...
2
votes
1answer
56 views

Bounding boxes and models

I've made a basic .obj mesh loader that can load models and texture them in OpenGL. However, my question is what would be the best solution to then put bounding boxes on them. For example if I a load ...
2
votes
1answer
104 views

How to construct R Tree(STR Method) with rectangle bounding boxes?

How to construct R Tree based on Sort Tile Recursion Method of rectangle bounding boxes along with searching alone? Totally 12 bounding boxes with (minx, miny) & (maxx , maxy) I don't need to ...
2
votes
2answers
222 views

Is there a “bounding box” function (slice with non-zero values) for a ndarray in NumPy?

I am dealing with arrays created via numpy.array(), and I need to draw points on a canvas simulating an image. Since there is a lot of zero values around the central part of the array which contains ...
1
vote
0answers
69 views

Bounding box boolean subtraction?

What's the best or an efficient method for subtracting a bounding box from another bounding box (I.e. Creating n bounding boxes from a bounding box Boolean subtraction)? Ideally the resulting ...
1
vote
3answers
1k views

PHP Library: Calculate a bounding box for a given lat/lng location

I'm looking for a PHP Library / PHP Script that allows me to calculate an accurate bounding box for a given center point (lat/lon). Using an ellipsoid formula (f.ex. WGS84) would be great. I know, ...
0
votes
3answers
50 views

Find size of inner rect of a circle

I have a circle, say radius of 10, and I can find the outer bounding rect easy enough since its width and height is equal to the radius, but what I need is the inner bounding rect. Does anyone know ...
0
votes
0answers
53 views

How to get getBBox in a jQuerySVG project?

I have a variable defined as : var myVariable = svg.path(g,"A path here"); where g is a group (var g = svg.group();) How to get its bounding box via jQuerySVG ? I tried myVariable.getBBox(), ...
0
votes
1answer
114 views

Collision always detected, even when they're shouldn't be a collision

OK I'm definitely overlooking something painfully obvious but here's the problem: In my project I'm using two types of collision: sphere to sphere and box to box. Both are experiencing the same ...
0
votes
1answer
258 views

c++ allegro program bounding box collision is off

I am working on a menu for a game in c++ using the allegro graphics library. I am using code blocks and mingw. There are many buttons that use a modified bounding box that returns true if the mouse is ...
0
votes
2answers
210 views

how to get buffer zone around a uibezierpath

i have some uibezierpaths. as paths, they don't really have thickness. but, I am hoping to find a way to define an area around a path like the grayish areas around the lines in this picture ...
0
votes
2answers
345 views

QGraphicsItem -> get the correct bounding rectangle

I am trying the hello triangle example of OpenGL ES 2.0. I am using Qt, so I created a QGraphicsScene and added that code as a QGraphicsItem. It draws correctly, but I cannot get the bounding ...
0
votes
0answers
139 views

What's wrong with my Geo bounding box and SQL select query?

(Please see update with screenshot at the end)I need to query a table of hotels within 20KM/50KM of current location, and I want to use a bounding box to filter out all hotels not within the range, so ...
0
votes
2answers
409 views

Java 3D - bounding sphere

Uhm, what exactly does the bounding sphere in Java 3D do?
0
votes
2answers
419 views

QGraphicsRectItem::boundingRect() returns a QRectF that is 1px bigger than it should be

Let's say I have a QGrahicsRectItem item with item.width=10 and item.height=10. Its top left corner is at (0,0). item.BoundingRect() should return a RectF(0,0,9,9) but instead it returns a ...
0
votes
2answers
385 views

Twitter stream bounding box - how to cover London/UK

I'm attempting to stream Tweets from the UK as a whole, using Twitters stream API, however I'm having trouble with my bounding box. The LAT/LON pairs I'm using to define a bounding box of the whoe ...