We are doing a visualisation tool for point cloud research project. We use 3d sphere to represent each single point and when we have large number of points to display (~40,000), the rotation becomes very lagging.

What we have tried:
- set JVM flag -Djavafx.animation.fullspeed=true, this helped a bit, but not significant.
- set JVM flag -Djavafx.autoproxy.disable=true, this did not help.
- set Cache to true and CacheHint to Cache.SPEED, this did not make much difference.
- create another thread to do the rotation, and sync back after calculation, this did not help neither.
Any help is appreciated.Thanks in advance!