Point is a fundamental geometry type.

learn more… | top users | synonyms

-1
votes
0answers
8 views

Finding a simple template within a 3D point cloud [closed]

I want to find a template - defined by 5 coplanar, non-collinear points - within a point cloud of say 100 3D points, in the most efficient way possible. I know there is the ICP (Iterative Closest ...
0
votes
1answer
20 views

Matlab: I have two points in a 3D plot and i want to connect them with a line

I have a 3D plot and two points coordinates A(0,0,0) and B(13,-11,19). I just want to plot a visible line connecting this two points ... I tried plot3(0,0,0, 13,-11,19) and other stuff but everything ...
1
vote
1answer
40 views

Find the point furthest away from n other points

I am trying to create an algorithm for 'fleeing' and would like to first find points which are 'safe'. That is to say, points where they are relatively distant from other points. This is 2D (not that ...
-1
votes
1answer
13 views

What do I need to provide, for someone to point their domain to my host? [closed]

I have a host and my own domain, lets say: www.mysite.com, on this host I have created a site: sub.mysite.com Another person owns www.domain.com and I need him to point the domain to sub.mysite.com, ...
0
votes
1answer
25 views

Convert Points to textual representation

Let's say I have two Points new Point(80,40); new Point(40,80); And I want to convert them to end up as one string, a String representation. 01 10 Where 1 is a point, and 0 is empty space. You ...
3
votes
2answers
37 views

Two ways to get value of Point object?

How come you can get the x and y values from a java.awt.Point class by using a method and referencing the value? Point p = new Point(10,20); int x0 = p.getX(); int y0 = p.getY(); int x1 = p.x; int ...
0
votes
1answer
18 views

Find Nearest Element with jQuery

How can you finds the elements in a page that are closest to a particular point, based on pixel dimensions?? Do you have an idea?
1
vote
1answer
22 views

mysql query points within polygon - no results

I'm pretty sure that I'm doing multiple things wrong here but I'm not sure what... The table (minus a few fields): CREATE TABLE IF NOT EXISTS `stuff` ( `id` int(10) unsigned NOT NULL ...
0
votes
1answer
38 views

Quaternion and the closest point on the sphere

I usung quaternion to rotate the sphere in 3d space. Sphere is placed at p = (0, 0, 0) The question is: how i can find the point and/or face closest to camera.
0
votes
0answers
11 views

Open Layers : how to edit the popup in mobile-sencha.html

I started to work with the Open Layers library for drawing some maps http://openlayers.org/. More specifically, I am interested in the mobile-sencha.html example that can be found here : ...
0
votes
2answers
44 views

.get(key) wont give me my value in a Hashmap<Point, Integer>

I'm a bit new to programming and wanted to try making a more difficult box style 2d game for learning then my previous game. Alas I'm still new so please dumb down your answer if possible. I've been ...
-2
votes
1answer
45 views

spatial distribution of points, R

What would be an easy way to generate a 3 different spatial distribution of points (N = 20 points) using R. For example, 1) random, 2) uniform, and 3) clustered on the same space (50 x 50 grid)?
0
votes
5answers
59 views

How to compare floating point numbers and integers

I am trying to create a program that checks if an equation creates a whole number answer but the equation creates floating point numbers that won't compare to integers. When it gets to the first ...
-1
votes
1answer
48 views

Excessive memory usage in C++ OpenCV mouse point code [closed]

Hello everyone and thank you for many useful topics on stackoverflow –they helped me a lot since I’m very inexperienced in programming. As part of a project for university I’m trying to implement a ...
0
votes
0answers
25 views

White screen with Exclamation Point Grey in Flash Player AS3

I work in a digital signage company and lately I've been encountering this error which appears a white screen with an exclamation point in the middle. After some research, many people say that this ...
3
votes
1answer
109 views

companion object as factory in scala

I am just starting out with Scala, and working on some tutorials. I came across companion object, and using them as factory. I tried several things out. However I am not getting the following to work ...
0
votes
0answers
19 views

converting coordinate space ios View

