In user interfaces and graphics, *bounds* refers to the size and location of a window or view.

learn more… | top users | synonyms

0
votes
0answers
20 views

Octave - find number in vector (out of bounds)

I have vector named STEV (it contains 12 numbers) then I find the maximum value in this vector : maxx=max(STEV) What I want to do next is to find the index of this maximum value (maxx) in vector ...
0
votes
1answer
24 views

iOS Bounds of UIView in ViewDidLoad

I wanted to use the bounds of a UIView to create a UILabel and add it to that UIView inside the viewDidLoad method, however, I have found that the bounds of UIView is still null inside viewDidLoad. ...
1
vote
1answer
56 views

UIImageView finding how much is out of bounds

I'm scaling an image within my UIImageView using : UIViewContentModeScaleAspectFill The image scales nicely but my issue is the ImageView sits within a UIScrollView, I've set the origin to 0,0. This ...
0
votes
3answers
50 views

How to iterate over an array and remove elements in JavaScript

I have an array of elements and need to remove certain ones from it. The problem is that JavaScript doesn't seem to have a for each loop and if I use a for loop I run into problems with it basically ...
0
votes
1answer
46 views

Quadtree and size of region in constructor

I was reading nice tutorial about Quadtree from this site and now is my question. When I create quadtree I have to pass in constructor bounds of the screen, well What if my map's size 10000 x ...
0
votes
2answers
20 views

Get dimensions of UIView Class for CGRects?

I am currently working on an app that draws a series of rectangles (CGRect) on a view and sizes them based on the size of the UIView. This code is contain in a class file that inherits UIView ...
0
votes
0answers
69 views

d3 Bounded Force layout with Zoom and Pan

I am working on a bounded force layout with a zoom and pan (D3.js). The main problem is that I'm not able to adequately customize the zoom behavior. My graph contains several movable elements, that a ...
0
votes
1answer
52 views

GLKView nested subview frame size and bounds size incorrect

Here is an example "GLKView Subview" app I wrote, based on the OpenGL Game sample project in Xcode 4.5. It creates a GLKView subview with its delegate set to the File Owner's GLKViewController, so ...
-1
votes
0answers
36 views

How to stop entities/sprites from going through each other

In the game that I am making all the zombies is walkint through eaxh other so eventually if you don't shot any of them it will just look like one zombie when it accually is around 50. Is there any ...
1
vote
0answers
39 views

How to lookup screen-bounded tile indices in a rotated tilemap?

Normally, an Axis-aligned (rotation = 0) tilemap is easy to iterate through the visible tiles on the screen. But how do you "cull" or filter the tile indexes when the entire tilemap is rotated? ...
1
vote
1answer
40 views

View Controller's View's properties

I'm working on the interface for a specialized calculator and I have the following setup in IB: I used the "Container View" from IB and set it equal to my custom view controller, ...
0
votes
2answers
32 views

How to get full screen bounds with correct orientation?

guys. I have such problem: I need to use full screen for my view. So I use [_activityIndicator setFrame:[[UIScreen mainScreen] applicationFrame]]; It's work perfect, but only in portrait view. ...
0
votes
0answers
39 views

Google maps API v3 extend bounds error on internet explorer

I'm having a strange issue with Google map Api v3 and internet explorer. I'm using the pretty common code: console.log('myLatLng->'+myLatLng); bounds.extend(myLatLng); ...
0
votes
1answer
30 views

ArrayIndexOutOfBoundsException : 6

