The tag has no wiki summary.

learn more… | top users | synonyms

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
0answers
101 views

impossible to draw a different texture on my cubes on XNA

I'm having some problem to draw textures with class "DrawUserIndexPrimitive" on Xna. I can draw my cubes / models without problem. But I want to draw different textures on my cubes. I loop on each ...
2
votes
0answers
83 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 ...
2
votes
0answers
103 views

False dots around circles in pdf export of libreoffice draw

When i draw a small circle in LibreOffice draw and export it to pdf i get some extra dots around the circles. Especially in the upper left and lower right outer corner of the circle. See example PDF ...
2
votes
0answers
178 views

libgdx box2d drawarc

I'm new to Libgdx and box2d. I needed to draw arc. I searched for a function finally I came up like below public void drawarc (float centerx, float centery,float radius, float anglefrom, float ...
2
votes
0answers
251 views

How to draw meshgrid or 2D quadtree (C , OpenCV)

may i know how to draw meshgrid or 2D quadtree (C++, OpenCV)? I just need to have defined points at each point of intersection within the quadtree for feedbacks or output, over an affected area. so ...
2
votes
0answers
343 views

Using Graph# for drawing graph

I want to draw a graph like the one i've attached here: I dont wanna re invent the wheel and start to draw circles and so on, so i googled for libraries and what i found is Graph#. Unfortunately ...
2
votes
0answers
528 views

DispatchDraw (Android)

I am overriding the dispatchDraw method in a custom sub view and am wondering if its possible - since the dispatchDraw method is called just prior to drawing - if I can cancel the draw from within ...
2
votes
0answers
2k views

iOS drawing to screen

I am working on drawing to the iOS screen using core graphics, and I managed to be able to draw on the screen, but from the tutorial I followed, the drawing screen covers everything else in my nib ...
2
votes
0answers
581 views

Draw on canvas on different screen resolutions and densities

I have the following situation: I want to draw an rectangle on a canvas and inside the rectangle a text of a certain size. How can I make the rectangle have 1/4 width of the screen on all screen ...
2
votes
0answers
173 views

Android: How to put a drawable on top of foreign applications?

after I installed the ScreenFilter App, I wondered how it displays a transparent rectangle on top of all applications. And now I want to know if it is possible to write an Service, wich put a ...
1
vote
0answers
48 views
+50

Unwanted Warp effect drawing text on path android

I do some tests on drawing text on path. I made a background picture by setting bitmap to canvas. Then, I draw text on path to canvas, rotated by matrix. I have to shorten the code, I will only post ...
1
vote
0answers
50 views

Android unable to edit partial of a path