I have a UITableView with a few UITextField sub views. I was to get the coordinates of the UITextField from -(void)textFieldDidBeginEditing:(UITextField *)textField. I've tried a bunch of the methods ...
0
votes
1answer
37 views

Calculate change of mouse movement in angle

In my C# application , i want to restrict the horizontal and vertical scrolling by computing the mouse movement angle difference. Grater than 60 degree angle need to be tracked as vertical scroll. I ...
0
votes
3answers
38 views

Open GL draw static Points

Is it posible to draw a static Point-Cloud in Open-GL glBegin(GL_POINTS); for(float x = -1; x < 1; x += 0.1) { for(float y = -1; y < 1; y += 0.1) { for(float z = -1; z < ...
0
votes
2answers
60 views

Rotating a point around a center point

I am aware that there are a few questions about points and rotation out here, and I feel like Im almost there. I youst need a little push. I Have a shape with 6 points like this one. I want to ...
0
votes
1answer
12 views

Pointtype command for gnuplot

I'm having trouble using the pointtype command on gnuplot. I've tried several ways such as: set pt 5 set pointtype 5 plot " " w pt 5 plot " " w pointtype 5 And for some reason nothing seems to ...
2
votes
1answer
41 views

Computing E becomes chaotic at limits 10 ** 12 in Python?

I have made a program that computes the base of natural logarithms known as e in mathematics using the following well known formula: e = (1 + 1.0/n) ** n the code is: def e_formula(lim): n = ...
-1
votes
0answers
10 views

How to create point in JMapFrame using geotools

I am new to coding. Can any one please send me java program for creating point, line or polygon features in JMapFrame using Geotools. Thanks in Advance. Regards, N.Venky
0
votes
1answer
33 views

Vector.AngleBetween in WinRT

Currently i am converting a Desktop application to Windows 8 application. To get a angle between 2 points in desktop application they use Vector.AngleBetween(vector1, vector2). Using "Point" i got the ...
-1
votes
3answers
43 views

Segment Length from an arrayList of Points --Java

I am trying to calculate line segments (lengths) from an arrayList that I have created. This is in JAVA. Everything works how I want it to, however I get this message: "Exception in thread "main" ...
0
votes
0answers
51 views

SQL server database Column format decimal use with comma

I have a database (SQL) and have a column format decimal (18,2) When I was write 0,02 textbox on form and click save button wrong to me "Error converting data type varchar to numeric." this message. ...
1
vote
0answers
46 views

Check if point is inside a rotated rectangle (with different rectangle origins)

How can I check if a point is inside a rotaded rectangle when the rectangle can have different origins? This is basically what i'm using now: struct Point { float x; float y; }; struct ...
-1
votes
0answers
41 views

How can I find the collision points of two Polygons in slick2d?

I'm making a top down ship game in slick2d. I'm trying to make collision physic for the ships with polygons. if(ship.polygon.intersects(ship2.polygon)){ } How can I find the collision ...
0
votes
2answers
78 views

Python: checking if point is inside a polygon

I have a class describing a Point (has 2 coordinates x and y) and a class describing a Polygon which has a list of Points which correspond to corners (self.corners) I need to check if a Point is in a ...
1
vote
1answer
38 views

ECDSA: How to get y coordinate from uncompressing x using openssl

What I am trying to do with ECDSA is take an x "compressed" coordinate and a y "bit" from values taken from external ECDSA hardware (it's really a public key) and then trying to recover the y ...
1
vote
1answer
61 views

Compare two colors in an image + Which is best to draw 3D points

I know that it possible using the GetPixel() but is it possible to let the sw to decide which one is lighter or darker than the other. I'm going to use a depthMap Image & I want to ...
0
votes
1answer
43 views

convert shape file to raster in matlab

I would like to convert a shape file to raster grid using matlab. First I tried to do it in Python but I have faced some difficulties and my superior recommended me to use MATLAB. I use matlab ...
0
votes
2answers
41 views

Determine if the mouse made a complete circle around a point

I have a game I am working on. I am trying to detect if the mouse has made a complete 360 degree rotation around a certain point. I am completely struggling with the logic though. The full rotation ...
0
votes
1answer
70 views

Plot Point in ZedGraph C#?

Well this is my question, I have a ZedGraph, now I want to put some points in the ZedGraph, I have my simple class Point wich it have, the X & Y values, fist I check this question, but not ...
0
votes
5answers
67 views

Why does this code cause a NullPointerException?

I made a code with that iterates through a single dimensional array of objects of type Point from java.awt.Point. I tried to fill x and y instance variables of each Point in the array with essentially ...
1
vote
0answers
43 views

Returns point(0, 0) for getting screen position of a LatLng object

My code: Point p1 = supportMapFragment .getMap() .getProjection() .toScreenLocation(new LatLng(20,20)); The problem is p1 returns like: Point(0, 0). There ...
0
votes
1answer
49 views

Procedure to know how many points are there in the matlab plot

I am wondering if there is any way in matlab which let me to know number of points in the plot ?! In other words, if I have plot(x,y,'*'); and I want to know how many points * is there in this plot. ...
0
votes
0answers
28 views

Creating 3D line features in ArcGIS 10

Is there a way, in ArcGIS, to create a 3D line feature by connecting points in a 3D point feature class? The version of ArcGIS in question is ArcGIS 10.0, in case this helps.
1
vote
1answer
105 views

Distance of point feature to nearest polygon in R

I working on a project at the moment, where I have a point feature -- the point feature includes a 142 points -- and multiple polygon (around 10). I want to calculate the distance between every single ...
1
vote
2answers
67 views

Junction point in image skeleton

What is the meaning of a junction point in image skeleton ? I am using opencv and c++ to develop a code source to detect the main local junction point in the image .Many thanks in advace .
0
votes
0answers
24 views

Ubercharts add point

it seems that nobody is using Ubercharts nowadays, i think its awesome bcs i can code all my code in java. Ubercharts is a java way of highcharts. my problem today is dat i cant seem to find the way ...
0
votes
1answer
70 views

plot points as a trajectory of tracking from video

I think this is very easy question for some of you , but I do not have any experience in Matlab ! I am tracking a point in all the frames in video. now I want to plot this points to show the ...
0
votes
1answer
40 views

Java/ contain/equal point class

I have a list of points, and I want to use the contain method. The problem is That I have the next List: {(1,2), (2,3), (2,4)}, but when I asked list.contain((2,3)), it gives me false. I use ...
0
votes
1answer
39 views

opengl selecting area on model

I need some help in surface area selection on a 3d model rendered in opengl by picking points through mouse. I know how to get a point in world coordinate but cant find a way to select an area. Later ...
0
votes
1answer
48 views

2D Point in triangle test implemented on Android

I want to determine if a 2D point is inside a triangle using pure java on the Android platform. I reserve a special bonus for using the same representation for 2D points that is used in Android for ...
0
votes
1answer
145 views

Rotating body around a point Box2D Cocos2d

I have a problem when rotating a triangular image like a radar detecting enemies. b2Body *body; CCSprite *actor; if (b->GetType() == b2_kinematicBody && myActor == [loader ...
0
votes
0answers
24 views

Calling WSASocket from DllMain lead to hand-up

I need to destroy some object when some my dll is unloaded. This object contains thread, that sometimes call WSASocket function (for reconnect connection). So I call destructor from DllMain in ...
0
votes
0answers
22 views

Get Color of certain point on moving 2D background

I am trying to build a simple 2D-game where a skier has to move along in a certain "corridor". Screenshot of the game Therefore I created a seamless background and move it along the screen from ...
1
vote
1answer
67 views

How could I control location of external form relative to a pictureBox on another form?

I'm developing a windows application that is image viewer. This program contain main form to load picture and another form to load swf file into it dynamically . work of my application is like this : ...
0
votes
1answer
49 views

How fast is geom.Point for pure data-storage?

I'm going to need to store a large number of x/y-position pairs. Now I'm unsure about whether or not to use Flashs geom.Point-class for these, since performance will be important for my application, ...

1 2 3 4 5 13