The draw tag has no wiki summary.
0
votes
2answers
15 views
Android - how to draw in a multiple view layout
i have to draw a ball inside a view (or anything else that is good for this task).
I have followed some tutorial about the matter, but every tutorial that i have found
uses only one view (that is ...
0
votes
0answers
7 views
Drawing a curve with given two points and radius in C#
How can i draw in windowsform a curve/arc with given only two points and a radius. there is a way with intersection of two circles with the radius. is there an easy way that can i draw it with ...
0
votes
0answers
9 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 ...
0
votes
1answer
16 views
Draw and listview in same activity/screen
Hello i'm a beginner in android programming (and in stackoverflow)!
I have an activity with a RelativeLayout (i will call it rl1 to be more easy to understand) layout type. Inside of rl1 i have a ...
-2
votes
1answer
22 views
draw ellipse2d around mouse click java [closed]
I am making a program that draws ellipses when the user clicks the screen. Currently when the ellipse is drawn the origin is (0,0) so it is being drawn from the top right. I want it to be drawn around ...
0
votes
0answers
6 views
How to place a symbol under an arrow in Latex when using tikz package [migrated]
I'm using the tikz package in LaTeX to construct a feedback loop for a control system as a part of a paper on control systems. The problem I'm running into is that I would like to place symbols under ...
2
votes
0answers
16 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);
...
0
votes
0answers
18 views
Migration from V2 to V3 with an own overlayer
i need help because i am not so good in javascript and i dont habe any experience with the google maps api.
I want set my own Marker in the Google Map and if someone click, an own overlay will show. ...
0
votes
1answer
34 views
How to Draw a Circle with Centered Fadeing Out Gradients with HTML5 Canvas?
How can I draw a circle with fadeing out gradients?
I mean something like this:
http://i.imgur.com/ZJBKe6z.png
, getting darker and darker...
0
votes
2answers
46 views
C# Button Shape issue
I recently tried to follow this tutorial here but I don't really understand how it works. My problem is that I don't see any button like the in the image or anything like that, there is no button on ...
0
votes
2answers
60 views
How to easily outline arbitrary (data) structures in text?
So I came across this:
mysite/
manage.py
mysite/
__init__.py
settings.py
urls.py
wsgi.py
and this:
root --+---> child1
+---> child2 --+--> ...
0
votes
0answers
31 views
SubClass of UIView never call drawRect:
I created a nib for a custom view.
And I set the nib's view Custom Class to "MyView" for example.
MyView * myView = [[[NSBundle mainBundle] loadNibNamed:@"MyView" owner:self options:nil] ...
0
votes
1answer
41 views
C# draw a moving particle
I am extremely new to c# and I have a simple question:
I am supposed to draw a white particle (rectangle) on a black background and move it horizontally from one of the screen to another.
I did it ...
0
votes
1answer
24 views
onTouch() can't draw canvas
onDraw(Canvas canvas) works automatically. In this view onTouch() method listens for touching the screen. I need to redraw the rectangle when I click on the screen but it isn't drawing the rectangle ...
0
votes
0answers
30 views
Put a number inside Marker Google Maps v2 android [duplicate]
I have done a cluster for markers in google maps. And works fine, but, now I want to put the number of markers that have been clusterized in the marker that has all of them. But I don't know how to do ...
0
votes
1answer
17 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
0answers
65 views
Picturebox - Get image inside drawn rectangle and show in another Picturebox
I made a search and successfully found a solution to draw a rectangle inside my Picturebox while mousemoving using a class named Rectangulo:
Public Class Form1
Dim SelectionBoxObj As New ...
2
votes
2answers
115 views
Android drawing rectangle timer with animation
I'm trying to have an animation drawing stroke rectangle:
Any kickstart for this issue will be helpful. Using Views,Canvas anything.
Thanks
2
votes
1answer
34 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
Drawing a graph from an array of double values in Java?
I have an array of parsed double values from a csv file (a lot of them) and I would like to create some kind of a graphical graph/diagram prensentation. Is there any API designed for this? or is there ...
0
votes
1answer
34 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 ...
0
votes
1answer
35 views
How to draw a dot that leaves a trail
I'm still learning Android, and I decided to download an example paint application to fiddle with that and learn a bit about how Android handles graphics/drawables/painting. The code I have shows a ...
1
vote
2answers
25 views
Simple PixelGrid where I can draw big pixels (choose resolution) with the mouse?
I'm looking for a way in Java to make a simple grid which fills up pixels if u drag the mouse. So just a simple drawing surface...
Now it is important that I can choose the resolution or in other ...
0
votes
3answers
52 views
Can't draw rect in python pygame
I'm just getting started with PyGame. Here, I'm trying to draw a rectangle, but it's not rendering.
Here's the whole program.
import pygame
from pygame.locals import *
import sys
import random
...
0
votes
2answers
43 views
Java: Drawing graphics from an array
I'm working on my first java game for a school project, and I'm having some problems drawing the graphics based on information in an array.
What I'm basically trying to do is to create a 2D array ...
0
votes
1answer
28 views
Canvas draw shapes on the go
When I run it the browser loads for a while and then displays the whole canvas. How can I make it display as soon as it finishes one loop iteration?And why is this code not doing what I expect it to?
...
0
votes
1answer
44 views
Objective C draw in view dynamically
I have seen many examples of views being subclassed to override drawRect, but that approach is pretty static (at least as far as I understand).
What I'd like to do is set up a very simple drawing ...
0
votes
1answer
85 views
Drawing multiple images using paintComponent()
I would like to display more than one image on the screen in the same JPanel.
A for loop iterates over each element in the array and displays their corresponding image, but only seems to keep the ...
0
votes
1answer
34 views
Drawing lines at angle vb.net [closed]
I can find plenty of examples of how to draw a line in vb.net online.
I however I cannot find any examples of how to draw lines at a specific angle.
Could someone tell me how to do this?
0
votes
0answers
22 views
Gesture Data from ViewController to UIView
i would like to change the stoke of an line with a pan gesture. So now i have a IBAction called handlePan with the pan gesture in my ViewController called ViewController.m
#import "ViewController.h"
...
0
votes
1answer
19 views
how to Draw the Voronoi diagram for two distinct points
I am trying to figure how to Draw the Voronoi diagram for two distinct points.
can someone help me.
Thank you
0
votes
0answers
12 views
My class will not draw properly on the screen, no errors just not drawing
Ive been working on a side scrolling game and ive almost finished the game, when it came to making a class for an owl the code was similar to other i just used the same methods but now when it comes ...
0
votes
1answer
82 views
OpenGL Draw Text Alongside Objects
I have this render function that is working:
void RenderFunction(void)
{
++FrameCount;
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
drawGraph();
drawAxis();
...
1
vote
2answers
77 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
0answers
61 views
How to draw a string to screen in C# XNA
I am attempting to add "Lives: 3" to a platformer game using C#.
Currently the game draws the score in a Drawhud() method like this:
// Draw time remaining. Uses modulo division to cause blinking ...
0
votes
1answer
74 views
How to speed up python's 'turtle' function and stop it freezing at the end
I have written a turtle program in python, but there are two problems.
It goes way too slow for larger numbers, I was wonder how I can speed up turtle.
It freezes after it finishes and when clicked ...
0
votes
0answers
45 views
Android joystick won't show up
I am working on a project right now in Android, and we have been using an edited joystick class that has been great! However, when optimizing the code for the project, I used Lint in Eclipse to ...
0
votes
1answer
30 views
Processing: display goes bezerk at about 1600 frames
I have an "art" application written in Processing that goes bezerk at about 1600 frames. The code is at https://github.com/jxxcarlson/Processing/tree/master/seurat . Try this to duplicate the error: ...
0
votes
0answers
58 views
Texture movement in game algorithim
I have recently picked up a few books on game programming, starting out with a book on XNA because I believed it wouldn't be too difficult to understand the framework, and it seems like it takes its ...
0
votes
2answers
74 views
Any java package to draw simple geometric shape?
Does anyone have any suggestion about any lib/package to draw simple geometric, such as triangle, square? It can be saved into a png format.
0
votes
1answer
203 views
c# wpf multiple line drawing on canvas with kinect sensor
So first of all let me show you what I want to accomplish:
http://www.youtube.com/watch?NR=1&feature=endscreen&v=FdwZEepJxJ4
There the guy is drawing a long curved line using kinect. I need ...
0
votes
1answer
163 views
C# Drawing line parallel to a Polyline
I'm creating a program in wpf that draws polyline as well as a line an offset away which is parallel. It works perfectly for the first set of parallel lines, but on each following line the right line ...
0
votes
2answers
69 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
0answers
62 views
Draw video on canvas for live wallpaper
I am new to android, and I am trying to create a live wallpaper. I have installed the samples on Eclipse and I am trying to understand how live wallpapers work (using the Cube sample).
What I want to ...
1
vote
1answer
34 views
Draw over image javaFx
I have an ImageView object stored into a scrollPane and I need to be able to draw over that image.Please give me some sugestions.I use javaFx.
0
votes
1answer
73 views
How can I paint in an specific JPanel when more than one in same frame- Java
Updated - this is related with the following link I posted yesterday.
Swing GUI application in Java with multiple frames
I apologize if I am doing something wrong here, I tried to write in my ...
1
vote
3answers
48 views
Filling polygon and moving it, but its leaving a trail
Alright, so I've been trying to move my polygon so it bounces around the screen. Right now it does so but leave a trail the entire way. I have a GUI class, extended by an Aquarium class, which fills ...
0
votes
2answers
76 views
Draw() method in XNA stops working inside a for loop
So far, this is my first XNA game and I'm having real trouble trying to learn this.
I'm following a tutorial from Microsoft, found here: XNA Xbox Live Indie Games
Every now and again, the code ...
0
votes
1answer
34 views
Android layout draft
Is there programs or web apps available to draw a draft of each layout from an app prior to developing it ?
I'm not looking for something that will generate the xml layout but just a simple tool to ...
0
votes
0answers
48 views
Fastest way to draw/animate an object continuously from dynamic data over the internet
I have a process which reads live data every 100ms and saves it to database. My goal is to draw image/object on the web based on this data which changes continuously.
I managed to do this using HTML5 ...





