Questions tagged [boundary]
481 questions
0
votes
1 answer
MIME php mail only showing text/plain version
I try to send a multipart/alternative email so i send a text version and a html version in a single mail. My problem is that the mail only contains this plain text:
The mail is here:
Multipart Message coming…

user1459650
- 3
- 2
0
votes
1 answer
Regular Expression regexp - Character Range, word boundary, assertions
A very quick question.
Here is the expression:
/[a-zA-Z]{1,}/
I want this expression to match only those letters. But it also seems to match "=" (equals sign). Am I doing something wrong?
For…

VolosBlur
- 4,363
- 3
- 14
- 9
0
votes
1 answer
Fixing boundary issue in C
I'm writing an image smoothing program that uses mean filters, but I can't seem to fix the last couple boundary issues. I'm using integers instead of an image. I've for the 1 left hand corners return the proper values, along with the middle…

DatDudeJC
- 43
- 1
- 2
- 9
0
votes
2 answers
why do the circles disappear from the screen?
Processing code as below, one quick question: why do the circles disappear from the screen when my mouse is playing with them? i've already add the boundary check however it does not seem to work. why???
int maxCircle = 200;
float…

kikkpunk
- 1,287
- 5
- 22
- 34
0
votes
2 answers
Sentence with specific size AND boundaries detection
This is my problem: I have a big string (near 8000 chars) and i want 2 things:
Detect sentence boundaries like '.' AND
Have sentences that have no more than 600 chars
I know that in some cases it will not be possible to have both. In this case,…

user1510795
- 1
- 1
0
votes
2 answers
BCED pattern - entity loader method
I have to attend a "software engineering" exam this Friday, but there's a little thing I can't understand, and my teacher is unavailable for explaining.
I must make a project based on the Boundary-Controller-Entity (BCE) pattern, with persistence…

Carmine Ingaldi
- 856
- 9
- 23
0
votes
2 answers
Boundary for draggable image ios
I'm trying to create a draggable image, but i'm trying to confine it's dragging to within a small square rather than the full screen. Could someone tell me where i'm going wrong?. I've placed the code that I have so far below:…

mhorgan
- 886
- 2
- 11
- 32
0
votes
1 answer
Find boundary of flex graphic object?
I have a set of shapes created using flex graphic object. I need to draw line connecting them, for which i need to find the boundary of these shapes. I want only the content area, not the transparent part. is there any solution for this?

Saju
- 402
- 3
- 11
- 30
0
votes
1 answer
how to stop a movieclip on the Y-axis with buttons?
I have two buttons that moves a movieclip up/down the Y-axis. How do I get the movieclip to stop at a certain height, and still be able to move it in the opposite direction?
I need this to work like this:
When you press the down-button, the…

Cat
- 29
- 6
0
votes
1 answer
How to check if everything needed is installed for Open street map server?
I am configuring Open Street Maps by following these steps: http://switch2osm.org/serving-tiles/building-a-tile-server-from-packages/
I am using the same packages, but for Debian, and the defaults give me the slippymap site example. The map loads…

kode
- 1,058
- 1
- 14
- 27
0
votes
3 answers
How to divide total by given factors and with lower boundary?
I'd like to ask:
I've got any positive integer number, let's say: 10
Then I got random integer numbers (random count of them too), let's say: 5, 7, 8
I want to calculate floating-point number such as: 5*x + 7*x + 8*x = 10
I got that a this moment,…

SmartK8
- 2,616
- 1
- 29
- 37
0
votes
1 answer
Android: UI: using bounderies
I have been reading and applying the android design from this page:
http://developer.android.com/design/index.html
I want to use the following 'animation' (or whatever it…

Tobrun
- 18,291
- 10
- 66
- 81
-1
votes
1 answer
Why in this regex pattern left \b performs as left \B?
Why in this case left \b performs as left \B?
\b\$[0-9]+(\.[0-9][0-9])?\b
This pattern should omit phrases such a$99.99 because of performance of left \b.
\b detects phrases which have not been bounded with letters, digits or underscore. But not!…

R.Z
- 3
- 1
-1
votes
1 answer
How to calculate the distance from a point to the boundary of a six-dimensional point cloud?
Suppose I have a six-dimensional point cloud D, it has only one cluster and no noise, and its density is uneven.
Given an examination point C, how to calculate the distance from C to the boundary of D?
This is easy when C is outside the point cloud…

Lucy Don
- 1
-1
votes
1 answer
count number of points in table A that exist in a square area in table B - SQL + QGIS
I have a table A that has scattered points existing in space. Table B has a number of squared perimeters. I want an SQL code that will write a table of the number of points in table A that fall in the squared perimeters of table B.
I am writing this…

Raboush2
- 39
- 5