Questions related to drawing or defining shapes.
0
votes
0answers
11 views
C# - Set my shape's properties after a TranslateTransform
I'm right now working on a Kinect application and got some issues.
What I'm trying to do is to translate Rectangle shapes after a hand swipe.
The swipe detection works well but I have some issues ...
-5
votes
2answers
47 views
Shapes & Best practice - CSS Tricks, Image or SVG? [closed]
What's would be the best practice to draw any Shapes ? From simple shapes, to complex ones.
How to choose which solution would be the best.
Draw a Shape with :
Some css tricks (border, gradient, ...
0
votes
2answers
21 views
Can't Detect Mouseover on This KineticJS Shape?
I have a KineticJS shape that draws a bezier curve that is wider on one end. It draws correctly, but I can't yet detect a 'mouseover' event on it. I have created a small JSFiddle demo of the anomaly, ...
0
votes
0answers
12 views
Android - Shapes gesture
Is there any library or solution to recognize a shape gesture on Android? e.g, user use finger to draw some shapes on screen, How can I recognize them and convert to vertex shapes such as: rectangle, ...
0
votes
1answer
36 views
Adding a shape to class properties
I am working on a game which has a class Player, there are 3 subclasses of player. These are different types of players who have different methods and variables. Anyhow I want to give each player a ...
-2
votes
1answer
28 views
how to treat a shape as a graphics2D
I am doing a java project and I have a collection of shapes, i need to give a different color to every shape.
For example in the collection I have squares and rectangles, Then I need to draw the ...
0
votes
0answers
29 views
creating a rectangle from 2 specific points
I am trying to create a rectangle in Java but only with awt package classes.
I can only click 2 points and the program must calculate the width and height and make Rectangle between those exact two ...
3
votes
2answers
62 views
Efficient way to draw 3! ( 6 times) three shapes in C
I want to draw all the combinations (3! = 6) of 3 shapes , in one row : empty cell , X , or a rectangle .
The current code :
For empty cell :
void drawEmptyCell()
{
...
2
votes
2answers
69 views
Can colors and shape be changed on a combined line and point plot while maintaining one legend per graph?
Using the following data frame:
day <- gl(8,1,48,labels=c("Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Avg"))
day <- factor(day, ...
0
votes
1answer
37 views
Plot Point in ZedGraph C#?
Well this is my question, I have a ZedGraph, now I want to put some points in the ZedGraph, I have my simple class Point wich it have, the X & Y values, fist I check this question, but not ...
-1
votes
2answers
39 views
How to print rectangle with exact size in c#?
I am new to Dot Net, I want to print a rectangle with 20mm width and 8mm height exactly if i measure with scale. I also want to print text exactly in the middle of rectangle.Can anyone suggest me how ...
0
votes
1answer
48 views
Define x,y of line (start/end) connector for two shapes KineticJS/HTML5
I'm working in a small project where I'll need create a resizable parent shape and a resizable child shape with a connection line. I did in KinecticJS.
But, I have a problem for calculate the x1, x2 ...
0
votes
1answer
26 views
How to get the coordinates of each pixel of custom uiimage?
Hi everyone
I need to write the simple puzzle game and the main condition is that when the piece of puzzle is close to its destination when it is "released" it gets there exactly where it should be.
...
1
vote
1answer
61 views
Drawing outline of 2D shapes in OpenGL while changing the line thickness
So I'm trying to (what I think would be simply) draw the outline of a number of 2D shapes using OpenGL. It all seems to work until I try to change the line thickness of the outline using ...
1
vote
1answer
46 views
C#: State of a Checkbox in MS Excel
I am trying to acquire state of a checkbox existing in an XLS document via C#. Let me back up here. This is what I have:
MS Office 2007 + Dev Tools and VC# 2010 Express
Referenced MS Excel 12.0 ...
0
votes
1answer
27 views
Adding shapes to Canvas. How to bind to VM
Sorry that the title is a bit vague but I could'n come up with a better one.
For arguments sake let's say I'm developing a simple drawing application, where the user just clicks and drags to draw a ...
0
votes
1answer
21 views
draw lines to connect two shapes
How to design such function that user can use mouse to draw a line to connect two shapes? I'm using this module in wxpython : wx.lib.ogl.
The doc for theses methods are brief and no good demo that ...
0
votes
2answers
63 views
Java painter program drawing shapes
I have a problem in this java code.
I want to make a painter program but whenever I choose a shape and draw it
all the shapes that were drawn before become the same as this shape. Here's the code.
I ...
0
votes
1answer
67 views
drawing shapes with mouse in java
I am working on a simple panting project that allow the user to select a shape from ComboBox then draw it on the panel. Problem is when user choose any type of shapes and try to draw it on panel no ...
0
votes
1answer
26 views
canvas draw rounded rectangle in reverse?
I apologise in advance for asking this, I was kindly provided with some code to draw a rounded corner rectangle progress bar which was great:
http://jsfiddle.net/P2qTq/
I need to reverse the drawing ...
-8
votes
1answer
66 views
Drawing Hexagons shapes using CSS only [closed]
I have found examples of how to draw triangles and circles using just CSS3 (with no Javascript), but I did not find any sample of how to draw hexagons. Is it possible? Any idea?
Thanks a lot.
0
votes
2answers
40 views
How to add resizing slider to rectangle shape in java?
Here is my rectangle shape code:
if(rect){
gphcs.setColor(Color.BLUE);
if(orangeshp)
gphcs.setColor(Color.ORANGE);
if(greenshp)
gphcs.setColor(Color.GREEN);
...
1
vote
1answer
30 views
Filling pseudo 3D canvas shapes
Currently I'm playing around with pseudo 3D shapes in canvas 2d context. However, I stuck yet at filling the shape sides.
Here's the drawing function I wrote:
Shape.prototype.draw = function (ctx) ...
1
vote
1answer
86 views
Canvas rectangle with rounded corners as a progress bar?
I'm trying to make a progress bar in the form of a rounded rectangle drawn on canvas, this jsfiddle has the shape:
http://jsfiddle.net/xT3ax/
this.beginPath();
this.moveTo(x + ...
1
vote
2answers
62 views
How to make star shape in Java?
I'm trying to make some shapes with java. I created two rectangles with two different colors but I want to create a star shape and I can't find useful source to help me doing this.
Here is my code:
...
0
votes
0answers
119 views
How do I alter or replace the right-click menu for a shape in Excel?
I have seen a lot of "answers" to this question, but none of them seem to fit the bill. I know it's not easy, though. There is no shape click event in Excel. The "OnAction" does a good job of ...
0
votes
0answers
13 views
Edge detection then convert into a shape?
I was wondering if anyone knows of an algorithm to retrieve shapes from an edge detection filter.
I basically want process an image and find all the shapes in the image then fill them with rectangles ...
0
votes
0answers
49 views
Drawing Shapes in OpenGL ES 1.0
I'm trying to draw shapes in opengl es 1.0 for Java android. I have no idea how to do it and there are so many tutorials for so many different versions of opengl on the web it's making my head spin. I ...
0
votes
1answer
64 views
Is there a way to refresh/update the hyperlink in a shape when the hyperlink is clicked?
I have shapes in a diagram that represent processes in a data flow; the shapes are hyperlinked to process definitions located in another tab based on the text in the shape and shape name (e.g. shape ...
1
vote
1answer
21 views
Shape with increasing width
I would like to create a shape, which starts with a certain width and then increases to the end. Currently I have this shape here:
Generated by this document. How can I style the shape, that it ...
0
votes
0answers
39 views
<item> offset behavior not what I expected
I have this drawable XML file. The target is to draw two concentric frames, the outer being yellow and the inner being red. And I want it all done in XML, using shapes, not in code and not using ...
0
votes
3answers
128 views
Best/Easier way to add a shape/image to a Dynamics AX 2009 form?
I would like to add a few coloured square shapes to a form in order to display a legend. Since I haven't come across any way of adding coloured-in shapes, I've resorted to creating the shapes as ...
0
votes
1answer
82 views
Is there a way to call nonstandard shapes in VBA; using application.caller does not work
I want to assign a macro to shapes in my workbook where the macro assigns a relative hyperlink to the shape that called it. I tried using application.caller to get the name of the shape to assign the ...
0
votes
2answers
83 views
Draw 2D thick arc using polygon in OpenGL
I want to draw a thick Arc(something like colored segment of analog dial) using polygon. For that i have added vertices in polygon and its working fine for the outer circumference BUT its joining the ...
1
vote
1answer
54 views
vba: test if shape contains a textframe
I want to loop over all shapes in a chart in an excel file.
This works in principle with
Dim currChart As Chart
Set currChart = Sheets("Diagramm 1")
Dim sShapes As Shape
For Each sShapes In ...
0
votes
1answer
32 views
Update hyperlinks in shapes when file location changes
I have a process flow diagram that uses various excel shapes to visually represent a data production process from start to finish, I.e. from data input to analytic environment to data output to ...
0
votes
1answer
26 views
KineticJS one shape triggering event on another shape on dragover
I'm familiar with kineticJS and have just come across my first problem which i'm hoping someone will be able to help with.
What i'd like to do is drag one shape (a trigger shape) over another shape ...
0
votes
0answers
38 views
Algorithm to recognize shapes drawn
I am searching for an algorithm using which I can recognize a geometric shape drawn (e.g. rectangle, triangle, circle).
i.e. if someone draws a circle, I should be able to recognize it but not draw ...
0
votes
0answers
16 views
How can I get the dimensions of a stack of shapes in Box2d?
As a programming newbie, I've been fooling around with the Cocoa/Box2d combo for an iPhone application. For starters, I just want to slightly modify the default (helloworld) file where you tap to ...
0
votes
2answers
187 views
Find the type of a shape
I want to show all the shape types that i have in a powerpoint presentation. I tried with those codes:
Private Sub CommandButton1_Click()
Dim it As String
Dim i As Integer
Dim Ctr As Integer
...
0
votes
1answer
85 views
What is the simplest way to identify seperate shapes in binary image?
So I have the following image:
Now I wish to find the center point of each individual disconnected shape. I would also like to find the width and height if possible.
I'm using Java and the ...
1
vote
1answer
35 views
How to store Shapes in Mongo DB
I want to create a database using mongoDb and I am new to this area. And also want to Insert and select data to store shapes like circle, triangle, etc. I want to know how to do it.
0
votes
2answers
272 views
How to draw and move shapes using mouse in C#
I'm new to programming in C# and wanted to ask for a little bit of help. I'm currently trying to move a color-filled rectangle that I draw on a Windows Application form with my left mouse button, and ...
0
votes
1answer
200 views
D3 canvas globe mouse events
An example of D3 canvas globe:
http://bl.ocks.org/mbostock/4183330
What I'm trying to do is click on a country and have the globe rotate so that country is centered on the globe.
How do I do add an ...
0
votes
1answer
64 views
Raphael- using transform to scale js paths- unexpected results
I'm using raphael for the first time, and have a svg that I used an online converter to convert to javascript paths. I'm now running into a problem- the paths all have a .transform on them, so I'm not ...
0
votes
0answers
57 views
How to set different Custom Icons for clusters of PushPins in Bing Maps Ajax Control 6.3?
I'm trying to set different Custom Icons for clusters of PushPins using Bing Maps Ajax Control 6.3.
The reason I'm trying to do this is to inform the user visually that a cluster contains a PushPin ...
5
votes
2answers
129 views
Calculate the area of a quadrilateral
I'm trying to create a calculator which calculates the area of a simple quadrilateral.
I know that every quadrilateral can be split into two triangles, and I should be able to calculate the area in ...
0
votes
0answers
25 views
Drawing a a shape by reading the input from a file
I am a newbie in java.I am trying to draw the shapes on Jpanel by reading a text file.
the text file is
COLOR 0 0 255 // set color to blue
ELLIPSE 50 50 30 20 // draw a blue ellipse
COLOR 0 255 0 // ...
2
votes
1answer
101 views
Generate Random Points Within the Area of Two Overlapping Ellipse Shapes
Using JavaScript, PHP or pseudo-code, can someone show how to generate random points inside the area between two overlapping ellipse shapes? If you take a look at the image below, the area marked in ...
0
votes
2answers
176 views
How to set a Custom Icon on clustered Push Pins in Bing Maps?
What I'm trying to do is to change the default icon that is displayed when you set the Clustering Configuration for a Bing Map using the Bing Maps Ajax Control 6.3.
I have a function that loads a ...






