Tagged Questions
2
votes
0answers
69 views
Java - Creating Dynamic Vertex + Edges (Dijkstra Algorithm)
I'm trying to generate Vertex + edges dynamically, but I'm getting errors when I try to compute the shortest path between coordinates.
TestDijkstra3.java:
package maze_drawing;
import ...
0
votes
0answers
66 views
Android OpenGL ES 1 - Polygon Edge
I am drawing a an arrow in using opengl es 1.0. I drew the arrow using a rectangle as the shaft and a pyramid as the tip. When the arrow is rotating from certain angles the shaft can be seen through ...
0
votes
0answers
54 views
Tiled Map renders correctly on PC but not on Android
I have this code for rendering a map made with Tiled, composed of 1000x1000 32*32px tiles :
// Poll input fisico
pollHWKeyboard();
camera.update();
renderer.setView(camera);
renderer.render();
...
0
votes
1answer
326 views
neo4j: Adding multiple properties to Nodes and RelationshipTypes in neo4j graphDB
I want to build a social network graph from Facebook data in neo4j (java). I'm trying to search for relevant examples to understand these concepts but still unable to get any of those specific kinds. ...
0
votes
2answers
189 views
Find array of edges with imageJ
I have already found edges of an image thanks to imageJ library.
Now, I'd like to get an array which would contain these edges.
There is a topic about it here but i couldn't comment and there wasn't ...
0
votes
1answer
253 views
Adding node items to Java Graph with for loop
I'm trying to add newly created objects to a grid and to a graph. Specifically, how to efficiently add nodes to a graph with a for loop. They grid has been set up as a double array, in order to update ...
2
votes
2answers
173 views
Creating a Graph Query Language (Node/Edge/HyperEdge)
I'm creating an API that encapsulates JPA objects with additional properties and helpers. I do not want the users to access the database, because I have to provide certain querying functionality for ...
2
votes
1answer
313 views
Drawing a Control Flow Graph
My task is to make a control flow graph. First, I have managed to seperate my code into basic blocks. For example, this program here:
1 begin
2 int x, y, power;
3 float z;
4 input (x, y);
5 ...
4
votes
1answer
590 views
Jung coloring vertex with value
I'm stuck at the moment with the Java library Jung.
I display vertices and edges, only I can not find any functions for vertex coloring that I need with the value of the vertices and not with the ...
0
votes
1answer
109 views
Prefuse API java creating edges
I am using prefuse lately to make some visualizations. What I do is
I load some information from a database, make a prefuse table instance for them
and make a graph based on that information. This ...
0
votes
1answer
137 views
JAVA Casting error
Im creating a program that uses Dijksrtras algorithm, im using nodes that represent cities on an imported map, and you can create edges between two cities on the map. My problem is every edge has a ...
1
vote
1answer
317 views
How to make several links between two nodes (java)
Im trying to write a code where you select two nodes and create one or several connections between them. The problem is i can only create one connection, the connection consists of a to-edge and a ...
3
votes
2answers
3k views
Java Graphics.fillPolygon: How to also render right and bottom edges?
When drawing polygons, Java2D leaves off the right and bottom edges. I understand why this is done. However, I would like to draw something that includes those edges. One thing that occurred to me ...
1
vote
2answers
958 views
Framework to draw Edges and Nodes using GWT
I am searching for framework to draw Edges and Nodes. I want to create a visual graph and It should be draggable.
I tried http://code.google.com/p/gwt-diagrams but this project is down.
What is your ...
