Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

33
votes
10answers
58k views

Convert Pixels to Points

I have a need to convert Pixels to Points in C#. I've seen some complicated explanations about the topic, but can't seem to locate a simple formula. Let's assume a standard 96dpi, how do I calulate ...
8
votes
2answers
209 views

How can I simulate repulsion between multiple point charges (ball bearings) in Mathematica?

I'm trying to write a program in Mathematica that will simulate the way charged ball bearings spread out when they are charged with like charges (they repel each other). My program so far keeps the ...
8
votes
9answers
3k views

Twips, pixels, and points, oh my!

or "How I learned to stop worrying and learned to love measurement systems" I wanted a central spot that I can refer to later to give me a quick low-down on various units of measurement used in ...
7
votes
4answers
1k views

Non-Rigid Body 2D Physics Engines in C++

I'm trying to experiment with 2D physics engines in C++. So far, it seems the most popular is Box2D. Unfortunately, Box2D is a rigid body physics engine and that's not really going to help me with ...
7
votes
11answers
1k views

What is the fastest way to find the center of an irregularly shaped polygon?

I need to find a point that is a visual center of an irregularly shaped polygon. By visual center, I mean a point that appears to be in the center of a large area of the polygon visually. The ...
6
votes
4answers
470 views

Android, How can I rotate an arrow (image) around a fixed point?

I have an arrow image that I want to rotate from 0 to 180 degree (like the needle in a meter.) One point of the arrow is fixed in middle and at bottom of the screen and head of arrow should move. ...
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
3answers
2k views

ELF binary entry point

why is the entry point in each ELF binary something starting with 0x80xxxxx? Why doesn't the program start at (virtual) address 0x0? When executed, program will start running from virtual address ...
6
votes
3answers
3k views

See if lat / long falls within a polygon using mysql