public class Drawing extends View { private Paint mPaint, mBitmapPaint; private Bitmap mBitmap; private Canvas mCanvas; private Path mPath; private float mX, mY; private static final float ...
1
vote
0answers
102 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" ...
1
vote
0answers
146 views

Can I draw a border around a sprite image (ExtJS)?

I have a sprite image that i have added to a drawComponent instance. On click of that sprite, I want to draw a border around that image. var myImg=surface.add({ type: "image", ...
1
vote
0answers
125 views

C++ Qt Draw directly on screen

I need to create a simple app, that on given events create a few graphical elements on your screen. Basically I need to be able to write directly on top of all windows, with my application running in ...
1
vote
0answers
83 views

How to make a drawn rectangle name come from a variable

I know how to make buttons with a variable name like so: Dim newbuttonname As String = TextBox1.Text Dim createdButton = New Button() createdButton.Name = newbuttonname '... In a similar way, I ...
1
vote
0answers
112 views

How to start a Cocos2D Scene when pushing a UIViewController

I'm working on a project for iOS 5 and 6, iPad 3. My problem is that I need to draw something with Cocos2D in a scene, but it doesn't work. I'm starting to code in AppDelegate - setting a ...
1
vote
0answers
43 views

To locate points as initialization of GVF snakes

I want to detect several shapes around a reference shape. The centroids point of the reference shape is already determined. Basically the position of the surrounding shapes are almost fix in terms of ...
1
vote
0answers
318 views

Weird issue with OpenCV drawContours on android

I stumbled upon a weird problem with OpenCV drawContours on android. Sometimes, (without apparent pattern) function drawContours produces this: while it should obviously produce just the white ...
1
vote
0answers
187 views

Canvas, negative coordinates: Is it bad to draw paths that start off canvas, and continue on?

I only want to show a portion of a shape drawn on a canvas. My line is essentially this, and it works fine: ctx.fillRect( xPosition, rectHeight - offsetV , rectWidth, rectHeight); The second ...
1
vote
0answers
135 views

Objective-C: Draw a polygon on a sphere

i have the coordinates of a polygon in the 2D space [x,y], (eg. 5 points) and i would like to paint the same shape on a sphere/curved plane. Which is the best way to do it? e.g.how to implement a ...
1
vote
0answers
47 views

Android custom view blurry after targetSdkVersion update to 15

I am developing an application with a custom view. public class Disegno extends View { ... } Until the last update no problem. Now, to enter the Bluetooth management, I need to increase the ...
1
vote
0answers
203 views

(Corona SDK) Area of draw

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 ...
1
vote
0answers
308 views

Android, how get pixel color from Canvas?

I have a code like this: // ... public class MyImageView extends ImageView public MyImageView(Context context, String value /* some other params */) { super(context); // some ...
1
vote
0answers
61 views

annas throws NullPointerException

I'm using the annas library as a tool to visualize patterns among specific sequences of numbers in the Collatz Conjecture. I'm executing this code: GraphDrawer<BigInteger, ...
1
vote
0answers
70 views

Android - set draw style using Path

I'm using Path to draw polygon in Android. At moment I'm repeating draw with different style - first for polygon and second for border. I want to draw them at once. How to set dirrerent color for ...
1
vote
0answers
96 views

DrawLine doesn't work in android2.2, why?

When the following code is executing on emulator with android 2.3 it worked, but when running it on android 2.2 nothing appear ... why ? public class BubbleView extends View { Paint ...
1
vote
0answers
111 views

Pattern recognition to draw and match shaped

Can anyone kindly point me to any open source program that can draw and match images like the one in here see 1:10 to 4:20. Any clue will be much appreciated. thank you in advance.
1
vote
0answers
262 views

What does the Android drawing cache do in the background?

I have an application which requires me to draw paths to a canvas. As the number of paths builds up, the cumulative drawing action takes longer, so I thought I would improve speed by using the ...
1
vote
0answers
286 views

Thick or thin line according to the touch

I am using the core graphics for drawing in my application. I would like to draw a thick or thin line based on the touch speed ... I have wrote the following code for drawing the thick or thin line. ...
1
vote
0answers
124 views

Tiled CCSprite draw Assert error

I am trying to make a collision test between 2 sprites. One of them is retrieved from a tile map array using the code CCSprite *tiledsprite = [colLayer tileAt:ccp(pos1X,pos1Y)]; And that's the ...
1
vote
0answers
152 views

How to locate points in XY plane in android?

I need android+java codes to locate points on a xy-coordinate. So whenever I find some points in my main activity, user can go to another activity(i.e. graph activity) and see the points on the ...
1
vote
0answers
189 views

Draw SQL statement evaluation plan (tree)

I would like to draw a SQL evaluation plan, e.g. a tree where the leafs show that the result set is filtered with the given arguments and then the broad result set is reduced by only projecting ...
1
vote
0answers
137 views

Having trouble Fading OUT an image

I am trying to make an intro to a game i am making. so i got a nice little white and grey logo that i want to fade in and then fade out. I am using the AlphaComposite to fade it in and it works ...
1
vote
0answers
175 views

Draw path in the scroll view performance

I have a view inside UIScrollView which has CATiledLayer (mapView). Map can be scaled and scrolled. The method viewForZoomingInScrollView: of the UIScrollViewDelegate returns mapView. On top of ...
1
vote
0answers
152 views

GLPaint iPhone , How to set tranparent instead use color to draw on screeen?

Now, I plant to build application for multilayer , so I chose GLPaint demo for my application. Example : I had 2 layer white and black , the white layer in on the top of black layer. so I ...
1
vote
0answers
198 views

Trying to send mouse down and up events to a drawing canvas application/window in C++

I'm trying to write a simple program that will move the mouse cursor to an X,Y position on screen, send a mouse down event, move the cursor again, and release mouse to draw a line I've tried using ...
1
vote
0answers
890 views

ExtJS 4.0.7 Ext.Draw drag and resize

I add Ext.draw.Component inside grid cell as column renderer: renderer: function(_value){ var id = Ext.id(); Ext.Function.defer(function(){ ...
1
vote
0answers
399 views

Android: Curve drawing animation

I can draw a curve (e.g. cubic bezier) using Path class and on the other hand I can animate whole View, but is there any help from android 2.x framework when I want to animate a curve drawing?
1
vote
0answers
206 views

Android Canvas draw out values from large ArrayList

I have a big arraylist with 300 odd longitude/latitude pixel coordinates to draw onto my canvas. I have it working by iterating over the arraylist and calling drawCircle() on each lat/lon value.. ...
1
vote
0answers
275 views

j2me CustomItem disable traversal disable select

I've got a CustomItem which is embedded in a Form. This CustomItem simply draws some text, so I don't want to have this CustomItem clickable/selectable by the user. StringItems have a boolean ...
1
vote
0answers
890 views

OpenGL texture to erase

I am using OpenGl ES 1.1 on the iOS to create a draw/paint program. I am new to openGL but with all the information about I have managed to use a semi-trasnparent png texture to use as brush and draw ...
0
votes
0answers
5 views

A sprite (2d) when being draw in 3d is not animated?

I don't know if anyone here knows about the program Game Maker (yoyogames.com) but in my game I'm creating I am trying to draw a sprite (image) in 3d. The code works fine except for one issue; my ...
0
votes
0answers
22 views

JavaFX scaling adjusting position

After several questions I almost did what I wanted - here is one last step.(JavaFX correct scaling last question - this is related). As jewelsea recommended I added event to each point, but it didn't ...
0
votes
0answers
25 views

Draw a Path as animation on canvas

I have to ask again because no one answered my question before (my problem is NOT a duplicate of How to draw a path on an Android canvas with animation?). Please read it carefully and help me, if ...
0
votes
0answers
20 views

WPF - Is't possible to draw by pencil in the same visual

I have a canvas and want to draw on it by pencil. private void drawingSurface_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) { DrawPoint(pointClicked); } ...
0
votes
0answers
15 views

What container or panel is better to use for DRAWING using extjs 4?

The application I am trying to create is using the following: You select a file and it shows on the tree Drag that file from tree onto Simulation area, please refer to the picture below In this area ...
0
votes
0answers
9 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
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 ...

1 2 3 4 5 7