Skip to main content
Search type Search syntax
Tags [tag]
Exact "words here"
Author user:1234
user:me (yours)
Score score:3 (3+)
score:0 (none)
Answers answers:3 (3+)
answers:0 (none)
isaccepted:yes
hasaccepted:no
inquestion:1234
Views views:250
Code code:"if (foo != bar)"
Sections title:apples
body:"apples oranges"
URL url:"*.example.com"
Saves in:saves
Status closed:yes
duplicate:no
migrated:no
wiki:no
Types is:question
is:answer
Exclude -[tag]
-apples
For more details on advanced search visit our help page
Results tagged with
Search options not deleted user 125788

Java is both a popular object-oriented programming language and runtime environment which allows Java programs to run unchanged on most hardware and software platforms.

1 vote

How do I draw multiple irregular polygons with OpenGL ES?

So you want to draw polygons that fit the screen and have touch support? Opengl can be used to draw the polygons, touch support can be realised independent from opengl by a thing that is called ray tr …
D3d_dev's user avatar
  • 338
8 votes

Efficiently pathfinding many flocking enemies around obstacles

Source code from the book is available on the web; the book is in C++ but some translations (including Java) are available. …
D3d_dev's user avatar
  • 338
0 votes
Accepted

Rendering multiple textures on same image for terrain with index buffers (LWJGL 3)

Use atleast 4 unique vertices per quad and dont use "shared vertices" between quads. In your case it looks like the vertices are not shared but the uv coordinates dont match with the vertices due to …
D3d_dev's user avatar
  • 338