I have the created the table below CREATE TABLE geom (g GEOMETRY); and have inserted many rows, example below: INSERT INTO geom (g) VALUES(PolygonFromText('POLYGON(( 9.190586853 45.464518970, ...
5
votes
4answers
269 views

find if point lay on line segment

I have line segment defined by two points A(x1,y1,z1) and B(X2,Y2,Z2) and point p(x,y,z) how to know if this point lay on this line segment any algorithm , or sample code will be highly appreciated ...
5
votes
1answer
429 views

Points moving along a curve within MATLAB

I have managed to edit a piece of code that was given to me in order to show a point moving along a curve. I am trying to find a way to edit this in order to create two independent points moving ...
5
votes
5answers
425 views

Meaning of the word yield

Currently I'm reading "The Well-Grounded Rubyist" by David A. Black, and I stuck at 10.9 chapter (Enumerators and the next dimension of enumerability). My question is about yield method. What is the ...
5
votes
3answers
214 views

Draw a point a set distance away from a base point

I'm trying to figure out an algorithm for finding a random point a set distance away from a base point. So for example: This could just be basic maths and my brain not working yet (forgive me, ...
5
votes
5answers
3k views

Test if point is in some rectangle

I have a large collection of rectangles, all of the same size. I am generating random points that should not fall in these rectangles, so what I wish to do is test if the generated point lies in one ...
4
votes
3answers
142 views

Algorithm for generating a triangular mesh from a cloud of points

In some simulation program we generate object surfaces in terms of points, each point has 3D coordinates and the vector that represents the normal to the surface at that point. For visualization ...
4
votes
1answer
122 views

Why is Lua arithmetic is not equal to itself? [closed]

Possible Duplicate: What is a simple example of floating point/rounding error? When I execute the following Lua code: a = 5.6 b = 14 * 0.4 c = 11.2 / 2 d = 28 * 0.2 print( a == b ) print( ...
4
votes
2answers
444 views

Find point on Circle on Android

Everything seemed so plain and simple until I had to actually program it. What I've got I uploaded an image to explain it better. I have a circle and I know it's radius center point ...
4
votes
1answer
110 views

32-bit fixed point overflow

I'm doing some 'early computing' on a 32-bit Windows PC, and looking at the limits. Now, 2**32 is 4,294,967,296, and I find that 4294967290 + 5 is perfectly OK, and 4294967290 + 6 quite ...
4
votes
2answers
622 views

Determine if (x,y,z) point is inside a shape defined by an array of points

If I have an array of points (x,y,z) and am given a single point (x,y,z), what code do I use to determine if that point resides within the shape defined by the array? I am drawing a blank on this ...
4
votes
2answers
308 views

fixed point processing: what is the difference between uint16_t and uint_fast16_t?

I have a 16 bit fixed point processor and I want to do fixed point processing with it. I'm looking for the correct datatype to use for unsigned 16 bit ints.. My question is: what is the difference ...
4
votes
2answers
244 views

Calculating direction of rotation

If I have four points in 2D space, which are then rotated m degrees, what is the best/ most efficient way to determine the direction(clockwise/counter clockwise) of the rotation. I know which point ...
4
votes
6answers
5k views

Determine which side of a line a point lies

I've got a line through points (x1,y1) and (x2, y2). I'd like to see if point (x3, y3) lies to the "left" or "right" of said line. How would I do so?
4
votes
3answers
3k views

Delphi array initialization

I currently have this, and it sucks: type TpointArray = array [0..3] of Tpoint; class function rotationTable.offsets(pType, rotState, dir: integer): TpointArray; begin Result[0] := point(1, 1); ...
4
votes
10answers
759 views

Algorithm for spread-out 2D point distribution

In a 2D pixel array, I need an efficient algorithm that will select p% of pixels that are the most spread out. This can be done adaptively by selecting points, then repeatedly adjusting the positions ...
3
votes
5answers
84 views

Comma and (decimal) point: Do they need different handling?

Just something that i was wondering about. In Europe the comma us mostly used for decimals (like 20,001) but outside Europe the point is mostly used (like 20.001) How does c# handle this ? In case of ...
3
votes
3answers
124 views

Calculate Width and Height from 4 points of a polygon

I have four points which form a rectangle, and I am allowing the user to move any point and to rotate the rectangle by an angle (which rotates each point around the center point). It stays in ...
3
votes
2answers
470 views

OpenGL ES 2.0 — Best route for simple particle systems

I am attempting to create a very simplistic particle system for an Android application using OpenGL ES 2.0. Basically it is just for linear moving clouds in the background. My first thought before ...
3
votes
4answers
982 views

AS3 - Detecting if you clicked on an object without pressing the mouse button

Okay, in as3 when you click, the object on the highest layer will be clicked on. I want someone to press the space bar and have the objects on the screen to check to see if it is touching a point. So ...
3
votes
2answers
259 views

Moving lat/lon text columns into a 'point' type column

I've got a table in my MySQL database called 'house'. Within the house table, there are a couple of text columns called latitude and longitude. I've added a new column called 'coords', of type ...
3
votes
2answers
491 views

converting double values for making a Point type

I want to draw a curve (a diode curve) in a picturebox using imagefrom bitmap. I have a problem now and it is my point data are saved as Double and it is really important to keep the precesion. for ...
3
votes
4answers
171 views

C++ templates, efficient function for loading points

I would like to implement a function loading 1D/2D/3D points from file... The template parameter Point can be a 1D 2D 3D point. template <typename Point> void List <Point> ::load ( const ...
3
votes
1answer
504 views

How to set character used as decimal point in C#?

I'm making a quick program in C# and I have a problem with character used as decimal point. Right now, I need to use , but I want to be able to use . or even better, both. I'm looking ...
3
votes
3answers
168 views

How do I remove redundant vertices from list

I have list of vertices i.e List<Point>, which contains following points for square. 0,0 1,0 2,0 3,0 4,0 4,1 4,2 4,3 4,4 3,4 2,4 1,4 0,4 0,3 0,2 0,1 0,0 to draw a square I just ...
3
votes
8answers
483 views

What's the benefit of accepting floating point inaccuracy in c#

I've had this problem on my mind the last few days, and I'm struggling to phrase my question. However, I think I've nailed what I want to know. Why does c# accept the inaccuracy by using floating ...
3
votes
6answers
557 views

how to round off a floating number in python

Suppose I am having 8.8333333333333339 and I want to convert it to 8.84, how can I accomplish this in python ? round(8.8333333333333339 , 2) gives 8.8300000000000001 and not 8.84. I am new to python ...
3
votes
2answers
229 views

Line x and y n-intercept point / C++

Can someone please help me. I understand the equation of a line and how to solve for the zero intercept on paper, but I have trouble converting it to code. More specifically, I need to calculate the ...
3
votes
1answer
259 views

Solving a cubic to find nearest point on a curve to a point

Ok, I have a projectile that has its position defined such that: a.x = initialX + initialDX * time; a.y = initialY + initialDY * time + 0.5 * gravtiy * time^2; I want to be able to predict which ...
3
votes
1answer
1k views

Find the distance between two points in MYSQL. (using the Point Datatype)

Suppose I have a 2 column table like this: | user_id | int(11) | NO | UNI | NULL | | | utm | point | NO | MUL | NULL | | As you can see, it's ...
3
votes
3answers
1k views

Get polygons close to a lat,long in MySQL

does anyone know of a way to fetch all polgons in a MySQL db within a given distance from a point. The actual distance is not that important since it's calculated for each found polygon later, but it ...
3
votes
2answers
1k views

Creating an entry point in a C# DLL to call from WIX

Good Afternoon, I am trying to find a way to create an entry point for my C# dll. I am aware of how to call other dlls in c# but cannot find create one. I need this in order to call it in my WiX ...
3
votes
3answers
3k views

Find Coordinates for point on screen?

The thing is I have some graphics shown in a form, rectangle for example, and I want to capture when the point gets over thees fields. So I Thoght I try to find the corrrdinates for thees rectangles, ...
3
votes
1answer
113 views

Transforming Point object when using simple-xml

I am serializing a class using simple-xml (http://simple.sourceforge.net/) but when i try to use @Element on a Point object i get an error, how can i transform this Point object?
3
votes
6answers
1k views

Store 2D points for quick retrieval of those inside a rectangle

I have a large number of 2D points and I want to quickly get those that lie in a certain rectangle. Let's say a '.' is any point and 'X' is a point I want to find inside a rectangle which has 'T' as ...
3
votes
4answers
505 views

Query points epsilon-close to a cut plane in point cloud using the GPU

I am trying to solve the current problem using GPU capabilities: "given a point cloud P and an oriented plane described by a point and a normal (Pp, Np) return the points in the cloud which lye at a ...
2
votes
1answer
22 views

Finding orientation (Clockwise or anticlockwise) of the point with respect to some another point in x-y coordinate system

I have a problem and a solution both. What I want to know is that how to arrive to "that" solution. "That" solution is perfect and working fine for all possible combinations. This is a vector ...
2
votes
5answers
63 views

Add Point to Canvas

I'm coding in Microsoft Visual Studio 2010 Express for Windows Phone. I need to add a point onto a Canvas, but I can't... for (float x = x1; x < x2; x += dx) { Point poin = new Point(); ...
2
votes
4answers
105 views

Algorithm to find all points on a 2D grid some distance away from another point

The title says it all. I have some point on a 2D grid (x, y) and I need to find all points that are n distance away from that point. The way I'm measuring distance is by using the distance formula ...
2
votes
3answers
90 views

In Emacs, what is the command to move the pointer to the location of the last edit?

What lisp config command would bind this command, if it's not already bound? Also, If I wanted to bind C-x h, C-M-\, and , to a single C-M-\, how would this be done? Thanks in advance
2
votes
1answer
55 views

FindConnectionPoint returns E_NOINTERFACE

I am trying to build Connection Points in existing COM component. I derive the class from CCmdTarget and call MFC macros in class declaration and implementation as described in MSDN. Component is ...
2
votes
1answer
86 views

How do I find all the Points in a Path in Android?

Awhile back I asked a question to see if I was able to find a pair of specific points in a path; however, this time I want to know if there is a way to know all points in a path? (I couldn't find a ...

1 2 3 4 5