Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
4answers
27k views

Android: Using linear gradient as background looks banded

I'm trying to apply a linear gradient to my ListView. This is the content of my drawable xml: <?xml version="1.0" encoding="utf-8"?> <shape ...
14
votes
6answers
11k views

SVG to Android Shape

I'm wondering how vector drawing in Android with the Shape class may resemble another vector drawing standard. Since Shape is a Drawable, and Drawables are usually defined as XML, it sounds a lot ...
13
votes
4answers
1k views

Custom Shape in Silverlight (porting app from WPF)

I'm converting a WPF app to Silverlight. The app includes a class which inherits from Shape. It overrides the DefiningGeometry property to return a Path object. However, the Silverlight Shape class ...
11
votes
5answers
189 views

CSS3: Is it possible to make this shape?

As you might have guessed this image is part of a mail envelope shape which I would like to create with CSS3 if possible. I've made the other parts but this one's tricky. The shape needs both a ...
7
votes
3answers
370 views

determine if a point sits inside an arbitrary shape?

Given a point's coordinates, how can I determine if it is within an arbitrary shape? The shape is defined by an array of points, I do not know where the shape is 'closed', the part I really need help ...
7
votes
1answer
4k views

Draw text on shape in ActionScript 3

Is there any way to draw text in a DisplayObject or Shape using only ActionScript? The only way I can find on the web is by creating a TextField, but I can't add a TF to a DisplayObject or Shape. ...
5
votes
3answers
111 views

Define if a contour is closed or not

I need a way to define if a contour represents a line or a closed shape. In Java, I have an object Shape which contains all the points which defines it again as separate objects. The object Point ...
5
votes
2answers
451 views

How can I detect basic 2D geometric shapes (i.e. square, triangle, circle etc.) on a JPEG image file?

After a user takes a picture, I want the application to detect the shape of the object that is shot. What I'm looking for is similar to face detection, except I want the app to detect shapes instead ...
5
votes
3answers
573 views

Polygonal Divs — Making content overflow in a specific shape?

Here is the site I'm currently working on: http://willcrichton.net/ If you click on the arrows on each side of the hexagon in the middle, you can see that it transitions left and right using jQuery + ...
4
votes
2answers
129 views

Complex shapes recognition

