Tagged Questions
0
votes
0answers
25 views
Microsoft Access Drawing Line on Listboxes
I have a problem for drawing line between listbox items. I have 3 ListBoxes; one of them has three columns and other two have one column. What I want is to draw line between items inside these boxes ...
2
votes
0answers
19 views
Dotted Line for PDF Rendering in iOS
I wont to know how to render a dotted line on a pdf.
CGContextRef currentContext = UIGraphicsGetCurrentContext();
CGContextSetStrokeColorWithColor(currentContext, [UIColor grayColor].CGColor);
...
2
votes
1answer
37 views
Draw Line in the Direction of the Mouse Cursor
I have a line that I want to be drawn from the player x and y towards the mouse x and y but I want it to just go in the direction of the mouse cursor (I don't want it to be drawn from the player to ...
0
votes
1answer
38 views
C# canvas going overpainted
I have a canvas in my main window and I draw a line there.When it draws over the width/height of my canvas ,the drawing continues in my main window.... Is there a mistake in my code or is that normal ...
1
vote
2answers
93 views
button to draw line vb.net not working?
I’m trying to create a line using a button which isn’t working.
If I use the following code,
Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.Windows.Forms
Protected ...
0
votes
2answers
86 views
How to draw a vertical line on image in php [duplicate]
i am making an antibot that displays different pictures, and asks the user to click on a specific picture. However, i would like some small random change to be made to the picture each time, so that ...
0
votes
1answer
38 views
glDrawArrays distorts output to CCRenderTexture
If CCRenderTexture is not full window size, glDrawArrays output is smaller and at a strange angle. In my test code, the diagonal line should run from corner to corner at a 45 degree angle. How can I ...
1
vote
3answers
176 views
android line intersect with itself
Hello friends,
I draw a line using canvas.drawPath(mPath, mPaint); method.
but having some problem, i want to get whether line intersect with itself or not.
so please help.
thanks in advance
0
votes
0answers
49 views
Draw lines with simplecv and pyqt4
I am trying to integrate simplecv to pyqt4 with some mixed success. I was able to see a webcam capture in pyqt4 through simplecv, I can modify the image with simplecv and it shows ok in pyqt4 but when ...
2
votes
1answer
155 views
How to draw a line from the source to the destination of a drag and drop operation?
I've implemented a drag and drop system and now I want to draw a line from the source to destination. How can I draw that line? I already used an extension of the View class, but it's not working. ...
0
votes
1answer
64 views
How to draw in Panel Flex?
I have a problem when i want to draw the line in the panel. I don't know how to do that, please explain me...
I'm trying to put the SpriteVisualElement in the panel but i get "component declaration ...
0
votes
1answer
135 views
Draw line in Flex in ActionScript
i really don't understand what i am doing wrong:
It's simple example, but when i click on the button nothing happens..
<?xml version="1.0" encoding="utf-8"?>
<s:Application ...
1
vote
0answers
103 views
How to draw line with ESC/POS?
I need to draw a horizontal line (solid one but dashed will be perfect!) to my receipt using ESC/POS commands.
Now I'm using some hack that allow me to draw a horizontal line by using "UnderLine" ...
0
votes
2answers
119 views
Textview with a bottom drawing custom line
I just wanted to know how doing something like that:
Thank you
1
vote
2answers
318 views
Draw line on touch event mono for android
I tried creating two circles ondraw in a activity. But what I really want to accomplish is to draw a line on touch move. The user will be able to use his/her finger to draw a line depending on the ...
0
votes
2answers
186 views
How to dynamically draw a line between two vectors using OpenGL ES 1.0
I'm just learning some OpenGL ES programming (1.0 since that is what the book I have uses), and I don't know how to draw a line between two game objects who are represented by position vectors.
Say I ...
2
votes
0answers
84 views
Draw a line between objects in Android
Hello I have a layout with x number of buttons created dinamically. What i need to do is draw a line that join the first and the last button. How can i get position of the buttons, and how can i draw ...
1
vote
1answer
160 views
How to create Paint-like app with XNA?
The issue of programmatically drawing lines using XNA has been covered here. However, I want to allow a user to draw on a canvas as one would with a drawing app such as MS Paint.
This of course ...
0
votes
0answers
133 views
Corona SDK - Area of event touch to draw a line
I need some help here... well, i am creating a long level in my game. My level resolution is 1280 x 960 (Height x 2) and the problem is that when the camera follows the object, i can draw line only on ...
0
votes
1answer
192 views
HTML5 canvas path drawing issue
I noticed a weird issue while tried to draw a line with canvas. I have a simple script which save the point when you click first (this will be the start point for path) and when you click again and ...
0
votes
2answers
118 views
Draw line within CCSprite bounds cocos2d
I am developing game in cocos2d which contains CCSprite of apple,mango and banana shapes. Now i want user to draw line ( i guess through CCMoionStreak) within selected CCSprite (apple,mango or ...
0
votes
0answers
53 views
how to draw line between similar points in Matlab
I have an image and I want to know which points in the image are similar to each other, I have write a code to find which points are similar but I don't know how I can write something to draw line ...
0
votes
2answers
276 views
How to draw a line in android between two or more RadioButtons
I want to draw a line between two or more views like radioButtons when the one is checked?
1
vote
1answer
188 views
Java draw line with border
I'm developing a JApplet in which the user can draw some lines over an image.
Lines can be red or green, but I need to highlight them because I don't know the background color.
So I thought that I ...
1
vote
1answer
87 views
Java Line drawn disappeared in some points
I'm developing an applet in which the user can put some markers and draw lines over an image using the mouse.
The space where I put lines and markers is a JPanel. I created the markers as JComponents ...
1
vote
2answers
128 views
clearRect function doesn't clear the canvas
I'm using this javaScript on the body onmousemove function:
function lineDraw() {
//Get the context and the canvas:
var canvas=document.getElementById("myCanvas");
var ...
2
votes
2answers
89 views
Draw and estimate the lenght of a line in a image using matlab
I would like to draw a line between two edges on a grayscale image and estimate its length. Need to estimate the diameter of the femoral head. I have tried using houghlines and finally plot (see ...
0
votes
1answer
333 views
Drawing lines by dragging the mouse in matlab
I want to draw a set of disconnected lines on top of an image by dragging the mouse while pressing the left button. However, if I click on a previously drawn line to specify the starting point of the ...
1
vote
1answer
705 views
JavaFx 2.x : How to draw dashed or dotted lines?
I would like to dynamically change the draw of a line from solid, dotted or dashed: it seems I have to use line.setStroke, is it the correct method?
And, how to accomplish this?
Thanks
3
votes
1answer
372 views
Drawing fixed set of grid lines with opencv
is it possible to draw user-defined grid lines with defined points at all intersections, against the output of the colour detection sample in the opencv sample file? Basically, the webcam will need to ...
1
vote
1answer
150 views
How to draw a line on chart?
The problem is, how to make simplier and more effective.
I'm using jfreechart, and I want to draw a line from one point to another by clicking a mouse.
I have overrided chartMouseClicked to set start ...
1
vote
2answers
137 views
My activity is not showing line
I write the following code, but the output shows nothing. No any exception throws and also no line is drawing with this code. Please help me where I am wrong???
Main Class
@Override
public void ...
1
vote
2answers
478 views
How to use openGL line drawing in cocos2d
I like to draw a line, but cocos2d inside ccDrawLine serrate, how to draw a blurring of the line, who can help me?
ccDrawLine( ccp(StartP.x, StartP.y), ccp(EndP.x, EndP.y) );
1
vote
2answers
1k views
How to draw line during runtime in a custom view?
I am trying to draw a line using on touch method.
I want that when user touches a particular point and then drags the finger, the line should be drawn.
using canvas.drawLine(_,_,_,_,_ ); is not ...
0
votes
1answer
674 views
Draw a separator line on UIView in Storyboard
I am trying to draw a straight separator line on an UIView. Basically, this is not so hard but I was wondering if there exists an easier way to do this. For example in the Storyboard.
Actually, I am ...
2
votes
1answer
559 views
How to draw a line like chalk?
I want to draw line, like chalk. And the line's edge is faint. Just like use chalk draw on blackboard.
How do I get this?
Now, I had drawed line using image, but it doesn't look like draw on ...
2
votes
1answer
319 views
Draw a Line in Python Mayavi
How to draw a line in 3D space in Python Mayavi? Is there a function from MLAB module that allows me to specify the start and end point of the line which will be drawn?
3
votes
4answers
2k views
How do I draw a line Overlay on Google Maps Android
I am trying to draw a line on my maps project, but can't get the line to draw. Where and how do I declare the overlay? I've tried various methods, but can't get it to work. ie, code just displays ...
0
votes
0answers
206 views
How do I draw a line as I move for Google Maps - Android
I am trying to develop an app which tracks my movements as I go along. I am trying to draw a line from the previous point to the current point. I am having problems with the code above, geoPointsArray ...
0
votes
2answers
252 views
How do you draw a line from previous point to current point in Android Google Maps?
I am trying to create a GPS tracking app, and is stuck on how I can draw a line from the previous point to current point. I've tried using an Overlay, but it does not display... I am not THAT good on ...
0
votes
1answer
1k views
xcode: draw line. how to pass variables
in my ViewController I have a button:
- (IBAction)drawLineClick:(id)sender
{
CGRect rect;
rect.origin.x = 20.0f;
rect.origin.y = 40.0f;
rect.size.width = 100.0f;
rect.size.height ...
0
votes
0answers
520 views
Drawing a line as a graph c# windowsphone
folks,
I have followed the following tutorial: Click
And i have played around with it a bit, to get the feel of it some more.
The tutorial gives me the following code:
// Create a Line
Line ...
0
votes
1answer
309 views
How to set max length of a draw line?(Corona SDK)
I am currently working on some project and it contains an option of a line to be drawn. But I can't normally set max length of line. How can I do that?
Here is the code of distance formula (as I ...
0
votes
2answers
220 views
Draw line - line is not visible
im trying to connect two JComponents with simple line., here is how i tried to do it:
1st object is filled rectangle, 48x48, and then i have drawed circle(.png) into this rectangle.I placed it on the ...
1
vote
1answer
365 views
How we are assigning values to GLFloat to draw a line in iPhone app?
Finally Mr.Chris helped me to draw a line using GLKview and drawInRect: method. It is working fine. But, i need some clarifications,
How we are assigning values to GLFloat?
const GLfloat line[] =
...
2
votes
1answer
4k views
Draw a straight line using OpenGL ES in iPhone?
Finally i tried to draw a line using OpenGL ES framework in XCode 4.2 for iPhone simple game app.I studied something about GLKView and GLKViewController to draw a line in iPhone. Here is my sample ...
1
vote
1answer
787 views
How to draw a straight line with Animation using OpenGL ES in iPhone Game app?
Am very new to OpenGL ES framework in iPhone. Am started to study about OpenGL ES in iPhone. I want to draw a straight line with animation in the demo iPhone game app. Where the user touching in the ...
2
votes
1answer
815 views
Draw Perpendicular line to a line in opencv
I better explain my problem with an Image
I have a contour and a line which is passing through that contour.
At the intersection point of contour and line I want to draw a perpendicular line at the ...
0
votes
3answers
388 views
How to draw a stairs line using a drawline in java?
I want to make a simple stairway line having an interval distance of 200 meters in every line. As you can see in the code, it has a screen height(y1_world) of 2000 meters and a screen width(x1_world) ...
0
votes
1answer
509 views
drawing lines on top of UIImageView which has an image already
I have a picture black and white of png format that is displayed with an UIImageView. It is a clock shape with no handles. so the background is white - and the circle is black.
Then I would like to ...




