Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - jaco robier

#1
Bugs / Points are always microscopic in OpenGL 2
January 07, 2018, 10:38:41 AM
Hello,
I use the class PolyLine and i have problem with the method SetWidth in mode Point in OpenGL 2

   mGLView.setEGLContextClientVersion(1); //  OpenGL 1
   ...;
   Polyline1.setPointMode(True); // mode point
   polyline1.setWidth(35);
=> the width of the point is correct.


   mGLView.setEGLContextClientVersion(2); //  OpenGL 2
   ...;
   Polyline1.setPointMode(True); // mode point
   polyline1.setWidth(35);=> The Width of the point never change and are always microscopic ? see photo openGL2.jpg

thank you for your support !.

#2
my menus in 3D does not work with the v1.30 release:
the problem is that if you click on a 3D object, the 3D object is not selected. Sometimes it works after 3 clicks ...

I only use these 2 functions:
SimpleVector dir = Interact2D.reproject2D3DWS (cam, fb, Clickx, clicky) .normalize ();
float res=Cube.calcMinDistance(cam.getPosition (), dir);

In v1.28+v1.29 works fine: It's always return res=25 when i click on the 3D object.
in V1.30: it's return res=9.99999995904E11 when i click on the 3D object ?!?

Have you got any ideas?
Cordialy
#3
Projects / 3D Robotics industrial
September 20, 2015, 05:56:18 PM
Hello,

This is my application https://play.google.com/store/apps/details?id=robotic.industrial for those who want to discover industrial robotics .

I program and installs industrial robots ( ABB and Universal Robots ) .So If you spend one minute on this application, you can live my job everyday...

video with 3D menus = https://www.youtube.com/watch?v=dFOYzDO9kyg

a big " Thank you" for the work of EgonOlsen  ;).

#4
Bugs / PolyLine and line width
July 26, 2015, 07:39:23 PM
Hello,
I use the class PolyLine and i have problem with the method SetWidth

   Polyline1.setPointMode(True); // mode pixel
   polyline1.setWidth(35);
=> the width of the pixel is correct.


   Polyline1.setPointMode(False); // mode line
   polyline1.setWidth(35);
=> The Width of the line is incorrect: the width never change and always the line width=1 ?


Bug or Normal ?


#5
Bugs / Getbounds return always 1.401298464324817E-45
March 28, 2015, 05:47:23 PM
I Tested a getBounds() method to World
array is minX, maxX, minY, maxY, minZ, maxZ.

MinX is correct
MaxX is correct
MinY is correct
MaxY is incorrect if the max.y of All objects < 0 then return always 1.401298464324817E-45 !?!
MinZ is correct
MaxZ is correct

Thank you for your work!
Modify message