I need to complete the demo project which aims to recognize teeth on the xray image. I'm not familiar with the topic and I'm not sure which approach would be preferrable in this case. (I was thinking ...
4
votes
2answers
622 views

Determine if (x,y,z) point is inside a shape defined by an array of points

If I have an array of points (x,y,z) and am given a single point (x,y,z), what code do I use to determine if that point resides within the shape defined by the array? I am drawing a blank on this ...
4
votes
2answers
278 views

Performance wise, what is typically better, using an image or a xml created shape as a drawable?

For example, if each row in a list had a background that was a gradient, would it be better to use a image of a gradient or to define that gradient in a shape drawable in xml? Is there is significant ...
4
votes
1answer
176 views

Shape-like query in T-SQL

I would like to write a T-SQL statement, that structures data to be loaded into a Ado.Net DataSet like it was possible with the ADO SHAPE command. Is there something similar in T-SQL? My idea is to ...
4
votes
1answer
322 views

What are the letters in a XAML Geometry attribute called?

I am defining a XAML DrawingBrush resource and I want to draw a custom shape. I found the following GeometryDrawing example: <GeometryDrawing Geometry="M0,0.1 L0.1,0 1,0.9, 0.9,1z" Brush="Gray" ...
3
votes
4answers
95 views

How can I make this shape using CSS3 properties?

I would like to make this shape using ONLY CSS3. The only requirement is that all the elements that form the shape must be BLACK or transparent. I cannot use a black rectangle with a white circle on ...
3
votes
1answer
81 views

Android how to do intricate backgrounds and borders

I want to do intricate borders in my android popups like I see on the ipad. example: What I see here is a thick gradient blue border with alpha transparency at the top. As well as a drop shadow ...
3
votes
2answers
74 views

How to draw a section of a circle using System.Windows.Shapes.Path?

I have a Silverlight application where I draw lines on a picture by instantiating an instance of System.Windows.Shapes.Line and then adding it to MainCanvas.Children. I would like to similarly add ...
3
votes
1answer
160 views

Java JFrame size and centre

I'm working on a uni project which is to create a dice face using 2d graphics shapes. I have got that all done but I have a problem: I want my shape to change size when I adjust the window size, ...
3
votes
2answers
160 views

Delphi - moving overlapping TShapes

I've needed own triangle shape so, I inherited my triangle class form TShape and override paint method. Everything works fine, but I need to move this shapes with mouse. I set the method for every ...
3
votes
2answers
145 views

postgis shape file import problems

Hi I'm trying to import a shape file from http://www.nyc.gov/html/dcp/html/bytes/bytesarchive.shtml into a postgis database. the above files creates MULTIPOLYGONS when i import using shp2pgsql. ...
3
votes
4answers
80 views

What`s the best way to store shapes in a Database

I'am implementing an application that deals with Java Shapes. every user login and retrieve an inventory from a MySql Database. the shapes have differentes constructor and behaviore. So, what the ...
3
votes
2answers
510 views

How to preview gradients and shapes in Android?

Is there an application or tool that can do a preview of Android XML gradients and shapes? Is very annoying having to run app in emulator each time I modify XML, it should be a better way but Google ...
3
votes
3answers
709 views

How do I draw an arrowhead (in Android)?

I'm fairly new to Android and have been toying around with Canvas. I'm attempting to draw an arrow but I'm only having luck with drawing the shaft, none of the arrowhead is working. I have searched a ...
3
votes
1answer
400 views

Border in shape xml

I am trying to make a drawable to use for a button. I would like it to have this coloring, with a 2px border around it. Everything works just fine except I cannot get the border to show up... ...
3
votes
2answers
562 views

cocos2d - Showing only part of a sprite — irregular shape

I'm really going crazy trying to figure this out, so any help would be really appreciated. I'm trying to hide most of a sprite and show it gradually. This works fine if I only work with rectangles. ...
3
votes
1answer
428 views

Custom UIButton Shape without using an image

I want to make a UIButton with that looks similar to the UIBackBarButtonItem (with an arrow pointing left for the navigation stack. I would prefer to do this without having to use an image if ...
3
votes
1answer
319 views

color banding solution killed after defining sdk-version in manifest

The reader can refer to this question: android:dither="true" does not dither, what's wrong? I had color banding too... The solution was to create an alias (in xml) with dither set to ...
3
votes
1answer
128 views

Graphics2D: Should I use the int or float versions?

Some of the Graphics2D methods, such as drawString, have versions that take coordinates as int or float. Are there any reasons to choose one over the other? Likewise, should I use the newer Shape ...
3
votes
1answer
104 views

How to tell if the most obvious object in a picture is a shape?

Okay guys, I think I have done everything I can except one important thing: Shape Extraction. I already do this fairly in a fairly simple way, but there are some cases where it really messes up. The ...
3
votes
1answer
5k views

Android: How can i use the layer-list and shape elements to draw a horizontal rule when set as background?

I want to set the background of a Relative or LinearLayout to a custom drawable. I want the shape to draw two horizontal lines across the bottom, leaving the central part transparent (empty). The ...
3
votes
2answers
2k views

How to create an on-screen android keyboard that isnt a rectangle at the bottom portion of the screen?

I want to develop a replacement keyboard, but I am afraid that Android assumes the general keyboard 'area' will be a single rectangular shape that sits at the bottom of the screen. What if I want ...
3
votes
1answer
2k views

Is there an equivalent to setShadowLayer when defining shapes in XML in Android?

If I draw a round rect shape by code I can use setShadowLayer to get a shadow drawn for the shape. Is there an equivalent when defining shapes in XML? The following example draws a round rect ...
3
votes
4answers
5k views

Create table / grid in a Wireframe Visio 2010 diagram

I'm loving the added Wireframe template and corresponding shapes in Visio 2010. One thing I can't seem to find though (not in Visio, Office help or using Google) is a good way to draw tabular ...
3
votes
3answers
2k views

Oval Gradient in Android

I know how to setup and display an oval shape. I know how to apply a gradient to this shape. What I cant figure out is how I can get an oval gradient to match the shape. <?xml version="1.0" ...
3
votes
1answer
592 views

Click on given element in canvas

Is there any trick to determine if user clicks on given element rendered in canvas? For example I'm displaying rhombus from .png file with transparent background and i want to know if user click ...
3
votes
2answers
715 views

Creating a shape using series of Vector2 - XNA

In my XNA game, I needed to define an irregular shape based on several Vector2 coordinates in the 2D space. The reason was to do collision check (like Rectangle.Intersects()). For example: Vector2 ...
3
votes
1answer
526 views

JNA Library - Problems on Mac OS X

This is a question regarding the JNA library in a Java program. I have a tray application. "JFrame 1" is loaded at start of program. "JFrame 1" has a custom shape and has transparency. (Custom shape ...
3
votes
1answer
2k views

size of node with shape=circle

i'm trying to set the size of the nodes this way: controller[shape=circle,width=.5,label="Controller",style=filled,fillcolor="#8EC13A"]; But all three nodes are with different size. How can i set ...
3
votes
4answers
5k views

AffineTransform: scaling a Shape from its center

I'm trying to scale a rectangle from its center using AffineTransform. I'm sure the solution is obvious but I cannot make it work ! Here is what I've tested so far... import java.awt.Color; import ...
3
votes
4answers
2k views

Round window playing movie using WPF

Is it possible with WPF to create a window that has the shape of a circle and uses a playing movie as the background?
2
votes
2answers
60 views

Shape inconsistence in my code based on numpy/scipy package

I have 2 matrices and a vector which I multiply by using the dot() function of numpy. print D.shape, A.shape, y.shape, type(D), type(A), type(y) # (236, 236) (236, 236) (236,) # <class ...
2
votes
1answer
150 views

Finding people silhouette in OpenCV C++

I would like to extract the silhouette of a human in a photo and remove the background. The photo could be taken of the full body, only the upper body or only the lower body. What I have done so far ...
2
votes
3answers
52 views

How to get covered areas in image, any algorithm?

I have an image like in the left side. I want to get covered areas or the arc points of polygons for getting image like in the right side. I have got end point-values of all lines. How can I do ...
2
votes
2answers
91 views

Trigger with current date query/where clause

we want to create a trigger which checks if a new measurement (=messung) point lies within the current glacier shape (=umriss). are tables look like this: glacier shape (=Umriss) create table ...
2
votes
1answer
72 views

Need to change the color of a JButton with a different shape

I'm making a game for class and for this game I have an array of JButtons that need to be able to change colors based on certain factors. I had this all worked out and was changing the color with ...
2
votes
1answer
137 views

What parameters I can pass to this function?

I found a function function RotateBitmap(var hDIB: HGlobal;  radang: Double; clrBack: TColor): Boolean; that rotates an image. But I don't know how to call this function. What parameters I can ...
2
votes
1answer
127 views

How to paint a WPF-Shape mathematically?

I want to paint an WPF-Element like a colorwheel, you know from the HSV color space. i dont know how to do this, i havnt found a possibility based on the standard brushes (SolidColorBrush, ...
2
votes
2answers
287 views

Image/Graphic into a Shape in Java?

I was wondering whether there is any way to covert an image/graphic into a Shape? For example an outline of a motorcycle shape into a Shape so then could use it in Java? I know you can do it with ...
2
votes
1answer
148 views

Android - problems with ColorStateList xml referenced from shape xml

I'm running into a problem where the color selector in one of my drawable xml files doesn't seem to be honored. I have a layout including: <LinearLayout android:layout_height="wrap_content" ...
2
votes
1answer
286 views

Cutting irregular shape on image

I am trying to cut an image into a particular shape using the canvas clip() method. I have followed the following steps to do so: Draw a rectangle. Draw semi circles on each side. The right and ...

1 2 3 4 5 6