Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

36
votes
10answers
18k views

Circle line collision detection

I have a line from A to B and a circle positioned at C with the radius R. This is in two dimensions. Which is a good algorithm to use to check whether the line intersects the circle? And at what ...
25
votes
9answers
10k views

Xcode duplicate/delete line

Coming from Eclipse and having been used to duplicate lines all the time, it's pretty strange finding out that Xcode has none such function. Or does it? I know it's possible to change the system wide ...
21
votes
2answers
377 views

Why is drawing a line less than 1.5 pixels thick twice as slow as drawing a line 10 pixels thick?

I'm just playing around with FireMonkey to see if graphical painting is any faster than GDI or Graphics32 (my library of choice at the moment). To see how fast it is, I've performed some tests, but I ...
18
votes
5answers
4k views

C# Reading a File Line By Line

I am trying to read some text files, where each line needs to be processed. At the moment I am just using a StreamReader, and then reading each line individually. I am wondering whether there is a ...
16
votes
7answers
16k views

OpenGL ES iPhone - drawing anti aliased lines

Normally, you'd use something like: glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glEnable(GL_BLEND); glEnable(GL_LINE_SMOOTH); glLineWidth(2.0f); glVertexPointer(2, GL_FLOAT, 0, points); ...
13
votes
8answers
3k views

How do I render thick 2D lines as polygons?

I have a path made up of a list of 2D points. I want to turn these into a strip of triangles in order to render a textured line with a specified thickness (and other such things). So essentially the ...
12
votes
10answers
3k views

Add centered text to the middle of a <hr/>-like line

I'm wondering what options one has in xhtml 1.0 strict to create a line on both sides of text like-so: Section one ----------------------- Next section ----------------------- Section two I've ...
12
votes
5answers
2k views

Is there a C++ iterator that can iterate over a file line by line?

I would like to get an istream_iterator-style iterator that returns each line of the file as a string rather than each word. Is this possible?
11
votes
4answers
280 views

A* heuristic to create Bresenham lines

From what I understand about A* heuristics and how the Bresenham algorithm works, this may not be be possible since only the current state and goal state are passed to the heuristic function. But ...
11
votes
5answers
7k views

How to find the intersection point between a line and a rectangle?

I have a line that goes from points A to B; I have (x,y) of both points. I also have a rectangle that's centered at B and the width and height of the rectangle. I need to find the point in the line ...
10
votes
5answers
10k views

Finding Line Beginning using Regular expression in Notepad++

Finding Line Beginning using Regular expression in Notepad++ (Sorry if this is a newbie question) I want to strip a 4000-line HTML file from all the jQuery "done" stuff, e.g.: <DIV class=menu ...
10
votes
3answers
3k views

count lines in a PHP project

I'm just curious. Do you know any tool which can count all the code lines from a PHP project? Many thx!
8
votes
1answer
99 views

display line number in textarea

I want to display the line number in a textarea like this is possible in jqeury: i looked for answers on SO but i can't find what i want Display current line and column number for a textarea ...
8
votes
4answers
165 views

When does a new __LINE__ start?

I do not understand the output of the following program: #include <iostream> #define FOO std::cout << __LINE__ << ' ' \ << __LINE__ << '\n'; int ...
8
votes
6answers
2k views

Perl: How do I remove the first line of a file without reading and copying whole file

I do have a whole bunch of files in a directory and from every file I want to remove the first line (including carriage return). I can read the whole file into an array of strings and write all but ...
8
votes
3answers
8k views

ANDROID: Line Break in XML formatting?

when editing a String in XML I need to add line breaks. And I wanted to ask what is the RIGHT form when programming for android? Because <br> works but ECLIPSE marks the area as problematic. If ...
8
votes
5answers
5k views

Javascript Error Line Numbers

I have a jsp with lots of javascript code. Whenever there is a javascript error on the page, shown in the status bar of the IE browser, the line number reported to contain the error, does not match ...
8
votes
3answers
10k views

