Tagged Questions
The rect tag has no wiki summary.
6
votes
1answer
1k views
4
votes
2answers
182 views
Can you control how an SVG's stroke-width is drawn?
Currently building a browser-based SVG application. Within this app, various shapes can be styled and positioned by the user, including rectangles.
When I apply a stroke-width to an SVG rect element ...
4
votes
3answers
158 views
What happened to Python's rect class?
On a Google Search, I found this article:
http://docs.python.org/release/1.4/lib/node201.html
Which showed examples of using the rect class, to perform union/intersections/checking if points are ...
4
votes
1answer
206 views
Graphics - How may I know if a line is visible onscreen taking account its width
I'm doing some core graphics, and I wonder how I may know if a line will have some parts of it visible on screen.
Let's take a line going from x-5, y3 to x2, y-7. If it's 1 pixel wide, nothing will ...
3
votes
1answer
143 views
(Python + pygame) collision detection with rects
import pygame
import random
red = [255,0,0]
green = [0,255,0]
blue = [0,0,255]
white = [255,255,255]
black = [0,0,0]
UP = [0,-1]
DOWN = [0,1]
LEFT = [-1,0]
RIGHT = [1,0]
NOTMOVING = [0,0]
#constants ...
3
votes
1answer
243 views
Delphi TextRect in Windows GDI
Is there an analogue of Delphi TextRect in GDI? I looked at DrawText, DrawTextEx, but I didn't find what I needed. I need to draw a percent text of a progress bar that is divided in two color parts, ...
3
votes
2answers
512 views
Determine the bounding rect of a WPF element relative to some parent
I consider this a pretty simple request, but I can't seem to find a conclusive answer in my searches. How can I determine the bounds of a particular visual element in my window, relative to some other ...
2
votes
1answer
292 views
svg: text inside rect
I want to display some text inside svg rect. Is it possible?
I tried
<svg xmlns="http://www.w3.org/2000/svg">
<g>
<rect x="0" y="0" width="100" height="100" fill="red" >
...
2
votes
6answers
345 views
How can I randomly place several non-colliding rects?
I'm working on some 2D games with Pygame. I need to place several objects at the same time randomly without them intersecting. I have tried a few obvious methods but they didn't work.
Obvious ...
2
votes
4answers
10k views
WPF Shape Rectangle Binding
I'm trying to make some kind of shape in wpf, which does resize itself to the content (which should be text). Unfortunately, the stretch property isn't the right thing, since I want only the width of ...
1
vote
1answer
53 views
Turn a rotated QRect into a QPolygon
I am trying to check collisions between a QPolygon and a QRect by turning the QRect into a QPolygon. However, the rectangle might also have a rotation that I have added, so I am wondering how I would ...
1
vote
1answer
349 views
arraylist android tutorial?
So I created a class named Sprite. I want to be able to control many of the Sprite class easily and don't know how. I heard about arraylist but I don't know how to use it. I googled it many times and ...
1
vote
1answer
74 views
Pyglet: equivalent of pygame.Rect
I am contemplating migrating from pygame to pyglet (main reason: move from Python to Pypy). However, I found no rectangle collision tools in the pyglet doc, while I use pygame.Rect quite often.
Do ...
1
vote
1answer
78 views
iOS. How to get an information about current map rect after each action with this map?
For example, I want to display the current x, y, width and height of the map rect, but I don't know what events should I handle. At least I want to catch the double click, zoom and dragging.
1
vote
0answers
259 views
Cocoa NSView animation
I have a view that is being shown within a larger view and will always remain in the same place. When some user input is provided, a second view will appear below the first one. want this to be a ...
1
vote
1answer
132 views
Cocoa NSRect OUTSIDE of an intersection
I have two rects that intersect. They have the same dimensions, the only difference is that one of them is lower down the screen than the other. I know there is a way to get the rect of their ...
1
vote
1answer
133 views
SVG rect border width
Is it possible to manipulate SVG rect's borders in the same way as it border-left-width, border-right-width and so on does?
1
vote
0answers
62 views
Divide String over 2 custom Rect shapes in onDraw();
I'm having issues dividing my String object over 2 Rect shapes.
Firstly i have no idea how to set canvas.drawtext to a specified region.
Like you would do if you use textview.
Secondly I can only ...
1
vote
0answers
89 views
zoomToRect: Transform rectangle in a portrait image to the same image scaled to fit in landsape
i have the following problem.
i have UIImageView which displays an image in fullscreen in portrait mode 768 x 1024.
At position 200,200 i have a CGRect displayes with width 100,100 ... ...
1
vote
0answers
222 views
How to control the image quality of image drawn by drawBitmap (Bitmap bitmap, Rect src, RectF dst, Paint paint)?
Is it possible to control the image quality of:
Canvas.drawBitmap (Bitmap bitmap, Rect src, RectF dst, Paint paint)
Here is code spinet of zoom in image:
// sx is screen width and sy is screen ...
1
vote
1answer
88 views
IronPython: Cannot import 'Rect'-struct from System.Windows
When I try to import the 'Rect'-struct from System.Windows, IronPython-Interpreter claims that it cannot import.
Since I am using the IronPython Tools for Visual Studio, i can also see that the ...
1
vote
1answer
3k views
iPhone - Drawing a simple linear gradient inside a rect that is inside a view
I'm reading the documentation about gradients and I'm a little bit lost.
I have a view, and inside that view, I just want to draw a simple black to gray linear gradient inside a rect (smaller than the ...
1
vote
1answer
491 views
WPF Rect Transform
I am trying to apply RotateTransform to a Rect object with the following code.
Rect transformed = this.Rectangle;
transformed.Transform(this.rotateTransform.Value);
DrawingVisual visual = new ...
1
vote
3answers
312 views
Determine if a rect is visible inside window
I would like to determine if a rect inside a window is completly visible.
I have found RectVisible, but that function determines if any part of the rect is visible, I want to know if the entire rect ...
1
vote
2answers
441 views
iPhone: detect any point in a rect in another rect
Is there any way to detect if any point in a given rect is contained inside of another, larger, rect? I'm trying to figure out when certain rects are on the screen (for memory management to deallocate ...
1
vote
2answers
705 views
Find Upper Right Point of Rotated Rectangle in AS3 (Flex)
I have a rectangle of any arbitrary width and height. I know X,Y, width, and height. How do I solve the upper right hand coordinates when the rectangle is rotated N degrees? I realized if it were axis ...
1
vote
1answer
570 views
performance of frequently calling CGRectMake?
I would like to use CGRectMake to feed a rect structure to an image (image drawInRect:rect).
Problem is, the position and the size of this rect will dynamically changed.
Is there a performance hit for ...
1
vote
3answers
752 views
How can I find the Rect of wrapped text on an iPhone?
Can anybody recommend a good method for determining the Rect of some wrapped text on an iPhone? I've tried all the built-in methods for NSString in the 2.1 SDK to no avail. The size methods never ...
0
votes
3answers
51 views
Rotate square on its axis in HTML5 Canvas?
I want to create a function that rotates a square on its axis.
var halfWidth = canvas.width/2;
var halfHeight = canvas.height/2;
var x = halfWidth-10;
var y = halfHeight-10;
var w = 20;
var h = 20;
...
0
votes
1answer
43 views
Implementation of collide method by creating a rectangle that is smaller than the object
How would I create a rectangle that is smaller than the image? As far as I know, the only way to create a rect around the image is by using:
self.rect = self.image.get_rect()
But that creates a ...
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
1answer
29 views
Creating 'hole' in a RectF
I have a canvas-based drawing app that when zoomed in, I draw a miniature of the overall drawing in one corner as a scaled Bitmap. I also have a small RectF that I draw over top of the miniature, ...
0
votes
1answer
51 views
Why flickering rectangle (drown by canvas) doesn't work?
I just started to learn a little bit about canvas!
I want to draw rectangle that flickers (shows/hides/shows/hides/shows...) after set time interval.
If I remove setInterval() and clear_canvas() - ...
0
votes
2answers
67 views
collision test? what should i use to check it?
I am developing a game. I would probably need to do some math in it. I have a character made out of about 5-6 bitmaps together. I want to check its collisions. For example if he hits a bullet, hit ...
0
votes
0answers
68 views
android simulate Day/Night cycle
I am trying to overlay a semi transparent bitmap to simulate, day, dusk, night, etc.
I (wrongly) assumed that if I painted a white color and adjusted it's Paint color that I could create a convincing ...
0
votes
0answers
194 views
iOS. Troubles with setVisibleMapRect:MKMapRectMake
I have approximately the following code:
@interface MapViewController : UIViewController<MKMapViewDelegate> {
MKMapView *map;
UILabel *labelRect;
}
@property (nonatomic, retain) ...
0
votes
1answer
62 views
How to draw box containing string when using drawInRect?
I am using drawInRect from UIKit to draw a string. I want to also draw (see) the bounding rectangle where the string is drawn (sort of having a string inside a box). How to do this?
0
votes
1answer
36 views
What does axis-aligned mean?
What does axis-aligned mean. For example when you get a bounding rectangle of a geometry it says:
Gets a Rect that specifies the axis-aligned bounding box of the Geometry.
What does axis-aligned ...
0
votes
0answers
95 views
Rect.Interserct(rect), getting infinity for location
I am trying to find the intersection point between an ellipse and a line, here is what I have:
Rect a = shape.RenderedGeometry.Bounds;
a.Intersect(shape.Source.RenderedGeometry.Bounds);
...
0
votes
3answers
98 views
display pyramid shape using a stack of rectangle in a relative layout
I have 7 xml files in my drawable folder for drawing 7 rectangle in decreasing order of size.
Each xml file is the background resource of an imageview.This means I have 7 imageviews.
I used the ...
0
votes
2answers
43 views
Is it possible to draw 2 Rect and excerpt the first?
EDIT: --> HEY GUYS! <--
i am working on an "Image based App"!
What i want to do is:
Take a photo (done)
preview the Photo with an Overlay!
Crop the Photo
So the problem is the Overlay! I have ...
0
votes
1answer
554 views
Android collision detection
Description:
I've got a project which is nearly finished now, but I've noticed the collision is not really working. It's a snake-like game that can be controlled via the touch-screen, so sharp (?, ...
0
votes
1answer
429 views
Delphi: Canvas.FillRect in List View
On change of a text of List View's SubItem I need to brush and fill a whole row:
procedure TForm1.ListViewDrawItem(Sender: TCustomListView;
Item: TListItem; Rect: TRect; State: TOwnerDrawState);
...
0
votes
2answers
81 views
Is it possible to erase drawing made by NSRectFill?
I have been using NSRectFill to draw rectangles on the screen. I would like to erase these rectangles. I can't paint over them, as the back ground behind them is textured and can't be replicated with ...
0
votes
1answer
169 views
Flex 4.5 Rect size issues when using percentages
I have tried playing around with various combinations of the following MXML component:
<?xml version="1.0" encoding="utf-8"?>
<s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
...
0
votes
2answers
454 views
rotate rect in android 2d graphics?
i want to rotate a rect(not only draw rotated rect but get the new rotated value ) in android ,i tried
canvas.rotate
but it didn't reflect the new values on the rect its just draw a rotated rec.
...
0
votes
1answer
68 views
Remove a drawn NSRect or other drawn object
How do I remove a drawn NSRect or other object other than drawing another rect over it?
0
votes
2answers
226 views
How to make an array or arraylist of Rect
I am going crazy trying to figure this out. I am trying to make an array or arraylist of Rect (rectangles) that I can update the coordinates and draw on the screen(to make them move).
Right now I ...
0
votes
1answer
781 views
Android draw text into rectangle on center and crop it if needed
I want to draw text into rectangle on center (horizontally and vertically). If there is too much of a text that crop it what do not fit into rect.
I have try to do it as this example show, but ...
0
votes
2answers
373 views
UIPopoverController inRect issue
I have a UIViewController that contains a UIView subclass as a subview. In the subview, I dynamically create another UIView. When the innermost view is created then the UIViewController is informed ...