public boolean horizontal(Populate a, int[][][] ar, int row, int col, int dep) { ar = new int[6][6][6]; a.pop(ar); for(dep=0;dep<6;dep++) { ...
-2
votes
1answer
27 views

“variable”.Bounds.IntersectsWith

How do I make the do while loop in my code work with z being a variable? Function make(ByVal z As Object) z.Location = zloc z.Hide() zloc = New Point(RandomNumber(playspace.Width), ...
1
vote
1answer
85 views

How to set the extent of an OpenLayers Map?

I want to pan and zoom an OpenLayers.Map to a given OpenLayer.Bounds. What is a quick way to do this action? I want to see everything that is in the bounds on the map. Cheers!
1
vote
3answers
132 views

Java Arry Index Out of Bound Exception

I have been working on this basic java program when I need to store 5 user entered values into an array, send it to a method, and find and display the lowest value. The program is simple enough, and ...
0
votes
3answers
134 views

Java Swing JLabel Text longer than bounds

I have a problem with Java Swing JLabel. The text i want to display on the JLabel exceeds the bounds of the JLabel. I want to display it via a Marqueeeffect. I already implemented the effect but when ...
0
votes
2answers
38 views

Set the button frame fit to the view

I want to display a UIButton in the header section of a UITableView. This is the code I have tried UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(0,0, 285, 44)]; UIButton ...
2
votes
3answers
53 views

List out of bounds due to loop

im trying to make a function that looks through a list and deletes all odd numbers. I have a problem where my loop is going out of bounds and im not sure how to fix it, can anyone help? Thanks def ...
3
votes
2answers
85 views

How do I position UIView in superview?

Im adding a UIImageView with a UIImage which I wish to appear in the center top of the main UIView. I will be using a UIPageControl to swipe that view off to the left and bring in the new one from ...
0
votes
1answer
80 views

How do I set UIImage bounds?

I am having some trouble setting the correct location of the image for a UIImageView, which I am adding as a subview to a UIButton. I start by creating the button and adding some sublayers: UIButton ...
2
votes
1answer
85 views

Why does a landscape view report it's center as if it were portrait?

I have a landscape only app. The views are designed in IB as landscape (568x320). Yet when I do this: NSLog(@"view center: %@", NSStringFromCGPoint(self.view.center)); I get this: view center: ...
0
votes
1answer
39 views

What is the difference between control's bounds and setting X,Y,Width,Height of a control?

So, lets say I have a panel on a winform and I want it displayed at particular point and should have a specific width and height on the winform. Plus, I want to do it during run-time. So, what is the ...
-1
votes
3answers
79 views

Index was outside the bounds of the array in C# Can any let me Know where i made MISTAKE

In the following code i have errors as Index was outside the bounds of the array. Even this code done copied cells into column correctly .. does any one help me on this string[] array = { "F3", ...
0
votes
1answer
98 views

Polygon inside polygon in libgdx and box2d

I'm new in libgdx and box2d and I would like to know if there's an easy way to put a polygon randomly inside the bounds of another polygon. EDIT I want something like this: Where the black ...
2
votes
1answer
113 views

Java Generic bound (constraint) for Enum

I'm trying to bound (constrain) a Java generic type variable to be an enum (any enum) and failing. Might you be able to tell me why? import org.supercsv.cellprocessor.ift.CellProcessor; import ...
0
votes
2answers
79 views

Does VS 2010 do bounds check on malloc or new memory allocation?

Using VS 2010. Have already analyzed for memory leakage. Now I want to know if during execution the compiled code is doing bounds checking. I am reasonably certain that this happens for vectors and ...
0
votes
1answer
475 views

VB.NET | How to get Windows Form WorkingArea, not Desktop WorkingArea

I wanted an effect of fading a panel control and the controls / object inside it. I found some containers with opacity property it only changes the background color's opacity. So I came up my own ...
1
vote
5answers
72 views

Java splitting string ArrayIndexOutOfBounds

I'm getting java.ArrayIndexOutOfBounds... I don't know why. private final static String TEST_STRING = "My awesome string !^:_TEEEEEEEEEEEEEST"; public void createPartControl(Composite ...
0
votes
1answer
544 views

Android jelly bean text view with custom font ,not fitting

Just for the info ,I have gone all the resources that tells how to fit text within bounds Auto Scale TextView Text to Fit within Bounds How to scale/resize text to fit a TextView? How to adjust text ...
1
vote
0answers
225 views

android maps v2 set bounds error

I'm trying to make my map to zoom to given Bounds.But i get an error. Here's my code @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
0
votes
0answers
76 views

UIScrollView bounds won't change

I have a subclass of a UIScrollView called pagingView. I want to animate it so that when the device is rotated (it is only specific for this viewController and hence landscape mode is turned off in ...
2
votes
2answers
112 views

Pane not resizing to its transformed dimensions

I am working on a project where i want to display images with overlay. My Idea was to create an AncorPane, put an ImageView in its background and then put several shapes above that. This does work. ...
0
votes
2answers
139 views

Bounds and whole numbers

I'm going through Bjarne Stroustrup's "Programming Principles and Practice Using C++". I am on chapter 4, exercise 4. The excercise is as follows: Write a program to play a numbers guessing game. ...
0
votes
3answers
157 views

Java IndexOutOfBoundsException

I created a little android game but I am getting weird error. Here is log: 12-31 16:10:22.407: E/AndroidRuntime(12824): FATAL EXCEPTION: Thread-1461 12-31 16:10:22.407: ...
4
votes
2answers
145 views

C++: Vector bounds

I am coming from Java and learning C++ in the moment. I am using Stroustrup's Progamming Principles and Practice of Using C++. I am working with vectors now. On page 117 he says that accessing a ...
0
votes
2answers
117 views

Scala type bounds behaviour (method vs class)

Probably an easy one for Scala gurus. I'm reading up on type bound constraints and wondering if I'm missing something, as I'm seeing a slightly unexpected behaviour. Let's say we have three types ...
0
votes
0answers
125 views

Get Markers WIthout Reloading - Google Maps V3

I've developed an application using google maps v3, .NET, and SQL Server. After submitting a search box a map will appear based on the address you typed in. Now this is where the first problem ...
0
votes
1answer
427 views

d3.js geoJSON and bounds

I have successfully loaded geoJSON files loaded the feature collection into a d3.geo.path() The problem with my current implementation is that it starts off the scaling such that the path is a ...
2
votes
3answers
121 views

datastructure that holds closures, parametrically in scala

I am implementing a GUI event system in Scala. I have something like: case class EventObject case class KeyEventObject extends EventObject case class MouseEventObject extends EventObject I would ...
1
vote
0answers
105 views

How to get loop bounds in LLVM?

everybody. Now I want to get the loop bounds by using LLVM API.Here is the part of code as following.I don't know whether it is right to get the bounds.So, is there any other situation that I havn't ...
0
votes
1answer
38 views

How do I check to see if a whole component is on screen?

I'm working with a 3rd party plugin which includes a customized popup. This popup is added to a tab pane and when it appears, if to close to the JFrame border, only part of it will appear and the rest ...
1
vote
2answers
199 views

AS3 MovieClip getRealBounds

As you well know in as3 we have a getBounds() method which returns the exact dimension and coordinates of the movieclip in the DisplayObject container we want. Fact is that these data are calculated ...
1
vote
4answers
178 views

While loop with hasNext method as condition keeps throwing ArrayOutOfBounds Exception? (Java)

I'm working on a username/password login using GUI. I'm using a while loop with a hasNext() extension to the file name as the condition to store the information that's in the file into an array so ...
1
vote
1answer
147 views

Incorrect UIView bounds/drawing in the Simulator

I've created a single-view test app and added a UIButton and UIView to the UIViewController in the main storyboard. I have resized both the button an view to have the same size. In my VC's ...
0
votes
1answer
112 views

Determining if a point in a view is within a subviews bounds

Suppose I have a UIView parentView and a subview childView that is rotated at some unknown angle relative to parentView. What is the most efficient way to determine if a point within parentView (I ...
0
votes
1answer
292 views

bounds google maps

My Google maps API map zooms put to show all the markers added after a google places search. On a mobile map this can take a bit to load and as this app for cyclists I prefer to only show the results ...
0
votes
0answers
14 views

What is the physical adress when the logical adress is larger then the bounds?

Im having trouble finding something in my memory. Usually, I wouldn't ask something like this here, but a google search turned up nothing. I'm trying to find a physical adress for a program, but the ...
0
votes
1answer
128 views

xcode drawrect - UIView bounds not reflecting rotation in simulator

I'm using xcode 4.5.2 to learn to develop in iOS6. I have this code in my drawRect... - (void)drawRect:(CGRect)rect { CGContextRef context = UIGraphicsGetCurrentContext(); CGPoint midPoint; ...

1 2 3 4 5