How to draw a gradient line (fading in/out) with Core Graphics/iPhone?

I know how to draw a simple line: CGContextSetRGBStrokeColor(context, 1.0, 1.0, 1.0, 1.0); CGContextMoveToPoint(context, x, y); CGContextAddLineToPoint(context, x2, y2); CGContextStrokePath(context); ...
7
votes
1answer
150 views

How can I check if two lines are identical in vim?

I know I can select the lines and use something like :w ! sort | uniq -c Is there a better solution?
7
votes
5answers
4k views

Get rid of the line under TabWidget

I've got simple tab activity with next layout: <TabWidget android:id="@android:id/tabs" android:layout_width="fill_parent" android:layout_height="wrap_content" ...
6
votes
2answers
215 views

How can I replace the first line of a large file in Java?

I would like to blank out the first line of a text file in Java. This file is several gigabytes and I do not want to do a copy. Using the suggestion from this post, I am attempting to do so using ...
6
votes
2answers
117 views

Recall Matlab History with Multiline-Command

I have a command in the command line of Matlab which is longer than just one line but when recalling it by pressing arrow-up, I just can go through every single line of the multiline-code... Is there ...
6
votes
4answers
2k views

Java- Intersection point of a Polygon and Line

Is there any function that will give me the intersection point of a Polygon and Line2D? I have a Polygon and a line segment that I know intersect I want the actual value of the intersection point ...
6
votes
2answers
344 views

Vim, how to map two tasks under one shortcut key?

i like to have line numbers ON in Vim but sometimes line numbers are annoying. I have shortcuts set in .vimrc: map <c-F12> :set nonumber<ENTER> map <c-F11> :set number<ENTER> ...
6
votes
2answers
459 views

How to equidistant resample a line (or curve)?

I have a line l_1 given with a point series p_1,...,p_n. I now want a new line l_2 having k points: q_1,...,q_k. But for all i \in {1,...,k-1}: abs( q_i - q_i+1 ) = const, meaning the segments of l_2 ...
6
votes
1answer
74 views

How can I discover if a program is running from command line or from web?

I have a python script and I wanna know if the request is from web or from command line. How can I do this? Thanks
6
votes
2answers
3k views

How can I draw a vertical line in an Activity when a button is pressed?

I want to draw a straight vertical line in my Android activity when a button is pressed. Please explain how I can draw the line with a position & length I want. Elaboration: I have a linear ...
6
votes
7answers
163 views

How to know what function called another

I wanna know if there is any way to know where the function currently in execution was called, this is, in what file and line. I'm using C language, and I'm looking for something similar to ...
6
votes
2answers
1k views

How do the MATLAB functions plot and line differ?

What's the difference between the functions plot and line in MATLAB? Are they doing the same thing?
6
votes
23answers
2k views

When writing code do you wrap text or not? [closed]

I know a lot of people have their ide wrap lines in the code editor but i've always been of the thought that one statement = one line. Thoughts?
5
votes
2answers
63 views

How to get max lines of Text

How to get the maximum number of lines that can be written in TextView? I tried this: DisplayMetrics metrics = new DisplayMetrics (); getWindowManager (). getDefaultDisplay (). getMetrics (metrics); ...
5
votes
1answer
153 views

Richtextbox draw an rtf line

I want to add a horizontal line to the RichTextBox as a delimiter of my text. I've found some examples of RTF code implementing a line and tried them in that way: rtbResFile.Rtf = @"{\rtf1{\pard some ...
5
votes
1answer
85 views

Why is Graphics.DrawLine drawing a wedge shape?

I am trying to draw a bus route as a simple sequence of lines. Nothing fancy. But instead of lines, I'm getting wedges. Initially I was fine with this, because the wedges sortof look like arrows and ...
5
votes
3answers
153 views

How do you access ARGV in Mathematica?

