Package org.jzy3d.plot3d.rendering.scene
Class Decomposition
- java.lang.Object
-
- org.jzy3d.plot3d.rendering.scene.Decomposition
-
public class Decomposition extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static List<Drawable>getDecomposition(List<? extends Drawable> drawables)static List<Drawable>getDecomposition(Composite input)static List<Polygon>getPolygonDecomposition(List<? extends Drawable> drawables)static List<Polygon>getPolygonDecomposition(Composite input)
-
-
-
Method Detail
-
getPolygonDecomposition
public static List<Polygon> getPolygonDecomposition(List<? extends Drawable> drawables)
-
getDecomposition
public static List<Drawable> getDecomposition(List<? extends Drawable> drawables)
Decompose all input drawable that are of typeCompositeinto a list of non decomposableDrawables. Note that- A
Drawable.isDisplayed()=false will be skipped and neither decomposed, neither in output list - A
Drawable#isFaceDisplayed()=false will be kept but not decomposed as object with wireframe only or boundary only do not need a decomposition for rendering properly with alpha.
- A
-
-