The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
28 views

Matching of images according to two points

I have pattern image with set of points and second tested image also with set of points. I know the coordinates x,y of points. The points have their names (numbers), I know the numbers of all points ...
1
vote
1answer
19 views

Find all the coordinates between two points (in 3d)

Point 1: 0, 0, 0 Point 2: 10, 10, 3 What I need is to figure out how to get all the coordinates in between the two points so for example it would output 0, 0, 0 0, 0, 1 0, 0, 2 0, 0, 3 0, 1, 0 0, ...
1
vote
2answers
28 views

How to know the points in a line given the starting and end points to traverse the line: any formula?

I'm using AS3. But it doesn't matter of what language am I using. I'm just finding logic on how to solve this problem. I've done creating a line, drawing with graphics class given the start and end ...
-2
votes
1answer
34 views

Calculating the Perimeter of a Polygon [closed]

I have a list of coordinates (points) consisting of a Double X and Double Y for each. How can I determine the perimeter (border) of these points so I can turn them into a Polygon? I have tried the ...
0
votes
1answer
16 views

Determining Vector points on a circle

I have a problem it is like trig and pre calc. We are given vector points for OA which is (6 0) and vector OB (-6 0) and OC (5 root11) and they are all points on a circle with a radius of 6. How ...
0
votes
0answers
22 views

Points reconstruction

I would like to ask about one idea that I had and I haven't figured out the solution, my idea is about: Having a set of GPS coordinates point, which are covered by a rectangle, how to connect those ...
0
votes
1answer
42 views

Adding a score in a quiz with php and mysql were answers heeft different points

I'm just starting to learn php. I have a quiz, were every correct answer gets different points. I looked on the internet, but up till now I coouldn't find the solution. This SO question helped me, but ...
-2
votes
0answers
29 views

Minimum degree of a polynomial passing through points [closed]

If P(x) is a polynomial such that P(a1)=b1, P(a2)=b2, ... , P(ak)=bk, how can I find the polynomial which has minimum degree and for whom the relations above are true?
0
votes
1answer
29 views

Draw points and lines in gnuplot

How is it possible with gnuplot to plot both isolated points and lines for the same input file? I mean, once I have a file data.dat of this kind that defines two lines 1-2 and 3-4 x1 y1 x2 y2 x3 ...
0
votes
1answer
48 views

How to find point along arc in 3D given center, start & end points + radius + center angle?

If I have three points, let's say: start: (14.5, 10.1, 2.8) end: (-12.3, 6.4, 7.7) center: (0, 0, 0) And the following additional information that has been determined: Radius: 15 Center Angle: ...
0
votes
4answers
90 views

Distance between two points without using the square root

