Why P2D not working inside Eclipse when i using the processing.core?

I just want to use another render in processing, i mean P2D
Who is know, hot to fix this trouble in Eclipse?
May be i just not imported necessary libs from processing?

Do you have these .jar files?

1 Like

Only core, thank you
I will try to do like this

It’s not working also with these jar files

Did you add them to the build path by right clicking on each. After this is done icons look like this:
bldPath

Yes i did it, but it’s still not working

Do you have these files for your operating system in Referenced libraries?

If you still have problems we’re going to need to see a screenshot of all of your files as well as the code for your ‘Main’ class and any error messages.

1 Like

After a while, I returned to this task, and the solution turned out to be to specify my own libraries in the project itself.

For those who have a similar problem, I will provide a solution, as well as some additional data.:

Development environment: Eclipse
OPERATING System: Windows 7
Java: SE 17

Decision:

just create a path in your project.:
native/windows-amd64

go here to install all the files from the same folder as in processing.
(processing\core\library\windows-amd64)

in addition, after that, you should definitely add the following libraries to your project:

  1. core.jar;
  2. gluegen-rt.jar;
  3. jogl-all.jar;
1 Like