I'd like to write command line scripts in Mathematica, but I can't seem to find an Argv[i_Integer] like function. (The docs are FANTASTIC otherwise.)
5
votes
1answer
173 views

Hyperbolic Tessellations of a Pentagon in Mathematica

I want to implement this in Mathematica: I realize I can use ParametricPlot to get the lines, and then use the Mesh option to fill in the colors. Can anyone tell me what a general formula for the ...
5
votes
1answer
422 views

Java - Does subpixel line accuracy require an AffineTransform?

I've never worked with Java drawing methods before, so I decided to dive in and create an analog clock as a PoC. In addition to the hands, I draw a clock face that includes tick marks for ...
5
votes
1answer
210 views

How to check if any point (or part) of a line is inside or touches a rectangle

I want to check if a line (or any point of a line) is within a rectangle or intersects a rectangle. I have (x0, y0) and (x1, y1) as starting and ending points of a line. Also, (ax,ay) and (bx,by) as ...
5
votes
5answers
959 views

How can I draw smoothed/rounded/curved line graphs? (C#)

I'm measuring some system performance data to store it in a database. From those data points I'm drawing line graphs over time. In their nature, those data points are a bit noisy, ie. every single ...
5
votes
4answers
284 views

C++, command line args not being parsed properly

I have a program: int _tmain(int argc, char* argv[]) { std::cout << "STARTING" << std::endl; std::cout << "Num inputs: " << argc << std::endl; for(int i = 0; i ...
5
votes
4answers
1k views

What do you use for drawing line charts using C# and WPF?

I need to draw charts using c# and WPF. I did some work using Visifire. According to you, what is the best way to draw charts in C# and WPF ? Thanks, Benoit I tried Dynamic Data Display. It works ...
5
votes
2answers
485 views

How does eclipse figure if a file has unix or dos-style line endings?

I am looking at some Java Code in Eclipse on Windows. The line termination characters (DOS-style) do not display properly (empty lines everywhere..). The Problem is that the Code is from a Windows ...
5
votes
4answers
315 views

How do cache lines work?

I understand that the processor brings data into the cache via cache lines, which - for instance, on my atom processor - bring in about 64 bytes at a time, whatever the size of the actual data being ...
5
votes
1answer
451 views

How To Slice a Simple Polygon with a Line

I have a simple polygon (convex or concave, but no holes) that I need to slice into parts with a line segment. I'm not sure how to actually determine how many polygons result after the slice, or how ...
5
votes
7answers
5k views

Get each line from textarea

<textarea> put returns between paragraphs for linebreak add 2 spaces at end indent code by 4 spaces quote by placing > at start of line </textarea> $text = value from this textarea; ...
5
votes
8answers
3k views

Finding number of lines in an html textarea

I'm writing a mobile web application where scrollbars are not displayed on the device's browser. Due to this, I'm trying to dynamically modify the height of the textarea to make it bigger, however I ...
5
votes
1answer
1k views

Draw arrow on line algorithm

Does anyone have an algorithm for drawing an arrow in the middle of a given line. I have searched for google but haven't found any good implementation. P.S. I really don't mind the language, but it ...
5
votes
2answers
8k views

Android vertical line xml

I'm trying to figure out how to define a verical line (1px thick) to be used as a drawable. to make a horizontal one, it's pretty straightforward: <shape ...
5
votes
10answers
681 views

How do I delete the first line in a file?

I can't search for a particular string, since they're all very similar, but I'd like something simple to chop out the first 4 lines in a file. They're all variable length too. I've had a a think ...
5
votes
3answers
4k views

MATLAB: Drawing a line over a black and white image

What is the best way to draw a line over a black and white (binary) image in MATLAB, provided the start and end coordinates are known? Please note, I am not trying to add an annotation line, I would ...
5
votes
13answers
6k views

Reading specific lines only (Python)

I'm using a for loop to read a file, but I only want to read specific lines, say line #26 and #30. Is there any built-in feature to achieve this? Thanks

1 2 3 4 5 18