Is it possible to calculate the distance between two points without having to use the math.h library? I know that, using the math.h library, it would have to be something among these lines (Euclidean ...
0
votes
1answer
42 views

How to get the average number of data points?

Here is my data file : 12100 4592 14400 5000 16900 6443 12100 4479 14400 5393 16900 5969 12100 4605 14400 5353 16900 6268 I would like to have the ...
0
votes
0answers
7 views

How to put each row of a matrix in between 2 boundaries?

I have a 274x36 matrix (D1) and 2 vectors (269x1 each), one with start (start1) points, and the other one with end points (end1). I' want to take each row of the matrix and put it in between each ...
0
votes
0answers
10 views

Parsing KML and Mapping Points

Im trying to parse coordinates and map them using Java for Android. My points are located in an SQL database and are lat, lng. I use an Async activity to access them through a php. link. There seems ...
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
1answer
40 views

Overlay SpatialPointsDataFrame and a SpatialPolygonsDataFrame when the number of rows is unequal [closed]

I am wondering if this is possible in R. I have a SpatialPointsDataFrame, which includes points that have attributes assigned to them. I want to overlay this SpatialPointsDataFrame with a ...
0
votes
0answers
21 views

What examples are there for the “closest pair of points”?

I'm looking for a motivational example for the "closest pair of points problem" http://en.wikipedia.org/wiki/Closest_pair_of_points_problem In itself it's a pretty self explanatory problem, but I ...
1
vote
1answer
38 views

Is there a Backbone-way to format numbers in the view?

Is there a special backbone-Way to format numbers? I want to display them with two decimal points, like "2" into "2.00". Should this be done in the tepmlate? This is one example from the template: ...
0
votes
1answer
47 views

Overlapping data points and spacing

I have a set of data that I plot but the points on the graphs are so closed to each other that you can't see them well nd neither their values because even when I zoom in I can't get to them all. Now ...
-3
votes
1answer
43 views

Changing size of points in an excel chart [closed]

I want to change the size of a point in my excel chart generated in C# using interop. The points are just a little to big and I have to reduce them. Thanks
0
votes
1answer
31 views

JomSocial User Points Required

I am trying to make the UserPoints system in JomSocial 2.8 work like credits. I want to REQUIRE a certain amount of points in order to use a rule. Right now they have Give and Deduct points, but no ...
0
votes
0answers
46 views

Sliding point according to mouse movement in JavaScript

I have a problem about mouse movements relating to HTML and JavaScript. I have 2 divs which hold a point and 3 buttons. I try to make the point slide when the mouse enter to the points' div and ...
1
vote
3answers
107 views

Removing Points C++

I have N number of points (x_N,y_N,z_N) in a point cloud. The point cloud forms the shape of a spherical shaped object. My problem is that I have points in my cloud that stick out noticeably along ...
-3
votes
1answer
105 views

Caluclating distance between two points on a flat plane? (php) [closed]

Ok, guys, stupid 3rd grade question for you: How do you calculate the distance between two points on a flat surface? I have been going through the Google_Results and it seems everything i find ...
1
vote
1answer
142 views

Draw triangle VB.NET

Dear forum members I have to make a triangle class. My problem is that I the public overrides sub teken does not work IN MY CLASS FORM (FUNCTION RANDOMSTRAAL) Private Function RandomStraal() As ...
1
vote
1answer
139 views

Drawing Arc using two Points as Reference

I already searched over stackoverflow for similar questions, and tried to implement using some suggestions from other answers like this one: Point p1 = prop.getDisplayPoint(); Point p2 = ...
0
votes
0answers
146 views

Use of Point Sprites in Android OpenGL ES 2.0

I've seen a few discussions regarding 'Point Sprites vs Textured Quad Sprites' and the like. However, one thing confuses me, if I understand correctly, aren't the size of point sprites limited (By a ...
2
votes
2answers
169 views

Matlab: Find area enclosed by points (x,y)

I've got 8 points that create the outline of an eight-sided polygon in two-dimensional space. I need to find the area enclosed be these points, but how do I do that using matlab? The eight points ...
0
votes
0answers
31 views

How to return a set of points from a web service?

I want to return a set of points from a function I tried using the following code to return a set of points using arraylist. But I get an exception when I test the service: ...
0
votes
0answers
99 views

svg-android issue get points of svg path

I'm using svg-android to retrieve the points from a plain svg-path. I pass the String into the SVGParser.parsePath(String, boolean) method. Then I create a PathMeasure object and read the coordinates ...
0
votes
0answers
77 views

Converting 2D cuboid schema to 3D preview in WPF

My project in WPF is a creator of 3D BOX for user, who specify dimensions of any box. I have 5 rectangles made by Canvas (1 base and 4 walls) from which I am going to make a cuboid. Sizes of these ...
2
votes
1answer
52 views

Sorting algorithm for multiple lists of 2D points

I need an algorithm to sort multiple lists of points in a 2D plane so that corresponding points each list have minimized distance between them. i.e. for two lists of equal length, the first point of ...
0
votes
1answer
44 views

Whats the easiest way to change several values at predetermined locations in a 2D vector?

Ok so I have a 2d vector of chars that I call a grid. Lets just say its 70 x 30. When the grid is created, it automatically fills each position with 'x' I have a function that displays the grid. So I ...
-1
votes
3answers
160 views

Connecting points with lines to create a line graph

Hello I am fairly new to java and have been stuck on this problem for awhile so hopefully someone will be able to save me. Basically I am creating a program that can graph an equation and right now ...
7
votes
3answers
171 views

Terrain curve to array of points

In my 2D game I'm using graphic tools to create nice, smooth terrain represented by black color: Simple algorithm written in java looks for black color every 15 pixels, creating following set of ...
0
votes
1answer
37 views

adding users points to db

I did search this but can't find any thing or I'm blind. I'm trying to add points for ever users I use update, but it keeps changing the points: for exp: $sql = mysql_query("UPDATE users SET ...
0
votes
1answer
120 views

WebGL - Plotting approximately 60 million points on a map, in real time

I haven't started learning WebGL yet, but I would like to know its capabilities first. When I downloaded and modified the following WebGL example: ...
0
votes
0answers
30 views

Display a simple - but huge - set of 3D points using SceneJS

I'm trying to use the SceneJS library to display a set of over 65000 3D points. Adding for each point a tiny "cube" node to the scene is of course very inefficient when it comes to rotating the view! ...
2
votes
1answer
53 views

Is it possible to use more than two characters as points in a plot

I am trying to plot points in a plot where each dot is represented by a number. However, it seems that the points can only be one character long, as you can see in the plot produced by the code below: ...
1
vote
1answer
81 views

I want to set the color of points that represent pixels inside a list

I have a list that contains points (x,y) from an image ( I save pixel coordinates in a list in the form of x and y) the thing I want to do is set the color of these pixels. I created a new class ...
-1
votes
1answer
73 views

How can I draw float coordenates in a 500x500 picturebox?

I have this doubt, suddenly something more mathematical, for example I have the following geographical coordinates: (4.80549328, -74.14376602) (4.80755020, -74.14195687) (4.80011076, -74.13276181) ...
1
vote
0answers
66 views

How should I setup my mySQL tables for this simple php points system?

Hello I am trying to figure out the best way to setup my two mysql tables for a simple points system? What I have: 1 - users table with id (unique),name,email,etc 1 - points table with id (auto ...
0
votes
0answers
34 views

Assigning colors to categories in R [duplicate]

I am trying to assign two colors to two categories in my data. They are two different species. I would like one species to be blue and the other red. If I leave it at col=species, it makes them ...
-1
votes
2answers
85 views

Distributing points (integers) in C#

Basically I am trying to make a points system, everything is done except from distributing points. For example, I have an array that stores the points (Key is the players ID): array[0] = 0 array[1] ...
0
votes
0answers
78 views

CUDA - Splitting points by distance in a parallel fashion

I'm looking to sort an array of points into multiple arrays by distance between each point. Below is the code I used to do it in Java, public Point[] GetPointsCloseTo(Point p, Point[] arr, int ...
0
votes
0answers
57 views

ASP.Net Chart Points Count 0 After Grouping

Using ASP.NET and C#. I can get a count of data points in a chart by using Series[0].Points.Count. but if I then group the series using DataManipulator and try to get the count it is always 0. I'm ...
0
votes
1answer
152 views

Android How to get all points between two given points?

I need your help, how can I get all points (x,y) of a line between two screen coordinates ( start(x,y) / end(x,y) ) in an ArrayList?
0
votes
1answer
134 views

How to find coordinates (as Natural numbers) of two points that form a tangent line for a circle limited by the x axis?

Two points P and Q with coordinates (Px, Py) and (Qx, Qy) satisfy the following properties: The coordinates Px, Py, Qx, and Qy are integers. Px = −Qx. The line PQ is tangent to a circle with center ...
0
votes
2answers
174 views

List of point into smooth curve (airfoil shape)

I have a list of 200 points I garnered from a graph digitization software I would like to transform into a smooth curve and then into Solidworks. My points form an ellipse (airfoil shape to be more ...
0
votes
1answer
73 views

Map points from one 2D plane to another

Given a point on a plane A, I want to be able to map to its corresponding point on plane B. I have a set of N corresponding pairs of reference points between the two planes, however, the overall ...

1 2 3 4 5 6