简体   繁体   中英

How to visualize shapes without grid lines with jzy3d?

I am visualizing several shapes with jzy3d with code like this:

chart.getScene().getGraph().add(new Sphere(pos, 0.05f, 5, Color.GREEN));

The sphere is shown but hslice/vslice lines are shown too. I want simply to show the shapes without these white lines.

What can I do?

I have found the solution myself:

The shapes have the method:

setWireframeDisplayed(false);

which switiches the gridlines off.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM